From 34ff5609a66aabd0f1a782aab06502ab6f2b814d Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Thu, 26 Dec 2024 16:24:17 -0600 Subject: [PATCH 01/14] add v2 DES endpoints that include certification skills --- src/Textkernel.Tx.SDK/ApiEndpoints.cs | 12 + src/Textkernel.Tx.SDK/ITxClient.cs | 297 ++++++++++++++++++ .../SuggestSkillsFromProfessionsRequest.cs | 5 + .../Request/SuggestSkillsFromSkillsRequest.cs | 5 + .../Request/SkillsAutocompleteRequest.cs | 2 +- .../Models/DataEnrichment/Skill.cs | 2 +- .../Textkernel.Tx.SDK.csproj | 2 +- src/Textkernel.Tx.SDK/TxClient.cs | 263 +++++++++++++++- 8 files changed, 584 insertions(+), 4 deletions(-) diff --git a/src/Textkernel.Tx.SDK/ApiEndpoints.cs b/src/Textkernel.Tx.SDK/ApiEndpoints.cs index 27b213d6..6bd6d1e6 100644 --- a/src/Textkernel.Tx.SDK/ApiEndpoints.cs +++ b/src/Textkernel.Tx.SDK/ApiEndpoints.cs @@ -102,6 +102,12 @@ private string Sanitize(string indexOrDocId) internal HttpRequestMessage DESSkillsExtract() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}skills/Extract"); internal HttpRequestMessage DESSkillsLookup() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}skills/Lookup"); internal HttpRequestMessage DESSkillsAutoComplete() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}skills/AutoComplete"); + internal HttpRequestMessage DESSkillsGetTaxonomyV2(TaxonomyFormat format) => new HttpRequestMessage(HttpMethod.Get, $"{Prefix()}skills/v2/Taxonomy?format={format}"); + internal HttpRequestMessage DESGetSkillsMetadataV2() => new HttpRequestMessage(HttpMethod.Get, $"{Prefix()}skills/v2/Metadata"); + internal HttpRequestMessage DESSkillsNormalizeV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}skills/v2/Normalize"); + internal HttpRequestMessage DESSkillsExtractV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}skills/v2/Extract"); + internal HttpRequestMessage DESSkillsLookupV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}skills/v2/Lookup"); + internal HttpRequestMessage DESSkillsAutoCompleteV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}skills/v2/AutoComplete"); internal HttpRequestMessage DESProfessionsGetTaxonomy(TaxonomyFormat format, string language) => new HttpRequestMessage(HttpMethod.Get, $"{Prefix()}professions/Taxonomy?format={format}&language={language}"); internal HttpRequestMessage DESGetProfessionsMetadata() => new HttpRequestMessage(HttpMethod.Get, $"{Prefix()}professions/Metadata"); internal HttpRequestMessage DESProfessionsNormalize() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}professions/Normalize"); @@ -113,6 +119,12 @@ private string Sanitize(string indexOrDocId) internal HttpRequestMessage DESOntologySuggestProfessions() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/suggest-professions"); internal HttpRequestMessage DESOntologyCompareSkillsToProfessions() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/compare-skills-to-profession"); internal HttpRequestMessage DESOntologySkillsSimilarityScore() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/skills-similarity-score"); + internal HttpRequestMessage DESOntologySuggestSkillsFromProfessionsV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/v2/suggest-skills-from-professions"); + internal HttpRequestMessage DESOntologySuggestSkillsFromSkillsV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/v2/suggest-skills-from-skills"); + internal HttpRequestMessage DESOntologyCompareProfessionsV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/v2/compare-professions"); + internal HttpRequestMessage DESOntologySuggestProfessionsV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/v2/suggest-professions"); + internal HttpRequestMessage DESOntologyCompareSkillsToProfessionsV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/v2/compare-skills-to-profession"); + internal HttpRequestMessage DESOntologySkillsSimilarityScoreV2() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}ontology/v2/skills-similarity-score"); internal HttpRequestMessage JobDescriptionGenerate() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}job-description/generate"); internal HttpRequestMessage JobDescriptionSuggestSkills() => new HttpRequestMessage(HttpMethod.Post, $"{Prefix()}job-description/suggest-skills"); diff --git a/src/Textkernel.Tx.SDK/ITxClient.cs b/src/Textkernel.Tx.SDK/ITxClient.cs index 13d30420..df3bc5e2 100644 --- a/src/Textkernel.Tx.SDK/ITxClient.cs +++ b/src/Textkernel.Tx.SDK/ITxClient.cs @@ -542,6 +542,17 @@ Task GeocodeAndIndex( /// Thrown when an API error occurred Task GetSkillsTaxonomy(TaxonomyFormat format = TaxonomyFormat.json); + /// + /// Get all skills in the taxonomy with associated IDs and descriptions in all supported languages. + /// + /// + /// The format of the returned taxonomy. + ///
NOTE: if you set this to , only the will be populated. + /// + /// The full structure of the Skills Taxonomy. + /// Thrown when an API error occurred + Task GetSkillsTaxonomyV2(TaxonomyFormat format = TaxonomyFormat.json); + /// /// Get metadata about the skills taxonomy/service. /// @@ -549,6 +560,13 @@ Task GeocodeAndIndex( /// Thrown when an API error occurred Task GetSkillsTaxonomyMetadata(); + /// + /// Get metadata about the skills taxonomy/service. + /// + /// The skills taxonomy metadata + /// Thrown when an API error occurred + Task GetSkillsTaxonomyMetadataV2(); + /// /// Returns normalized skills that begin with a given prefix, based on the chosen language(s). /// Each profession is associated with multiple descriptions. If any of the descriptions are a good @@ -574,6 +592,31 @@ Task GeocodeAndIndex( Task AutocompleteSkill(string prefix, IEnumerable languages = null, string outputLanguage = null, IEnumerable types = null, int limit = 10); + /// + /// Returns normalized skills that begin with a given prefix, based on the chosen language(s). + /// Each profession is associated with multiple descriptions. If any of the descriptions are a good + /// completion of the given prefix, the profession is included in the results. + /// + /// The skill prefix to be completed. Must contain at least 1 character. + /// + /// The language(s) used to search for matching skills (the language of the provided prefix). + /// A maximum of 5 languages can be provided. Must be one of the supported + /// ISO codes. + ///
Default is 'en' only. + /// + /// + /// The language to ouput the found skills in (default is 'en'). Must be one of the supported + /// ISO codes. + /// + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All. + /// + /// The maximum number of returned skills. The default is 10 and the maximum is 100. + /// A list of skills that match the given prefix. + /// Thrown when an API error occurred + Task AutocompleteSkillV2(string prefix, IEnumerable languages = null, + string outputLanguage = null, IEnumerable types = null, int limit = 10); + /// /// Get the details associated with given skills in the taxonomy. /// @@ -587,6 +630,19 @@ Task AutocompleteSkill(string prefix, IEnumerableThrown when an API error occurred Task LookupSkills(IEnumerable skillIds, string outputLanguage = null); + /// + /// Get the details associated with given skills in the taxonomy. + /// + /// + /// + /// The language to use for the output skill descriptions. Must be one of the supported + /// ISO codes. + ///
Default is 'en'. + /// + /// An array of skills objects. + /// Thrown when an API error occurred + Task LookupSkillsV2(IEnumerable skillIds, string outputLanguage = null); + /// /// Normalize the given skills to the most closely-related skills in the taxonomy. /// @@ -626,6 +682,27 @@ Task AutocompleteSkill(string prefix, IEnumerableThrown when an API error occurred Task ExtractSkills(string text, string language = "en", string outputLanguage = null, float threshold = 0.5f); + /// + /// Extracts known skills from the given text. + /// + /// The text to extract skills from. There is a 24,000 character limit. + /// + /// The language of the input text. Must be one of the supported + /// ISO codes. + ///
Default is 'en'. + /// + /// + /// The language to use for the output skill descriptions. If not provided, defaults to the input language. Must be one of the supported + /// ISO codes. + /// + /// + /// A value from [0 - 1] for the minimum confidence threshold for extracted skills. Lower values will return more skills, + /// but also increase the likelihood of ambiguity-related errors. The recommended and default value is 0.5. + /// + /// A list of extracted skills. + /// Thrown when an API error occurred + Task ExtractSkillsV2(string text, string language = "en", string outputLanguage = null, float threshold = 0.5f); + /// /// Get all professions in the taxonomy with associated IDs and descriptions in all supported languages. /// @@ -717,6 +794,22 @@ Task AutocompleteSkill(string prefix, IEnumerableThrown when an API error occurred Task SuggestSkillsFromProfessions(ParsedResume resume, int limit = 10, string outputLanguage = null); + /// + /// Suggests skills related to a resume based on the recent professions in the resume. + /// + /// The resume to suggest skills for (based on the professions in the resume) + /// The maximum amount of suggested skills returned. The default is 10. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All. + /// + /// A list of suggested skills. + /// Thrown when an API error occurred + Task SuggestSkillsFromProfessionsV2(ParsedResume resume, int limit = 10, string outputLanguage = null, IEnumerable types = null); + /// /// Suggests skills related to a job based on the profession title in the job. /// @@ -730,6 +823,22 @@ Task AutocompleteSkill(string prefix, IEnumerableThrown when an API error occurred Task SuggestSkillsFromProfessions(ParsedJob job, int limit = 10, string outputLanguage = null); + /// + /// Suggests skills related to a job based on the profession title in the job. + /// + /// The job to suggest skills for (based on the profession in the job) + /// The maximum amount of suggested skills returned. The default is 10. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All. + /// + /// A list of suggested skills. + /// Thrown when an API error occurred + Task SuggestSkillsFromProfessionsV2(ParsedJob job, int limit = 10, string outputLanguage = null, IEnumerable types = null); + /// /// Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions. /// @@ -743,6 +852,22 @@ Task AutocompleteSkill(string prefix, IEnumerableThrown when an API error occurred Task SuggestSkillsFromProfessions(IEnumerable professionCodeIDs, int limit = 10, string outputLanguage = null); + /// + /// Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions. + /// + /// The code IDs of the professions to suggest skills for. + /// The maximum amount of suggested skills returned. The default is 10. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All. + /// + /// A list of suggested skills. + /// Thrown when an API error occurred + Task SuggestSkillsFromProfessionsV2(IEnumerable professionCodeIDs, int limit = 10, string outputLanguage = null, IEnumerable types = null); + /// /// Suggest professions based on the skills within a given resume. /// @@ -787,6 +912,51 @@ Task AutocompleteSkill(string prefix, IEnumerableThrown when an API error occurred Task SuggestProfessionsFromSkills(IEnumerable skills, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null); + /// + /// Suggest professions based on the skills within a given resume. + /// + /// The professions are suggested based on the skills within this resume. + /// The maximum amount of professions returned. If not specified this parameter defaults to 10. + /// Flag to enable returning a list of missing skills per suggested profession. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true. + /// A list of professions most relevant to the given resume, based on skills. + /// Thrown when an API error occurred + Task SuggestProfessionsFromSkillsV2(ParsedResume resume, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null, bool weightSkillsByExperience = true); + + /// + /// Suggest professions based on the skills within a given job. + /// + /// The professions are suggested based on the skills within this job. + /// The maximum amount of professions returned. If not specified this parameter defaults to 10. + /// Flag to enable returning a list of missing skills per suggested profession. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// A list of professions most relevant to the given job, based on skills. + /// Thrown when an API error occurred + Task SuggestProfessionsFromSkillsV2(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null); + + + /// + /// Suggest professions based on a given set of skill IDs. + /// + /// The skill IDs (and optionally, scores) used to return the most relevant professions. The list can contain up to 50 skill IDs. + /// The maximum amount of professions returned. If not specified this parameter defaults to 10. + /// Flag to enable returning a list of missing skills per suggested profession. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// A list of professions most relevant to the given skills. + /// Thrown when an API error occurred + Task SuggestProfessionsFromSkillsV2(IEnumerable skills, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null); + + /// /// Compare two professions based on the skills associated with each. /// @@ -905,6 +1075,133 @@ Task AutocompleteSkill(string prefix, IEnumerableThrown when an API error occurred Task SkillsSimilarityScore(IEnumerable skillSetA, IEnumerable skillSetB); + /// + /// Compare two professions based on the skills associated with each. + /// + /// + /// A profession code ID from the + /// Professions Taxonomy + /// to compare. + /// + /// + /// A profession code ID from the + /// Professions Taxonomy + /// to compare. + /// + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// Common skills and exclusive skills between the two professions. + /// Thrown when an API error occurred + Task CompareProfessionsV2(int profession1, int profession2, string outputLanguage = null); + + /// + /// Compare a given set of skills to the skills related to a given profession. + /// + /// + /// The profession code ID from the + /// Professions Taxonomy + /// to compare the skill set to. + /// + /// The skill IDs (and optionally, scores) which should be compared against the given profession. The list can contain up to 50 skills. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// Common skills and skills not in the profession. + /// Thrown when an API error occurred + Task CompareSkillsToProfessionV2(int professionCodeId, string outputLanguage = null, params SkillScore[] skills); + + /// + /// Compare the skills of a candidate to the skills related to a job using the Ontology API. + /// + /// The resume containing the skills of the candidate + /// The code ID of the profession to compare the skills of the candidate to + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true. + /// Skills that are common between the candidate and the job, as well as what skills are missing + /// Thrown when an API error occurred + Task CompareSkillsToProfessionV2(ParsedResume resume, int professionCodeId, string outputLanguage = null, bool weightSkillsByExperience = true); + + /// + /// Suggests skills related to a resume (but not in the resume) based on the skills in the resume. The service + /// returns closely related skills in a sense that knowing the provided skills either implies knowledge about + /// the returned related skills, or should make it considerably easier to acquire knowledge about them. + /// + /// The resume to suggest skills for (based on the skills in the resume) + /// The maximum amount of suggested skills returned. The maximum and default is 10. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All. + /// + /// Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true. + /// A list of suggested skills. + /// Thrown when an API error occurred + Task SuggestSkillsFromSkillsV2(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true, IEnumerable types = null); + + /// + /// Suggests skills related to a job (but not in the job) based on the skills in the job. The service returns + /// closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, + /// or should make it considerably easier to acquire knowledge about them. + /// + /// The job to suggest skills for (based on the skills in the job) + /// The maximum amount of suggested skills returned. The maximum and default is 25. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All. + /// + /// A list of suggested skills. + /// Thrown when an API error occurred + Task SuggestSkillsFromSkillsV2(ParsedJob job, int limit = 10, string outputLanguage = null, IEnumerable types = null); + + /// + /// Returns skills related to a given skill or set of skills. The service returns closely related skills + /// in a sense that knowing the provided skills either implies knowledge about the returned related skills, + /// or should make it considerably easier to acquire knowledge about them. + /// + /// + /// The skills (and optionally, scores) for which the service should return related skills. + /// The list can contain up to 50 skills. + /// + /// The maximum amount of suggested skills returned. The maximum and default is 25. + /// + /// The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported + /// ISO codes. + /// + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All. + /// + /// A list of suggested skills. + /// Thrown when an API error occurred + Task SuggestSkillsFromSkillsV2(IEnumerable skills, int limit = 25, string outputLanguage = null, IEnumerable types = null); + + /// + /// Determines how closely related one set of skills is to another. The service defines closely related skills + /// such that knowing a skill either implies knowledge about another skill, or should make it considerably + /// easier to acquire knowledge about that skill. + /// + /// + /// A set of skills (and optionally, scores) to score against the other set of skills. + /// The list can contain up to 50 skills. + /// + /// + /// A set of skills (and optionally, scores) to score against the other set of skills. + /// The list can contain up to 50 skills. + /// + /// A score from [0 - 1] representing how closely related skill set A and skill set B are, based on the relations between skills. + /// Thrown when an API error occurred + Task SkillsSimilarityScoreV2(IEnumerable skillSetA, IEnumerable skillSetB); + #endregion #region Job Description API diff --git a/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Ontology/Request/SuggestSkillsFromProfessionsRequest.cs b/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Ontology/Request/SuggestSkillsFromProfessionsRequest.cs index cb4bf4d8..72832b5d 100644 --- a/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Ontology/Request/SuggestSkillsFromProfessionsRequest.cs +++ b/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Ontology/Request/SuggestSkillsFromProfessionsRequest.cs @@ -27,5 +27,10 @@ public class SuggestSkillsFromProfessionsRequest /// The language to use for the returned descriptions. ///
public string OutputLanguage { get; set; } + + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certification, All. Only applicable in v2 endpoints. + /// + public List Types { get; set; } = new List { }; } } diff --git a/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Ontology/Request/SuggestSkillsFromSkillsRequest.cs b/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Ontology/Request/SuggestSkillsFromSkillsRequest.cs index 5d0948c1..f249fdd7 100644 --- a/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Ontology/Request/SuggestSkillsFromSkillsRequest.cs +++ b/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Ontology/Request/SuggestSkillsFromSkillsRequest.cs @@ -29,5 +29,10 @@ public class SuggestSkillsFromSkillsRequest /// The language to use for the returned descriptions. /// public string OutputLanguage { get; set; } + + /// + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certification, All. Only applicable in v2 endpoints. + /// + public List Types { get; set; } = new List { }; } } diff --git a/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Skills/Request/SkillsAutocompleteRequest.cs b/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Skills/Request/SkillsAutocompleteRequest.cs index 78d9b083..bdd5c34d 100644 --- a/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Skills/Request/SkillsAutocompleteRequest.cs +++ b/src/Textkernel.Tx.SDK/Models/API/DataEnrichment/Skills/Request/SkillsAutocompleteRequest.cs @@ -13,7 +13,7 @@ namespace Textkernel.Tx.Models.API.DataEnrichment.Skills.Request public class SkillsAutoCompleteRequest : AutocompleteRequest { /// - /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, All. + /// If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certification (only when using v2 endpoints), All. /// public List Types { get; set; } = new List { }; } diff --git a/src/Textkernel.Tx.SDK/Models/DataEnrichment/Skill.cs b/src/Textkernel.Tx.SDK/Models/DataEnrichment/Skill.cs index 5511d0a3..b3e20288 100644 --- a/src/Textkernel.Tx.SDK/Models/DataEnrichment/Skill.cs +++ b/src/Textkernel.Tx.SDK/Models/DataEnrichment/Skill.cs @@ -22,7 +22,7 @@ public class Skill public string Id { get; set; } /// - /// Type of skill. Possible values are Professional, IT, Language, or Soft. + /// Type of skill. Possible values are Professional, IT, Language, Soft, or Certification (only when using v2 endpoints). /// public string Type { get; set; } diff --git a/src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj b/src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj index f7b56bf1..3c475e67 100644 --- a/src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj +++ b/src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj @@ -30,7 +30,7 @@ - + diff --git a/src/Textkernel.Tx.SDK/TxClient.cs b/src/Textkernel.Tx.SDK/TxClient.cs index a0c04ffb..f7f97b28 100644 --- a/src/Textkernel.Tx.SDK/TxClient.cs +++ b/src/Textkernel.Tx.SDK/TxClient.cs @@ -1282,10 +1282,26 @@ public async Task GetSkillsTaxonomy(TaxonomyFormat fo return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task GetSkillsTaxonomyV2(TaxonomyFormat format = TaxonomyFormat.json) + { + HttpRequestMessage apiRequest = _endpoints.DESSkillsGetTaxonomyV2(format); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task GetSkillsTaxonomyMetadata() { - HttpRequestMessage apiRequest = _endpoints.DESGetProfessionsMetadata(); + HttpRequestMessage apiRequest = _endpoints.DESGetSkillsMetadata(); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + + /// + public async Task GetSkillsTaxonomyMetadataV2() + { + HttpRequestMessage apiRequest = _endpoints.DESGetSkillsMetadataV2(); HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } @@ -1307,6 +1323,23 @@ public async Task AutocompleteSkill(string prefix, I return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task AutocompleteSkillV2(string prefix, IEnumerable languages = null, + string outputLanguage = null, IEnumerable types = null, int limit = 10) + { + HttpRequestMessage apiRequest = _endpoints.DESSkillsAutoCompleteV2(); + apiRequest.AddJsonBody(new SkillsAutoCompleteRequest + { + Prefix = prefix, + Languages = languages?.ToList(), + OutputLanguage = outputLanguage, + Types = types?.ToList(), + Limit = limit + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task LookupSkills(IEnumerable skillIds, string outputLanguage = null) { @@ -1320,6 +1353,19 @@ public async Task LookupSkills(IEnumerable ski return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task LookupSkillsV2(IEnumerable skillIds, string outputLanguage = null) + { + HttpRequestMessage apiRequest = _endpoints.DESSkillsLookupV2(); + apiRequest.AddJsonBody(new LookupSkillsRequest + { + SkillIds = skillIds.ToList(), + OutputLanguage = outputLanguage + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task NormalizeSkills(IEnumerable skills, string language = "en", string outputLanguage = null) { @@ -1334,6 +1380,20 @@ public async Task NormalizeSkills(IEnumerable s return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task NormalizeSkillsV2(IEnumerable skills, string language = "en", string outputLanguage = null) + { + HttpRequestMessage apiRequest = _endpoints.DESSkillsNormalizeV2(); + apiRequest.AddJsonBody(new NormalizeSkillsRequest + { + Skills = skills.ToList(), + Language = language, + OutputLanguage = outputLanguage + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task ExtractSkills(string text, string language = "en", string outputLanguage = null, float threshold = 0.5f) { @@ -1349,6 +1409,21 @@ public async Task ExtractSkills(string text, string langu return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task ExtractSkillsV2(string text, string language = "en", string outputLanguage = null, float threshold = 0.5f) + { + HttpRequestMessage apiRequest = _endpoints.DESSkillsExtractV2(); + apiRequest.AddJsonBody(new ExtractSkillsRequest + { + Text = text, + Language = language, + OutputLanguage = outputLanguage, + Threshold = threshold + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + #endregion #region DES - Professions @@ -1429,6 +1504,20 @@ public async Task CompareProfessions(int profession1 return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task CompareProfessionsV2(int profession1, int profession2, string outputLanguage = null) + { + HttpRequestMessage apiRequest = _endpoints.DESOntologyCompareProfessionsV2(); + apiRequest.AddJsonBody(new CompareProfessionsRequest + { + ProfessionACodeId = profession1, + ProfessionBCodeId = profession2, + OutputLanguage = outputLanguage + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task CompareSkillsToProfession(int professionCodeId, string outputLanguage = null, params SkillScore[] skills) { @@ -1443,6 +1532,20 @@ public async Task CompareSkillsToProfession(i return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task CompareSkillsToProfessionV2(int professionCodeId, string outputLanguage = null, params SkillScore[] skills) + { + HttpRequestMessage apiRequest = _endpoints.DESOntologyCompareSkillsToProfessionsV2(); + apiRequest.AddJsonBody(new CompareSkillsToProfessionRequest + { + ProfessionCodeId = professionCodeId, + Skills = new List(skills), + OutputLanguage = outputLanguage + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task CompareSkillsToProfession( ParsedResume resume, @@ -1458,6 +1561,21 @@ public async Task CompareSkillsToProfession( return await CompareSkillsToProfession(professionCodeId, outputLanguage, GetNormalizedSkillsFromResume(resume, weightSkillsByExperience).ToArray()); } + /// + public async Task CompareSkillsToProfessionV2( + ParsedResume resume, + int professionCodeId, + string outputLanguage = null, + bool weightSkillsByExperience = true) + { + if (!(resume?.Skills?.Normalized?.Any() ?? false)) + { + throw new ArgumentException("The resume must be parsed with V2 skills selected, and with skills normalization enabled", nameof(resume)); + } + + return await CompareSkillsToProfessionV2(professionCodeId, outputLanguage, GetNormalizedSkillsFromResume(resume, weightSkillsByExperience).ToArray()); + } + private IEnumerable GetNormalizedSkillsFromResume(ParsedResume resume, bool weightSkillsByExperience) { if (!(resume?.Skills?.Normalized?.Any() ?? false)) @@ -1496,6 +1614,26 @@ public async Task SuggestSkillsFromProfessions(ParsedResu return await SuggestSkillsFromProfessions(normalizedProfs, limit, outputLanguage); } + /// + public async Task SuggestSkillsFromProfessionsV2(ParsedResume resume, int limit = 10, string outputLanguage = null, IEnumerable types = null) + { + if (!(resume?.EmploymentHistory?.Positions?.Any(p => p.NormalizedProfession?.Profession?.CodeId != null) ?? false)) + { + throw new ArgumentException("No professions were found in the resume, or the resume was parsed without professions normalization enabled", nameof(resume)); + } + + List normalizedProfs = new List(); + foreach (var position in resume.EmploymentHistory.Positions) + { + if (position?.NormalizedProfession?.Profession?.CodeId != null) + { + normalizedProfs.Add(position.NormalizedProfession.Profession.CodeId); + } + } + + return await SuggestSkillsFromProfessionsV2(normalizedProfs, limit, outputLanguage, types); + } + /// public async Task SuggestSkillsFromProfessions(ParsedJob job, int limit = 10, string outputLanguage = null) { @@ -1507,6 +1645,17 @@ public async Task SuggestSkillsFromProfessions(ParsedJob return await SuggestSkillsFromProfessions(new int[]{ job.JobTitles.NormalizedProfession.Profession.CodeId }, limit, outputLanguage); } + /// + public async Task SuggestSkillsFromProfessionsV2(ParsedJob job, int limit = 10, string outputLanguage = null, IEnumerable types = null) + { + if (job?.JobTitles?.NormalizedProfession?.Profession?.CodeId == null) + { + throw new ArgumentException("No professions were found in the job, or the job was parsed without professions normalization enabled", nameof(job)); + } + + return await SuggestSkillsFromProfessionsV2(new int[] { job.JobTitles.NormalizedProfession.Profession.CodeId }, limit, outputLanguage, types); + } + /// public async Task SuggestSkillsFromProfessions(IEnumerable professionCodeIDs, int limit = 10, string outputLanguage = null) { @@ -1521,6 +1670,21 @@ public async Task SuggestSkillsFromProfessions(IEnumerabl return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task SuggestSkillsFromProfessionsV2(IEnumerable professionCodeIDs, int limit = 10, string outputLanguage = null, IEnumerable types = null) + { + HttpRequestMessage apiRequest = _endpoints.DESOntologySuggestSkillsFromProfessionsV2(); + apiRequest.AddJsonBody(new SuggestSkillsFromProfessionsRequest + { + Limit = limit, + ProfessionCodeIds = professionCodeIDs.ToList(), + OutputLanguage = outputLanguage, + Types = types?.ToList() + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task SuggestProfessionsFromSkills( ParsedResume resume, @@ -1537,6 +1701,22 @@ public async Task SuggestProfessionsFromSkills( return await SuggestProfessionsFromSkills(GetNormalizedSkillsFromResume(resume, weightSkillsByExperience), limit, returnMissingSkills, outputLanguage); } + /// + public async Task SuggestProfessionsFromSkillsV2( + ParsedResume resume, + int limit = 10, + bool returnMissingSkills = false, + string outputLanguage = null, + bool weightSkillsByExperience = true) + { + if (!(resume?.Skills?.Normalized?.Any() ?? false)) + { + throw new ArgumentException("The resume must be parsed with V2 skills selected, and with skills normalization enabled", nameof(resume)); + } + + return await SuggestProfessionsFromSkillsV2(GetNormalizedSkillsFromResume(resume, weightSkillsByExperience), limit, returnMissingSkills, outputLanguage); + } + /// public async Task SuggestProfessionsFromSkills(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null) { @@ -1548,6 +1728,17 @@ public async Task SuggestProfessionsFromSkills(Parse return await SuggestProfessionsFromSkills(job.Skills.Normalized.Take(50).Select(s => new SkillScore { Id = s.Id }), limit, returnMissingSkills, outputLanguage); } + /// + public async Task SuggestProfessionsFromSkillsV2(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null) + { + if (!(job?.Skills?.Normalized?.Any() ?? false)) + { + throw new ArgumentException("The job must be parsed with V2 skills selected, and with skills normalization enabled", nameof(job)); + } + + return await SuggestProfessionsFromSkillsV2(job.Skills.Normalized.Take(50).Select(s => new SkillScore { Id = s.Id }), limit, returnMissingSkills, outputLanguage); + } + /// public async Task SuggestProfessionsFromSkills( IEnumerable skills, @@ -1567,6 +1758,25 @@ public async Task SuggestProfessionsFromSkills( return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task SuggestProfessionsFromSkillsV2( + IEnumerable skills, + int limit = 10, + bool returnMissingSkills = false, + string outputLanguage = null) + { + HttpRequestMessage apiRequest = _endpoints.DESOntologySuggestProfessionsV2(); + apiRequest.AddJsonBody(new SuggestProfessionsRequest + { + Skills = skills.ToList(), + Limit = limit, + ReturnMissingSkills = returnMissingSkills, + OutputLanguage = outputLanguage + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task SuggestSkillsFromSkills(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true) { @@ -1578,6 +1788,17 @@ public async Task SuggestSkillsFromSkills(ParsedResume re return await SuggestSkillsFromSkills(GetNormalizedSkillsFromResume(resume, weightSkillsByExperience), limit, outputLanguage); } + /// + public async Task SuggestSkillsFromSkillsV2(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true, IEnumerable types = null) + { + if (!(resume?.Skills?.Normalized?.Any() ?? false)) + { + throw new ArgumentException("The resume must be parsed with V2 skills selected, and with skills normalization enabled", nameof(resume)); + } + + return await SuggestSkillsFromSkillsV2(GetNormalizedSkillsFromResume(resume, weightSkillsByExperience), limit, outputLanguage, types); + } + /// public async Task SuggestSkillsFromSkills(ParsedJob job, int limit = 10, string outputLanguage = null) { @@ -1589,6 +1810,18 @@ public async Task SuggestSkillsFromSkills(ParsedJob job, return await SuggestSkillsFromSkills(job.Skills.Normalized.Take(50).Select(s => new SkillScore { Id = s.Id }), limit, outputLanguage); } + /// + public async Task SuggestSkillsFromSkillsV2(ParsedJob job, int limit = 10, string outputLanguage = null, IEnumerable types = null) + { + if (!(job?.Skills?.Normalized?.Any() ?? false)) + { + throw new ArgumentException("The job must be parsed with V2 skills selected, and with skills normalization enabled", nameof(job)); + } + + return await SuggestSkillsFromSkillsV2(job.Skills.Normalized.Take(50).Select(s => new SkillScore { Id = s.Id }), limit, outputLanguage, types); + } + + /// public async Task SuggestSkillsFromSkills(IEnumerable skills, int limit = 25, string outputLanguage = null) { @@ -1603,6 +1836,21 @@ public async Task SuggestSkillsFromSkills(IEnumerable(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task SuggestSkillsFromSkillsV2(IEnumerable skills, int limit = 25, string outputLanguage = null, IEnumerable types = null) + { + HttpRequestMessage apiRequest = _endpoints.DESOntologySuggestSkillsFromSkillsV2(); + apiRequest.AddJsonBody(new SuggestSkillsFromSkillsRequest + { + Limit = limit, + Skills = skills.ToList(), + OutputLanguage = outputLanguage, + Types = types?.ToList() + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + /// public async Task SkillsSimilarityScore(IEnumerable skillSetA, IEnumerable skillSetB) { @@ -1616,6 +1864,19 @@ public async Task SkillsSimilarityScore(IEnumerab return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); } + /// + public async Task SkillsSimilarityScoreV2(IEnumerable skillSetA, IEnumerable skillSetB) + { + HttpRequestMessage apiRequest = _endpoints.DESOntologySkillsSimilarityScoreV2(); + apiRequest.AddJsonBody(new SkillsSimilarityScoreRequest + { + SkillsA = skillSetA.ToList(), + SkillsB = skillSetB.ToList() + }); + HttpResponseMessage response = await _httpClient.SendAsync(apiRequest); + return await ProcessResponse(response, await GetBodyIfDebug(apiRequest)); + } + #endregion #region Job Description API From 65a1084876f0c962d90e50eb9f392b6ed2ffb969 Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Thu, 26 Dec 2024 16:54:53 -0600 Subject: [PATCH 02/14] add test --- .../IntegrationTests/DataEnrichmentServiceTests.cs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/Textkernel.Tx.SDK.Tests/IntegrationTests/DataEnrichmentServiceTests.cs b/src/Textkernel.Tx.SDK.Tests/IntegrationTests/DataEnrichmentServiceTests.cs index bd1467d4..512a3712 100644 --- a/src/Textkernel.Tx.SDK.Tests/IntegrationTests/DataEnrichmentServiceTests.cs +++ b/src/Textkernel.Tx.SDK.Tests/IntegrationTests/DataEnrichmentServiceTests.cs @@ -63,14 +63,24 @@ public void TestProfessionsMetadata() [Test] public void TestSkillsAutoComplete() { - SkillsAutoCompleteRequest request = new() { Prefix = "soft", Languages = new List { "en" }, Types = new List { "all" } }; AutoCompleteSkillsResponse response = null; - Assert.DoesNotThrowAsync(async () => { response = await Client.AutocompleteSkill("soft"); }); + Assert.DoesNotThrowAsync(async () => { response = await Client.AutocompleteSkill("soft", new List { "en" }, "en", new List { "all" } ); }); Assert.NotNull(response?.Value?.Skills); Assert.GreaterOrEqual(response?.Value?.Skills.Count, 1); } + [Test] + public void TestSkillsAutoCompleteV2() + { + AutoCompleteSkillsResponse response = null; + + Assert.DoesNotThrowAsync(async () => { response = await Client.AutocompleteSkillV2("soft", new List { "en" }, "en", new List { "certification" }); }); + Assert.NotNull(response?.Value?.Skills); + Assert.GreaterOrEqual(response?.Value?.Skills.Count, 1); + Assert.AreEqual("Certification", response.Value.Skills.First().Type); + } + [Test] public void TestProfessionsAutoComplete() { From f47b92caea2dac1dda36ac3bc3f5cf64b166a998 Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 09:58:48 -0600 Subject: [PATCH 03/14] fix test after infra changes --- src/Textkernel.Tx.SDK.Tests/UnitTests/TxClientTests.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Textkernel.Tx.SDK.Tests/UnitTests/TxClientTests.cs b/src/Textkernel.Tx.SDK.Tests/UnitTests/TxClientTests.cs index d0fdbed4..c81d3f83 100644 --- a/src/Textkernel.Tx.SDK.Tests/UnitTests/TxClientTests.cs +++ b/src/Textkernel.Tx.SDK.Tests/UnitTests/TxClientTests.cs @@ -39,15 +39,14 @@ public void TestDebugRequestBody() } [Test] - public void Test404Message() + public void Test401Error() { DataCenter fakeDC = new DataCenter("https://api.us.textkernel.com/tx/v9/fake"); TxClient client = new TxClient("1234", "1234", fakeDC); TxException e = Assert.ThrowsAsync(client.GetAccountInfo); - Assert.AreEqual(HttpStatusCode.NotFound, e.HttpStatusCode); - Assert.AreEqual("404 - Not Found", e.Message); + Assert.AreEqual(HttpStatusCode.Unauthorized, e.HttpStatusCode); } [Test] From a99812bf51804889f8d085b6739e7c63e3522e0a Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 13:59:04 -0600 Subject: [PATCH 04/14] update version --- src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj b/src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj index 3c475e67..dc7e99a3 100644 --- a/src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj +++ b/src/Textkernel.Tx.SDK/Textkernel.Tx.SDK.csproj @@ -10,7 +10,7 @@ Copyright © $([System.DateTime]::UtcNow.Year) Textkernel BV. All rights reserved. Apache-2.0 https://github.com/textkernel/tx-dotnet - 3.3.1 + 3.3.2 images\icon.png https://raw.githubusercontent.com/textkernel/tx-dotnet/master/src/Textkernel.Tx.SDK/icon.png true From da51fb0d502765aeaa705a77f4a8d2b5a0efeb7f Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 14:05:31 -0600 Subject: [PATCH 05/14] update deprecated util --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c8945fb..7dc76014 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,7 +47,7 @@ jobs: continue-on-error: false # upload the generated docs into an artifact that can be used by the job below - name: Upload Artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: site path: docfx/_site From 239e005fc234906b5e352cc92040da5630fab458 Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 14:06:26 -0600 Subject: [PATCH 06/14] fix this too --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7dc76014..e0fedbb4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,7 +66,7 @@ jobs: id: extract_branch # download the site files as an artifact - name: Download Artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: site # publish the generated docs into the /docs folder on a new commit in this branch From 1ccc66dd22a1f455574ed1be4d1a469dec02887f Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 14:14:30 -0600 Subject: [PATCH 07/14] try this --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0fedbb4..b1ebc9c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: - name: Upload Artifacts uses: actions/upload-artifact@v4 with: - name: site + name: site-${{ matrix.runs-on }} path: docfx/_site #the github-pages-deploy-action needs to run on ubuntu, so use upload/download artifact to generate on windows and publish on ubuntu @@ -68,13 +68,14 @@ jobs: - name: Download Artifacts uses: actions/download-artifact@v4 with: - name: site + path: site + pattern: site-* # publish the generated docs into the /docs folder on a new commit in this branch - name: Publish DocFX to GitHub Pages uses: JamesIves/github-pages-deploy-action@4.1.4 with: branch: ${{ steps.extract_branch.outputs.branch }} - folder: site #use the downloaded artifact name here + folder: site #use the downloaded artifact path here target-folder: docs git-config-name: Continuous Integration git-config-email: devs@sovren.com From d5852ce263056389abcf284c35300b432e5fff2d Mon Sep 17 00:00:00 2001 From: Continuous Integration Date: Fri, 27 Dec 2024 20:18:11 +0000 Subject: [PATCH 08/14] --- auto-generation of docfx documentation --- --- docs/{ => site-}/favicon.ico | Bin .../fonts/glyphicons-halflings-regular.eot | Bin .../fonts/glyphicons-halflings-regular.svg | 0 .../fonts/glyphicons-halflings-regular.ttf | Bin .../fonts/glyphicons-halflings-regular.woff | Bin .../fonts/glyphicons-halflings-regular.woff2 | Bin docs/{ => site-}/images/favicon.ico | Bin docs/{ => site-}/index.html | 2 +- docs/{ => site-}/logo.svg | 0 docs/{ => site-}/manifest.json | 694 +++--- ...extkernel.Tx.Batches.BatchErrorResult.html | 8 +- .../Textkernel.Tx.Batches.BatchParser.html | 12 +- ...xtkernel.Tx.Batches.BatchParsingRules.html | 28 +- .../Textkernel.Tx.Batches.BatchResult.html | 12 +- ....Batches.JobBatchPartialSuccessResult.html | 8 +- ...rnel.Tx.Batches.JobBatchSuccessResult.html | 8 +- ...tches.ResumeBatchPartialSuccessResult.html | 8 +- ...l.Tx.Batches.ResumeBatchSuccessResult.html | 8 +- ...el.Tx.Batches.TxInvalidBatchException.html | 4 +- .../sdk/Textkernel.Tx.Batches.html | 0 .../sdk/Textkernel.Tx.DataCenter.html | 20 +- .../sdk/Textkernel.Tx.ITxClient.html | 2105 +++++++++++++--- ...ls.API.Account.GetAccountInfoResponse.html | 4 +- .../sdk/Textkernel.Tx.Models.API.Account.html | 0 .../Textkernel.Tx.Models.API.AccountInfo.html | 36 +- ...extkernel.Tx.Models.API.ApiResponse-1.html | 12 +- ...tkernel.Tx.Models.API.ApiResponseInfo.html | 28 +- ...nel.Tx.Models.API.ApiResponseInfoLite.html | 12 +- ...metricScoring.BimetricScoreJobRequest.html | 8 +- ....BimetricScoring.BimetricScoreRequest.html | 20 +- ...BimetricScoring.BimetricScoreResponse.html | 4 +- ...ricScoring.BimetricScoreResponseValue.html | 4 +- ...I.BimetricScoring.BimetricScoreResult.html | 28 +- ...ricScoring.BimetricScoreResumeRequest.html | 8 +- ....API.BimetricScoring.IParsedDocWithId.html | 8 +- ...s.API.BimetricScoring.ParsedJobWithId.html | 12 +- ...PI.BimetricScoring.ParsedResumeWithId.html | 12 +- ...tkernel.Tx.Models.API.BimetricScoring.html | 0 ...PI.DataEnrichment.AutocompleteRequest.html | 20 +- ...PI.DataEnrichment.GetMetadataResponse.html | 4 +- ...ogy.Request.CompareProfessionsRequest.html | 16 +- ...uest.CompareSkillsToProfessionRequest.html | 16 +- ....Request.SkillsSimilarityScoreRequest.html | 12 +- ...ogy.Request.SuggestProfessionsRequest.html | 20 +- ...t.SuggestSkillsFromProfessionsRequest.html | 47 +- ...equest.SuggestSkillsFromSkillsRequest.html | 47 +- ...s.API.DataEnrichment.Ontology.Request.html | 0 ...y.Response.CompareProfessionsResponse.html | 4 +- ...ponse.CompareProfessionsResponseValue.html | 16 +- ...nse.CompareSkillsToProfessionResponse.html | 4 +- ...ompareSkillsToProfessionResponseValue.html | 20 +- ...gy.Response.ProfessionExclusiveSkills.html | 12 +- ...richment.Ontology.Response.SkillScore.html | 16 +- ...esponse.SkillsSimilarityScoreResponse.html | 4 +- ...se.SkillsSimilarityScoreResponseValue.html | 8 +- ...y.Response.SuggestProfessionsResponse.html | 4 +- ...ponse.SuggestProfessionsResponseValue.html | 12 +- ...y.Response.SuggestProfessionsWarnings.html | 12 +- ...tology.Response.SuggestSkillsResponse.html | 4 +- ...y.Response.SuggestSkillsResponseValue.html | 8 +- ...Ontology.Response.SuggestedProfession.html | 20 +- ....API.DataEnrichment.Ontology.Response.html | 0 ...ataEnrichment.Professions.ONETVersion.html | 4 +- ...sions.ProfessionNormalizationVersions.html | 8 +- ....Request.LookupProfessionCodesRequest.html | 12 +- ...s.Request.NormalizeProfessionsRequest.html | 16 +- ...PI.DataEnrichment.Professions.Request.html | 0 ...ponse.AutoCompleteProfessionsResponse.html | 4 +- ....AutoCompleteProfessionsResponseValue.html | 8 +- ...sponse.GetProfessionsTaxonomyResponse.html | 4 +- ...e.GetTaxonomyProfessionsResponseValue.html | 8 +- ...esponse.LookupProfessionCodesResponse.html | 4 +- ...se.LookupProfessionCodesResponseValue.html | 8 +- ...Response.NormalizeProfessionsResponse.html | 4 +- ...nse.NormalizeProfessionsResponseValue.html | 8 +- ...I.DataEnrichment.Professions.Response.html | 0 ...Models.API.DataEnrichment.Professions.html | 0 ...t.Skills.Request.ExtractSkillsRequest.html | 20 +- ...nt.Skills.Request.LookupSkillsRequest.html | 12 +- ...Skills.Request.NormalizeSkillsRequest.html | 16 +- ...lls.Request.SkillsAutoCompleteRequest.html | 10 +- ...els.API.DataEnrichment.Skills.Request.html | 0 ...s.Response.AutoCompleteSkillsResponse.html | 4 +- ...ponse.AutocompleteSkillsResponseValue.html | 8 +- ...Skills.Response.ExtractSkillsResponse.html | 4 +- ...s.Response.ExtractSkillsResponseValue.html | 12 +- ...ls.Response.GetSkillsTaxonomyResponse.html | 4 +- ...sponse.GetSkillsTaxonomyResponseValue.html | 8 +- ...lls.Response.LookupSkillCodesResponse.html | 4 +- ...esponse.LookupSkillCodesResponseValue.html | 8 +- ...ills.Response.NormalizeSkillsResponse.html | 4 +- ...Response.NormalizeSkillsResponseValue.html | 8 +- ...ls.API.DataEnrichment.Skills.Response.html | 0 ...els.API.DataEnrichment.TaxonomyFormat.html | 4 +- ...xtkernel.Tx.Models.API.DataEnrichment.html | 0 ...l.Tx.Models.API.Formatter.CompanyInfo.html | 32 +- ...ls.API.Formatter.CompanyInfoPlacement.html | 4 +- ...els.API.Formatter.EmployerNameOptions.html | 4 +- ...els.API.Formatter.FormatResumeOptions.html | 20 +- ...els.API.Formatter.FormatResumeRequest.html | 16 +- ...ls.API.Formatter.FormatResumeResponse.html | 4 +- ...I.Formatter.FormatResumeResponseValue.html | 8 +- ...atter.FormatResumeWithTemplateRequest.html | 28 +- ....Models.API.Formatter.MetadataOptions.html | 12 +- ...el.Tx.Models.API.Formatter.ResumeLogo.html | 28 +- ...el.Tx.Models.API.Formatter.ResumeType.html | 4 +- ...dels.API.Formatter.WorkHistoryOptions.html | 16 +- .../Textkernel.Tx.Models.API.Formatter.html | 0 ...ernel.Tx.Models.API.Geocoding.Address.html | 24 +- ...I.Geocoding.GeocodeAndIndexJobRequest.html | 8 +- ....Geocoding.GeocodeAndIndexJobResponse.html | 4 +- ...oding.GeocodeAndIndexJobResponseValue.html | 8 +- ....API.Geocoding.GeocodeAndIndexRequest.html | 16 +- ...eocoding.GeocodeAndIndexResponseValue.html | 12 +- ...eocoding.GeocodeAndIndexResumeRequest.html | 8 +- ...ocoding.GeocodeAndIndexResumeResponse.html | 4 +- ...ng.GeocodeAndIndexResumeResponseValue.html | 8 +- ...dels.API.Geocoding.GeocodeCredentials.html | 12 +- ...odels.API.Geocoding.GeocodeJobRequest.html | 8 +- ...dels.API.Geocoding.GeocodeJobResponse.html | 4 +- ...API.Geocoding.GeocodeJobResponseValue.html | 8 +- ...x.Models.API.Geocoding.GeocodeOptions.html | 8 +- ...dels.API.Geocoding.GeocodeOptionsBase.html | 12 +- ....Models.API.Geocoding.GeocodeProvider.html | 4 +- ...ls.API.Geocoding.GeocodeResumeRequest.html | 8 +- ...s.API.Geocoding.GeocodeResumeResponse.html | 4 +- ....Geocoding.GeocodeResumeResponseValue.html | 8 +- .../Textkernel.Tx.Models.API.Geocoding.html | 0 .../Textkernel.Tx.Models.API.ITxResponse.html | 8 +- ...Models.API.Indexes.CreateIndexRequest.html | 8 +- ...odels.API.Indexes.CreateIndexResponse.html | 4 +- ...ls.API.Indexes.DeleteDocumentResponse.html | 4 +- ...odels.API.Indexes.DeleteIndexResponse.html | 4 +- ...dexes.DeleteMultipleDocumentsResponse.html | 4 +- ...els.API.Indexes.GetAllIndexesResponse.html | 4 +- ...x.Models.API.Indexes.GetIndexResponse.html | 4 +- ....Tx.Models.API.Indexes.GetJobResponse.html | 4 +- ....Models.API.Indexes.GetResumeResponse.html | 4 +- ...dels.API.Indexes.IndexDocumentRequest.html | 8 +- ...els.API.Indexes.IndexDocumentResponse.html | 4 +- ...el.Tx.Models.API.Indexes.IndexJobInfo.html | 8 +- ...Tx.Models.API.Indexes.IndexJobRequest.html | 8 +- ...API.Indexes.IndexMultipleDocumentInfo.html | 12 +- ...ndexes.IndexMultipleDocumentsResponse.html | 4 +- ...s.IndexMultipleDocumentsResponseValue.html | 8 +- ....API.Indexes.IndexMultipleJobsRequest.html | 8 +- ...I.Indexes.IndexMultipleResumesRequest.html | 8 +- ...Tx.Models.API.Indexes.IndexResumeInfo.html | 8 +- ...Models.API.Indexes.IndexResumeRequest.html | 8 +- ...s.API.Indexes.IndexSingleDocumentInfo.html | 8 +- ....Indexes.UpdateUserDefinedTagsRequest.html | 12 +- ...Indexes.UpdateUserDefinedTagsResponse.html | 4 +- ...els.API.Indexes.UserDefinedTagsMethod.html | 4 +- .../sdk/Textkernel.Tx.Models.API.Indexes.html | 0 ...API.JobDescription.GenerateJobRequest.html | 28 +- ...PI.JobDescription.GenerateJobResponse.html | 4 +- ...bDescription.GenerateJobResponseValue.html | 8 +- ...s.API.JobDescription.GenerateJobSkill.html | 12 +- ....Tx.Models.API.JobDescription.JobTone.html | 4 +- ...dels.API.JobDescription.SkillPriority.html | 4 +- ...tion.SuggestSkillsFromJobTitleRequest.html | 16 +- ...ion.SuggestSkillsFromJobTitleResponse.html | 4 +- ...uggestSkillsFromJobTitleResponseValue.html | 8 +- ...xtkernel.Tx.Models.API.JobDescription.html | 0 ...PI.Matching.BaseScoredResponseValue-1.html | 12 +- ...tching.BaseSearchMatchResponseValue-1.html | 16 +- ...x.Models.API.Matching.CategoryWeights.html | 68 +- ...x.Models.API.Matching.MatchJobRequest.html | 8 +- ....Tx.Models.API.Matching.MatchResponse.html | 4 +- ...odels.API.Matching.MatchResponseValue.html | 4 +- ...odels.API.Matching.MatchResumeRequest.html | 8 +- ...els.API.Matching.Request.DistanceUnit.html | 4 +- ...s.API.Matching.Request.FilterCriteria.html | 140 +- ...s.API.Matching.Request.FilterLocation.html | 24 +- ...els.API.Matching.Request.IntegerRange.html | 12 +- ...s.API.Matching.Request.JobTitleFilter.html | 12 +- ...API.Matching.Request.LocationCriteria.html | 24 +- ...hing.Request.MatchByDocumentIdOptions.html | 4 +- ...els.API.Matching.Request.MatchRequest.html | 12 +- ...I.Matching.Request.PaginationSettings.html | 12 +- ...PI.Matching.Request.RevisionDateRange.html | 12 +- ...tching.Request.SearchMatchRequestBase.html | 16 +- ....Matching.Request.SearchMatchSettings.html | 16 +- ...Matching.Request.SkillExperienceLevel.html | 4 +- ...dels.API.Matching.Request.SkillFilter.html | 16 +- ...kernel.Tx.Models.API.Matching.Request.html | 0 ...I.Matching.Response.CategoryScoreData.html | 12 +- ...tching.Response.CategoryScoreEvidence.html | 12 +- ....Matching.Response.DocumentTaxonomies.html | 12 +- ....Matching.Response.EducationScoreData.html | 16 +- ...I.Matching.Response.EnrichedScoreData.html | 36 +- ...s.API.Matching.Response.FoundJobTitle.html | 16 +- ...dels.API.Matching.Response.FoundSkill.html | 12 +- ...tching.Response.IBimetricScoredResult.html | 24 +- ....Matching.Response.JobTitlesScoreData.html | 12 +- ...ing.Response.ManagementLevelScoreData.html | 16 +- ...els.API.Matching.Response.MatchResult.html | 24 +- ...ls.API.Matching.Response.SearchResult.html | 12 +- ...hing.Response.SimpleCategoryScoreData.html | 12 +- ...API.Matching.Response.SkillsScoreData.html | 12 +- ...Matching.Response.TaxonomiesScoreData.html | 12 +- ...PI.Matching.Response.TaxonomyEvidence.html | 12 +- ...ls.API.Matching.Response.TaxonomyInfo.html | 16 +- ...ernel.Tx.Models.API.Matching.Response.html | 0 ....Tx.Models.API.Matching.SearchRequest.html | 8 +- ...Tx.Models.API.Matching.SearchResponse.html | 4 +- ...dels.API.Matching.SearchResponseValue.html | 4 +- ...Models.API.Matching.UI.AIMatchDetails.html | 8 +- ...Models.API.Matching.UI.BasicUIOptions.html | 16 +- ....API.Matching.UI.BimetricScoreDetails.html | 8 +- ...I.Matching.UI.BimetricScoreJobDetails.html | 8 +- ...atching.UI.BimetricScoreResumeDetails.html | 8 +- ...atching.UI.GenerateUIDetailsRequest-1.html | 12 +- ...s.API.Matching.UI.GenerateUIRequest-1.html | 8 +- ...ls.API.Matching.UI.GenerateUIResponse.html | 12 +- ....Matching.UI.Hooks.BulkHookPostBody-1.html | 8 +- ....API.Matching.UI.Hooks.ClientSideHook.html | 12 +- ....Matching.UI.Hooks.DocumentIdentifier.html | 12 +- ....API.Matching.UI.Hooks.HookPostBody-1.html | 12 +- ...Models.API.Matching.UI.Hooks.JsAction.html | 16 +- ...ching.UI.Hooks.OnUpdateHookPostBody-1.html | 12 +- ...s.API.Matching.UI.Hooks.OnUpdateHooks.html | 12 +- ...ching.UI.Hooks.OnUpdateServerSideHook.html | 12 +- ....API.Matching.UI.Hooks.ServerSideHook.html | 12 +- ...ls.API.Matching.UI.Hooks.SourcingHook.html | 8 +- ...ching.UI.Hooks.SourcingHookPostBody-1.html | 20 +- ...odels.API.Matching.UI.Hooks.UrlAction.html | 12 +- ....API.Matching.UI.Hooks.UserActionHook.html | 12 +- ...ing.UI.Hooks.UserActionHookCollection.html | 20 +- ...ing.UI.Hooks.UserActionHookPostBody-1.html | 12 +- ...ernel.Tx.Models.API.Matching.UI.Hooks.html | 0 ...x.Models.API.Matching.UI.MatchDetails.html | 16 +- ...odels.API.Matching.UI.MatchUISettings.html | 16 +- ...x.Models.API.Matching.UI.StyleOptions.html | 24 +- ...g.UI.UIBimetricScoreJobDetailsRequest.html | 4 +- ...Matching.UI.UIBimetricScoreJobRequest.html | 4 +- ...I.UIBimetricScoreResumeDetailsRequest.html | 4 +- ...ching.UI.UIBimetricScoreResumeRequest.html | 4 +- ...atching.UI.UIMatchByDocumentIdOptions.html | 4 +- ...API.Matching.UI.UIMatchDetailsRequest.html | 4 +- ...els.API.Matching.UI.UIMatchJobRequest.html | 4 +- ....API.Matching.UI.UIMatchResumeRequest.html | 4 +- ...l.Tx.Models.API.Matching.UI.UIOptions.html | 52 +- ...odels.API.Matching.UI.UISearchRequest.html | 4 +- ....API.Matching.UI.UserDefinedTagOption.html | 12 +- ...I.Matching.UI.UserDefinedTagsPicklist.html | 12 +- .../Textkernel.Tx.Models.API.Matching.UI.html | 0 .../Textkernel.Tx.Models.API.Matching.html | 0 ...ls.API.Parsing.BaseParseResponseValue.html | 24 +- ....Models.API.Parsing.BasicParseOptions.html | 24 +- ...Models.API.Parsing.ConversionMetadata.html | 24 +- ...nel.Tx.Models.API.Parsing.Conversions.html | 24 +- ...nel.Tx.Models.API.Parsing.FlexRequest.html | 20 +- ...odels.API.Parsing.FlexRequestDataType.html | 4 +- ...el.Tx.Models.API.Parsing.FlexResponse.html | 16 +- ...x.Models.API.Parsing.FlexResponseItem.html | 16 +- ...x.Models.API.Parsing.ParseJobResponse.html | 4 +- ...els.API.Parsing.ParseJobResponseValue.html | 8 +- ...el.Tx.Models.API.Parsing.ParseOptions.html | 36 +- ...el.Tx.Models.API.Parsing.ParseRequest.html | 16 +- ...odels.API.Parsing.ParseResumeResponse.html | 4 +- ....API.Parsing.ParseResumeResponseValue.html | 20 +- ...Tx.Models.API.Parsing.ParsingMetadata.html | 20 +- ...odels.API.Parsing.ProfessionsSettings.html | 12 +- ....Tx.Models.API.Parsing.SkillsSettings.html | 12 +- .../sdk/Textkernel.Tx.Models.API.Parsing.html | 0 .../sdk/Textkernel.Tx.Models.API.html | 0 ...Models.DataEnrichment.BasicProfession.html | 12 +- ....Models.DataEnrichment.ExtractedSkill.html | 8 +- ...Models.DataEnrichment.LangDescription.html | 12 +- ...s.DataEnrichment.NormalizedProfession.html | 8 +- ...Models.DataEnrichment.NormalizedSkill.html | 8 +- ...l.Tx.Models.DataEnrichment.Profession.html | 36 +- ...Enrichment.ProfessionClassification-1.html | 12 +- ...chment.ProfessionMultipleDescriptions.html | 12 +- ...kernel.Tx.Models.DataEnrichment.Skill.html | 22 +- ...els.DataEnrichment.SkillAndConfidence.html | 8 +- ...l.Tx.Models.DataEnrichment.SkillMatch.html | 20 +- ...aEnrichment.SkillMultipleDescriptions.html | 12 +- ...nel.Tx.Models.DataEnrichment.Taxonomy.html | 8 +- ...odels.DataEnrichment.TaxonomyMetadata.html | 12 +- ...t.VersionedProfessionClassification-1.html | 8 +- .../Textkernel.Tx.Models.DataEnrichment.html | 0 .../sdk/Textkernel.Tx.Models.Document.html | 20 +- .../Textkernel.Tx.Models.GeoCoordinates.html | 12 +- ...tkernel.Tx.Models.GeocodedCoordinates.html | 8 +- ...rnel.Tx.Models.Job.ApplicationDetails.html | 36 +- ...extkernel.Tx.Models.Job.EmployerNames.html | 12 +- .../Textkernel.Tx.Models.Job.JobDegree.html | 20 +- .../Textkernel.Tx.Models.Job.JobMetadata.html | 4 +- .../Textkernel.Tx.Models.Job.JobTitles.html | 16 +- .../Textkernel.Tx.Models.Job.ParsedJob.html | 168 +- .../Textkernel.Tx.Models.Job.PayRange.html | 28 +- ....Models.Job.Skills.JobNormalizedSkill.html | 8 +- ...rnel.Tx.Models.Job.Skills.JobRawSkill.html | 8 +- ...tkernel.Tx.Models.Job.Skills.JobSkill.html | 8 +- ...x.Models.Job.Skills.JobSkillVariation.html | 8 +- ...l.Tx.Models.Job.Skills.JobSubTaxonomy.html | 8 +- ...rnel.Tx.Models.Job.Skills.JobTaxonomy.html | 4 +- ....Tx.Models.Job.Skills.JobTaxonomyRoot.html | 12 +- ...rnel.Tx.Models.Job.Skills.JobV2Skills.html | 16 +- .../sdk/Textkernel.Tx.Models.Job.Skills.html | 0 .../sdk/Textkernel.Tx.Models.Job.html | 0 .../sdk/Textkernel.Tx.Models.Location.html | 28 +- .../Textkernel.Tx.Models.Matching.Index.html | 16 +- ...xtkernel.Tx.Models.Matching.IndexType.html | 4 +- .../sdk/Textkernel.Tx.Models.Matching.html | 0 .../Textkernel.Tx.Models.ParsedDocument.html | 16 +- ...rnel.Tx.Models.ParsedDocumentMetadata.html | 24 +- ...xtkernel.Tx.Models.Resume.Association.html | 16 +- ...l.Tx.Models.Resume.CandidateReference.html | 36 +- ...kernel.Tx.Models.Resume.Certification.html | 16 +- ...Resume.ContactInfo.ContactInformation.html | 24 +- ....Models.Resume.ContactInfo.PersonName.html | 32 +- ...x.Models.Resume.ContactInfo.Telephone.html | 16 +- ....Models.Resume.ContactInfo.WebAddress.html | 12 +- ...els.Resume.ContactInfo.WebAddressType.html | 96 +- ...xtkernel.Tx.Models.Resume.ContactInfo.html | 0 ...nel.Tx.Models.Resume.Education.Degree.html | 20 +- ...els.Resume.Education.EducationDetails.html | 56 +- ...els.Resume.Education.EducationHistory.html | 12 +- ...ls.Resume.Education.GradePointAverage.html | 24 +- ...els.Resume.Education.NormalizedDegree.html | 12 +- ...Textkernel.Tx.Models.Resume.Education.html | 0 ...el.Tx.Models.Resume.Employment.Bullet.html | 12 +- ...Employment.CompanyNameWithProbability.html | 8 +- ....Tx.Models.Resume.Employment.Employer.html | 16 +- ...s.Resume.Employment.EmploymentHistory.html | 12 +- ...s.Resume.Employment.ExperienceSummary.html | 44 +- ....Tx.Models.Resume.Employment.JobTitle.html | 20 +- ...mployment.ParsingNormalizedProfession.html | 28 +- ....Tx.Models.Resume.Employment.Position.html | 76 +- ...dNormalizedProfessionClassification-1.html | 8 +- ...extkernel.Tx.Models.Resume.Employment.html | 0 ...l.Tx.Models.Resume.LanguageCompetency.html | 16 +- ...ernel.Tx.Models.Resume.LicenseDetails.html | 12 +- ...x.Models.Resume.Metadata.ReservedData.html | 24 +- ...Models.Resume.Metadata.ResumeMetadata.html | 16 +- ...sume.Metadata.ResumeQualityAssessment.html | 12 +- ....Resume.Metadata.ResumeQualityFinding.html | 16 +- ...ls.Resume.Metadata.ResumeQualityLevel.html | 28 +- ....Models.Resume.Metadata.ResumeSection.html | 20 +- .../Textkernel.Tx.Models.Resume.Metadata.html | 0 ...odels.Resume.Military.MilitaryDetails.html | 24 +- ...odels.Resume.Military.MilitaryService.html | 16 +- ...ls.Resume.Military.SecurityCredential.html | 12 +- .../Textkernel.Tx.Models.Resume.Military.html | 0 ...nel.Tx.Models.Resume.NationalIdentity.html | 12 +- ...nel.Tx.Models.Resume.NormalizedString.html | 12 +- ...tkernel.Tx.Models.Resume.ParsedResume.html | 120 +- ...l.Tx.Models.Resume.PersonalAttributes.html | 88 +- .../Textkernel.Tx.Models.Resume.Salary.html | 12 +- ...el.Tx.Models.Resume.SectionIdentifier.html | 12 +- ...s.Resume.Skills.ResumeNormalizedSkill.html | 16 +- ...x.Models.Resume.Skills.ResumeRawSkill.html | 16 +- ...l.Tx.Models.Resume.Skills.ResumeSkill.html | 16 +- ...ls.Resume.Skills.ResumeSkillVariation.html | 16 +- ...odels.Resume.Skills.ResumeSubTaxonomy.html | 8 +- ...x.Models.Resume.Skills.ResumeTaxonomy.html | 4 +- ...dels.Resume.Skills.ResumeTaxonomyRoot.html | 12 +- ...x.Models.Resume.Skills.ResumeV2Skills.html | 16 +- .../Textkernel.Tx.Models.Resume.Skills.html | 0 ...rnel.Tx.Models.Resume.TrainingDetails.html | 24 +- ...rnel.Tx.Models.Resume.TrainingHistory.html | 12 +- .../sdk/Textkernel.Tx.Models.Resume.html | 0 ...nel.Tx.Models.Skills.FoundSubTaxonomy.html | 12 +- ...rnel.Tx.Models.Skills.FoundTaxonomy-1.html | 20 +- ...xtkernel.Tx.Models.Skills.ITaxonomy-1.html | 16 +- ...rnel.Tx.Models.Skills.NormalizedSkill.html | 20 +- ...rnel.Tx.Models.Skills.ProfessionClass.html | 20 +- ...rnel.Tx.Models.Skills.ProfessionGroup.html | 20 +- .../Textkernel.Tx.Models.Skills.RawSkill.html | 8 +- .../Textkernel.Tx.Models.Skills.Skill.html | 16 +- ...xtkernel.Tx.Models.Skills.SubTaxonomy.html | 12 +- .../Textkernel.Tx.Models.Skills.Taxonomy.html | 20 +- .../sdk/Textkernel.Tx.Models.Skills.html | 0 .../sdk/Textkernel.Tx.Models.TxDate.html | 24 +- .../Textkernel.Tx.Models.TxPrimitive-1.html | 8 +- .../{ => site-}/sdk/Textkernel.Tx.Models.html | 0 .../sdk/Textkernel.Tx.TxClient.html | 2178 ++++++++++++++--- .../sdk/Textkernel.Tx.TxClientSettings.html | 20 +- .../sdk/Textkernel.Tx.TxException.html | 24 +- .../Textkernel.Tx.TxGeocodeJobException.html | 4 +- ...extkernel.Tx.TxGeocodeResumeException.html | 4 +- .../Textkernel.Tx.TxIndexJobException.html | 4 +- .../Textkernel.Tx.TxIndexResumeException.html | 4 +- ...TxProfessionNormalizationJobException.html | 4 +- ...rofessionNormalizationResumeException.html | 4 +- .../Textkernel.Tx.TxUsableJobException.html | 8 +- ...Textkernel.Tx.TxUsableResumeException.html | 8 +- docs/{ => site-}/sdk/Textkernel.Tx.html | 0 docs/{ => site-}/sdk/index.html | 2 +- docs/{ => site-}/sdk/toc.html | 0 docs/{ => site-}/search-stopwords.json | 0 docs/{ => site-}/styles/docfx.css | 0 docs/{ => site-}/styles/docfx.js | 0 docs/{ => site-}/styles/docfx.vendor.css | 0 docs/{ => site-}/styles/docfx.vendor.js | 0 docs/{ => site-}/styles/lunr.js | 0 docs/{ => site-}/styles/lunr.min.js | 0 docs/{ => site-}/styles/main.css | 0 docs/{ => site-}/styles/main.js | 0 docs/{ => site-}/styles/search-worker.js | 0 docs/{ => site-}/styles/toggle-theme.js | 0 docs/{ => site-}/toc.html | 0 docs/{ => site-}/xrefmap.yml | 478 ++++ 406 files changed, 7024 insertions(+), 3465 deletions(-) rename docs/{ => site-}/favicon.ico (100%) rename docs/{ => site-}/fonts/glyphicons-halflings-regular.eot (100%) rename docs/{ => site-}/fonts/glyphicons-halflings-regular.svg (100%) rename docs/{ => site-}/fonts/glyphicons-halflings-regular.ttf (100%) rename docs/{ => site-}/fonts/glyphicons-halflings-regular.woff (100%) rename docs/{ => site-}/fonts/glyphicons-halflings-regular.woff2 (100%) rename docs/{ => site-}/images/favicon.ico (100%) rename docs/{ => site-}/index.html (97%) rename docs/{ => site-}/logo.svg (100%) rename docs/{ => site-}/manifest.json (83%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.BatchErrorResult.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.BatchParser.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.BatchParsingRules.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.BatchResult.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Batches.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.DataCenter.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.ITxClient.html (70%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Account.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.AccountInfo.html (89%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.BimetricScoring.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html (82%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html (82%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.DataEnrichment.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html (89%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Formatter.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Geocoding.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.ITxResponse.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Indexes.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.JobDescription.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html (87%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html (87%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Request.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.Response.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html (89%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.UI.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Matching.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.Parsing.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.API.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.DataEnrichment.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Document.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.GeoCoordinates.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html (89%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.EmployerNames.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.JobDegree.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.JobMetadata.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.JobTitles.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.ParsedJob.html (86%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.PayRange.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.Skills.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Job.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Location.html (89%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Matching.Index.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Matching.IndexType.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Matching.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.ParsedDocument.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Association.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html (89%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Certification.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html (89%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html (86%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.ContactInfo.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html (88%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Education.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html (88%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Employment.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Metadata.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Military.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html (87%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html (86%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Salary.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.Skills.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html (90%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Resume.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.RawSkill.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.Skill.html (92%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html (93%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.Skills.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.TxDate.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.TxPrimitive-1.html (94%) rename docs/{ => site-}/sdk/Textkernel.Tx.Models.html (100%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxClient.html (70%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxClientSettings.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxException.html (91%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxGeocodeJobException.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxGeocodeResumeException.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxIndexJobException.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxIndexResumeException.html (96%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html (97%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxUsableJobException.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.TxUsableResumeException.html (95%) rename docs/{ => site-}/sdk/Textkernel.Tx.html (100%) rename docs/{ => site-}/sdk/index.html (98%) rename docs/{ => site-}/sdk/toc.html (100%) rename docs/{ => site-}/search-stopwords.json (100%) rename docs/{ => site-}/styles/docfx.css (100%) rename docs/{ => site-}/styles/docfx.js (100%) rename docs/{ => site-}/styles/docfx.vendor.css (100%) rename docs/{ => site-}/styles/docfx.vendor.js (100%) rename docs/{ => site-}/styles/lunr.js (100%) rename docs/{ => site-}/styles/lunr.min.js (100%) rename docs/{ => site-}/styles/main.css (100%) rename docs/{ => site-}/styles/main.js (100%) rename docs/{ => site-}/styles/search-worker.js (100%) rename docs/{ => site-}/styles/toggle-theme.js (100%) rename docs/{ => site-}/toc.html (100%) rename docs/{ => site-}/xrefmap.yml (94%) diff --git a/docs/favicon.ico b/docs/site-/favicon.ico similarity index 100% rename from docs/favicon.ico rename to docs/site-/favicon.ico diff --git a/docs/fonts/glyphicons-halflings-regular.eot b/docs/site-/fonts/glyphicons-halflings-regular.eot similarity index 100% rename from docs/fonts/glyphicons-halflings-regular.eot rename to docs/site-/fonts/glyphicons-halflings-regular.eot diff --git a/docs/fonts/glyphicons-halflings-regular.svg b/docs/site-/fonts/glyphicons-halflings-regular.svg similarity index 100% rename from docs/fonts/glyphicons-halflings-regular.svg rename to docs/site-/fonts/glyphicons-halflings-regular.svg diff --git a/docs/fonts/glyphicons-halflings-regular.ttf b/docs/site-/fonts/glyphicons-halflings-regular.ttf similarity index 100% rename from docs/fonts/glyphicons-halflings-regular.ttf rename to docs/site-/fonts/glyphicons-halflings-regular.ttf diff --git a/docs/fonts/glyphicons-halflings-regular.woff b/docs/site-/fonts/glyphicons-halflings-regular.woff similarity index 100% rename from docs/fonts/glyphicons-halflings-regular.woff rename to docs/site-/fonts/glyphicons-halflings-regular.woff diff --git a/docs/fonts/glyphicons-halflings-regular.woff2 b/docs/site-/fonts/glyphicons-halflings-regular.woff2 similarity index 100% rename from docs/fonts/glyphicons-halflings-regular.woff2 rename to docs/site-/fonts/glyphicons-halflings-regular.woff2 diff --git a/docs/images/favicon.ico b/docs/site-/images/favicon.ico similarity index 100% rename from docs/images/favicon.ico rename to docs/site-/images/favicon.ico diff --git a/docs/index.html b/docs/site-/index.html similarity index 97% rename from docs/index.html rename to docs/site-/index.html index 4fd3176a..c9554680 100644 --- a/docs/index.html +++ b/docs/site-/index.html @@ -82,7 +82,7 @@

tx-dotnet

diff --git a/docs/logo.svg b/docs/site-/logo.svg similarity index 100% rename from docs/logo.svg rename to docs/site-/logo.svg diff --git a/docs/manifest.json b/docs/site-/manifest.json similarity index 83% rename from docs/manifest.json rename to docs/site-/manifest.json index 78d2a992..a8403435 100644 --- a/docs/manifest.json +++ b/docs/site-/manifest.json @@ -20,7 +20,7 @@ "output": { ".html": { "relative_path": "index.html", - "hash": "M54LR4cSAhY0Zyogpl51uX1JW2t2+UApkVpVeDqFylM=" + "hash": "3hFRwS0u5ml6718c3luf4iL9TNOASufK98t1YHjiPG8=" } }, "is_incremental": false, @@ -32,7 +32,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchErrorResult.html", - "hash": "Q5d5EPO9pviIYsZB6I8GgACoFo6uyVZ9Ox+A9I0tJ2A=" + "hash": "UqDquR3h3sKkQGOLOZ+d4Jrt3ZBw9eeM2Jb25Tz0Abo=" } }, "is_incremental": false, @@ -44,7 +44,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchParser.html", - "hash": "FRhrA3Np105rXxgJJO2p3dYp1YZWFCX9BWAaT3IqYcQ=" + "hash": "kBMSaJbT8aXj8qB1IYGM9KNjAte6H87Yd6D/2DklSNc=" } }, "is_incremental": false, @@ -56,7 +56,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchParsingRules.html", - "hash": "WN+SmTvJUx9PEoR+oHLaYi/6wnM9US5t1Vsch2dvhyE=" + "hash": "lRRABVi9i6z+IgqiapFQt1Npi+Kqo1DMjTfvlONYBPE=" } }, "is_incremental": false, @@ -68,7 +68,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchResult.html", - "hash": "S9BYErIjSuxg82/M9EOdZUMkMpVbuwsR0E97nyzLils=" + "hash": "WSr6MFwiDgHLCFTA59Ei6T/RV6ElGI9iHa77gBrnpUo=" } }, "is_incremental": false, @@ -80,7 +80,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html", - "hash": "Owhx4KgD7nUFzYbtvycnP+UJbH1xdB8gnvYcVNbv3aE=" + "hash": "0eGVnDsgdw4no7QGbxKfiw4G3vU2JNvHw1U0ELtGZqM=" } }, "is_incremental": false, @@ -92,7 +92,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html", - "hash": "g46AnTGsOM8Q2dsKu5BN3byLuiFJlKySanzpuR9ScN8=" + "hash": "M4bsQ/4+ICFZb2hjv6MuFlcw4EOsiqb5aJWNBDYaPr4=" } }, "is_incremental": false, @@ -104,7 +104,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html", - "hash": "uFbJNfrBvi+iPDnw7BCp3dbX+L5uLWU/OdrokFFpv2w=" + "hash": "/g1YrZtBDKCWXowOrdFCZqLRO3iVLl9J3FtOBlUKyd8=" } }, "is_incremental": false, @@ -116,7 +116,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html", - "hash": "FFr6ffjW0nLFq+ncM7bPvMmGk6dOVQdbRxNmzZvKIXU=" + "hash": "9zKRu1ibYXSFBII0P83MrUVwOJKvsO4YCRA3HGii6Bo=" } }, "is_incremental": false, @@ -128,7 +128,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html", - "hash": "DekfZBScbJDhWkLtITFgf8pcVOlPs3p7LqFzSqW2tRo=" + "hash": "rij3f1WD4WHczG6t5JyZLEag4VsTaoj0Ld3xPctfNLI=" } }, "is_incremental": false, @@ -152,7 +152,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.DataCenter.html", - "hash": "XdsftB8HmuQ0zLQhV/znmqFygKiphBoXJshR1GIWvVc=" + "hash": "KSmykzob2oOB8NWDaVIL+yAzcwXlqLcx50xxgm+YpdM=" } }, "is_incremental": false, @@ -164,7 +164,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.ITxClient.html", - "hash": "ERP8GVsUHdcQwYd0UQh9Nf68iW3fMIvucKsjfrrnCvw=" + "hash": "5qoszPfixEN7D1h35zF3OZj7WkikRghI6tbk0lKQVYM=" } }, "is_incremental": false, @@ -176,7 +176,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html", - "hash": "wmsHGkj89bodMC5ND13kys/UWrv4o0xYRecqOQAcBxM=" + "hash": "a3fY+hJW2yJjuJ5M3ZjpsyHqp+nIXqdPUjp/cjdbmvw=" } }, "is_incremental": false, @@ -200,7 +200,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.AccountInfo.html", - "hash": "JF73tea2ZwEMqyWMUzFPBBcUAlfThC9yyHU6Pre3KAI=" + "hash": "g1atWMDRhVIL6GAfjfucnDDILE2FKtUG74ak4KA071g=" } }, "is_incremental": false, @@ -212,7 +212,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponse-1.html", - "hash": "AXdKbkGwj+0Z0LX6ERxOnQG8DoXBUbcDLD9zd1tvWl0=" + "hash": "FulBKYhzF84J9gXU7mJDYAP4seRB80tKVVeJHoQwtaQ=" } }, "is_incremental": false, @@ -224,7 +224,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html", - "hash": "knoq911wL3bNcGJELMsUQHvroAoBeTPIGTClaqpXRqg=" + "hash": "fJ/pRt/P5GujoRByc5jHJF0CPy7IGauVVnxjJ8xurp8=" } }, "is_incremental": false, @@ -236,7 +236,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html", - "hash": "yNQF19dMwm8jQyLNxNsS+ix2C/Ec7htZNXq+DHLEWho=" + "hash": "RNryXEVy+lRzq+ofmRI7KzXm3STz7dQ4mqBbIZBm87o=" } }, "is_incremental": false, @@ -248,7 +248,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html", - "hash": "mhGQEhGrhCGFyoYKdmkCAqxywWIgn1t/kuof8B0zPR4=" + "hash": "8/uLIT8LfingpFU56n4MQ+0kVHAHWCffZH7pqYwtZ4M=" } }, "is_incremental": false, @@ -260,7 +260,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html", - "hash": "kQKTt/Ne2uyOsL4zGRhBbe8tgUo2iu3jlC+qW527fs0=" + "hash": "MWZOUacYWO9ZivlONGW+TQk8yMrNWx5BfRcqR2C4WwY=" } }, "is_incremental": false, @@ -272,7 +272,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html", - "hash": "j/BM6exT5acDsYBthYqMQzR9ppuP/uZKhldHolO4irM=" + "hash": "BSr4cOwj0N8JR6P3v3plqI52sGzr7r5K3hbCDOkK8SM=" } }, "is_incremental": false, @@ -284,7 +284,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html", - "hash": "QzbE5AVwVnDwP1LRQO85NUS6vVpSfUq6p/HaUAE4AR4=" + "hash": "eLVDwzl7hUuoGWBQHglbh5aiTCcUcAf/8VG/rF3eJT4=" } }, "is_incremental": false, @@ -296,7 +296,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html", - "hash": "T5kbnmw//xjXmw+oiSY7lFNJ3Zrdat1pXO+AQi5ZWfg=" + "hash": "H/AlQLkkUiDP8Haq6slvvntcItaonMLkav3eSDIqMs8=" } }, "is_incremental": false, @@ -308,7 +308,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html", - "hash": "TMj9E8/HSOjanzBnkxfcwptgH4ibu8eSwgQm5GiAOT4=" + "hash": "w7i+SY3okbta3VgAYAPjVGUz/Z9cXLq15JVroAbMyuY=" } }, "is_incremental": false, @@ -320,7 +320,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html", - "hash": "tfO+Mlg9Cpa8noAfyDUrP4Z+f0RP1D1hwx9ZO7hV3/E=" + "hash": "6dIc1b6305iqRInvDPUd2EPVWJO4K3Pzlu3xhockwco=" } }, "is_incremental": false, @@ -332,7 +332,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html", - "hash": "uq2AiBkVjNnkZU2oB34Aojlc/zpAIawqb8onaxFk8Og=" + "hash": "lYMDBJDEKsulMIsO92kB/8EBvoSmUCUHj5sJozDQ+Tw=" } }, "is_incremental": false, @@ -344,7 +344,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html", - "hash": "xxd5fiOdRuZmm2bxddFuoDrZqMeLpeLqYKwibKJVPKI=" + "hash": "KsjE4YBhkNoPVKSKKZcM8PxQxVeeKVuYr8YsWx61RcM=" } }, "is_incremental": false, @@ -368,7 +368,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html", - "hash": "BvGo3tFf9AciVMvU6cEcL9NkeHHOGWs0fVTfFYIHm+o=" + "hash": "Qf880Vn071A1O2mkhlqVvhkLeWLfvRKGRI+LbUYP6sk=" } }, "is_incremental": false, @@ -380,7 +380,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html", - "hash": "nh1kuDJtQWKY1id6Dq+RlVQkAXcMNsX0zhvszsQpATE=" + "hash": "1hP6JzjJSy4MTt34Eyx3w+8oCcCduYtPjE7vHFaZ3aM=" } }, "is_incremental": false, @@ -392,7 +392,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html", - "hash": "kpx+bVTqT96pYggnJTeSM2Efo+OVTHacXOIddXw22VY=" + "hash": "iGAqmZovLy9BqCQIsEqTMp152Ab5SuXvAIH2JXQww9Y=" } }, "is_incremental": false, @@ -404,7 +404,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html", - "hash": "UFgsCedy0ATo8sysDXFxUIkeNOxa/eXYdwCnFjU56uQ=" + "hash": "9tDDUIjzXbL2bYrgfTVa4Y0FX0HSeBI2EolI1ZVdMLs=" } }, "is_incremental": false, @@ -416,7 +416,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html", - "hash": "4TIsSBY0CoN/6IttkQTnCo21KzpupAtgXGaDfBQ0kSI=" + "hash": "U+/ByJ2RvCsD1W+xCZbtu+dwM8XoajSml8ZoIkL2+3o=" } }, "is_incremental": false, @@ -428,7 +428,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html", - "hash": "YjQjGArfayyN0C1KRugNNCnWK/D2r+O5/Q2/iwrIZ6g=" + "hash": "PLQEQ/D0KJi70vYqHaSoN2/89znJ/RzTjjdpgDzQowQ=" } }, "is_incremental": false, @@ -440,7 +440,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html", - "hash": "IdbYxxXUoSP9nfefUpd82J0N720GMpC2XD1DOL3Q1DU=" + "hash": "eCobezuvd40cQilktP60wUewydQPoOHKmtbWbTU6btE=" } }, "is_incremental": false, @@ -452,7 +452,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html", - "hash": "nuOT4urZXsThLnVQ7Ly0o1rryh1eSqDb505F5a3nKi4=" + "hash": "ONR/g/NOqF5HjtmoSb/n5+myigsbWJOe4TKFZ2g+gaM=" } }, "is_incremental": false, @@ -476,7 +476,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html", - "hash": "KgxRHz84MPQG4uySe+4VWUVvL0OnmkUzdCzrcPhFesE=" + "hash": "LVUli0EYytCE14Vyo3phJYk5hrkzyozEwem/C0ssYh4=" } }, "is_incremental": false, @@ -488,7 +488,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html", - "hash": "CovV2BYuc3NSzi2Q9RJfTGcjqp8cCkmv2Res8BSKBO4=" + "hash": "gQ3bfKuBeiL/IeGNGGhOiJhIHA6ItG4EAmd3QVA706U=" } }, "is_incremental": false, @@ -500,7 +500,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html", - "hash": "aWTIZAgfHtXJcq+1S4WFJqgSCooBUzRPPXVoOuolYJs=" + "hash": "1eQZq6P+mbpNBb8/VZMABomWd2p5xMHgYPTslz42Dco=" } }, "is_incremental": false, @@ -512,7 +512,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html", - "hash": "p4DsNUl1oVofXyWVy3xknTJdfB4hQ3D9HFqEUz320Uw=" + "hash": "wrEV9N3QdusYGfxMdeN5GmXNxOgTr91eBqDg26oJHY8=" } }, "is_incremental": false, @@ -524,7 +524,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html", - "hash": "G8hoTsRNiLzNiv9g/+YkGULuEW532MZ0SCnkSKQSKRA=" + "hash": "7ezAKnrSTiZ5XLCu1AKlYEtWFoSMRLi/1s1WKqDkryg=" } }, "is_incremental": false, @@ -536,7 +536,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html", - "hash": "1nEetZwh5zjQi1ZncG2DukDLzRG8jfk0lSjbD95LV5w=" + "hash": "GiBQMw1IaPKjm0GcgYzE795KrO8GCKbMi5OMB2/653Q=" } }, "is_incremental": false, @@ -548,7 +548,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html", - "hash": "Kz26roXiAesbzxtKJOyqTiWKTuBKFHe4WAJ6M2SjYlI=" + "hash": "N9nGYC6GK6VoiZocAOWH4L261btSz4fFdQa9GiZ7TNk=" } }, "is_incremental": false, @@ -560,7 +560,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html", - "hash": "e8hHKw1/b67VM9YxOE+GWi0Wu4cLqnViv7qklkijX5I=" + "hash": "b0i+6KbQjCT/mRp18REVt13XHFNd4PAv8GVC+KWOaJ4=" } }, "is_incremental": false, @@ -572,7 +572,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html", - "hash": "MH3CXhjhKRsinAeNYqXv8WRCVyn07u6eSi5NTBVsuaM=" + "hash": "jz/ht35ndJ+/Dh4Nc2Ooz2YXDLAl99cnDrpIk65KHgk=" } }, "is_incremental": false, @@ -584,7 +584,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html", - "hash": "tT4Xug42YWBTlwPMFoz3Ep6jOecBRclB9XBg8WpA1Xc=" + "hash": "oHfJQ/pZdXdQ8vHQ/YMW4/7RTweD5/SxkhhpM8sHcS4=" } }, "is_incremental": false, @@ -596,7 +596,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html", - "hash": "LBqAXXa8j0WArOdiTdOcEILLEdhMJjBFpKJisrIgJgA=" + "hash": "045QQakcVIbVAcjUE61jk6eoXos7GH+hjAk9xZ3POP4=" } }, "is_incremental": false, @@ -608,7 +608,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html", - "hash": "rV+ldRItIGTANtrAeJIi0N8BRqzYLIs+Ya8fQe1tOx0=" + "hash": "7i4JfQmp7yGtEWzizeN5B8iS9KqY2AaN5JGqRAOUN+Y=" } }, "is_incremental": false, @@ -620,7 +620,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html", - "hash": "8ZVh3cbCfX0DUMlomKS9ybf7WpyonVguhOk6+FQwLmQ=" + "hash": "FC+e1AhaDEM1pb99EFAEZMfN6LRZb7eNxW1tGR5xGa4=" } }, "is_incremental": false, @@ -632,7 +632,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html", - "hash": "d3kqMhQ34uZBa1U9mL0a/iefMErzHYPSsoPUTk8YEwk=" + "hash": "e4Ct+F6dL1DyjhSO7yxJcMFQGqG5JTtsFMMOtAe0rco=" } }, "is_incremental": false, @@ -656,7 +656,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html", - "hash": "hpWKWU/JrU8fF6XfUVd9TmzKNlfsnzQe1ONI7RzFY/0=" + "hash": "A7AVbNWnab7uapSLdpJfvLHsbAvOyVotgQ1ZokZkBgk=" } }, "is_incremental": false, @@ -668,7 +668,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html", - "hash": "4vrd0uctdJBZqcVyKF/1lMlnQWqi/qS8Y7ed+wlo6EE=" + "hash": "147e706Qdv/tpUvwWdVSX3U6iZYIlxZvbDZeCF9f1l8=" } }, "is_incremental": false, @@ -680,7 +680,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html", - "hash": "sXuYF9iRTv+1S+u5uHwfAMnK24QpfJQ5+nVSMqnggto=" + "hash": "ZWpWX31F0qWFB9qpGhMVoKtmIO849w5P0jtCeZfkZTE=" } }, "is_incremental": false, @@ -692,7 +692,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html", - "hash": "At+8BP38GpZq7alTWZhYMUUsRbUGHTybdOnizrLDSxg=" + "hash": "wpmu66XjK3kflmjkrpnx5U+s/USiRtsoj9f7HUX8WPo=" } }, "is_incremental": false, @@ -716,7 +716,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html", - "hash": "BbZUM1zeRX84XXTbwHnecgADJNLSvTyW/GRKa5b3wL8=" + "hash": "pGgWQcGDuxEIUum5yhqT+SSIu8lHMVg7fSb/eVNi88U=" } }, "is_incremental": false, @@ -728,7 +728,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html", - "hash": "J0hs1xzNhllDbuhWNWrmvdzUo2tSSymm9CqlObzByj4=" + "hash": "GnTRZD02gks6LYquTQXCoipy8DnE+GB73E7df70RCCI=" } }, "is_incremental": false, @@ -740,7 +740,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html", - "hash": "lr9An44z0on3RgcMOiRFhUm55tGOBRVrc62RQrZKVd8=" + "hash": "swkXbrkmWhHNLAxl94TWjKUPiiiHQ+LvJ3eYn4Ree8k=" } }, "is_incremental": false, @@ -752,7 +752,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html", - "hash": "Z7UEnJ7snMDFESAkueKqF7KrKHtUNZfQ6dJ42q/0Seo=" + "hash": "OBVbuc6DkRVDaKw11BAIdbs1Yn7ttE5V+HwcFM5RcI4=" } }, "is_incremental": false, @@ -764,7 +764,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html", - "hash": "y2LTSNZnKacQA9odLomaSoUDDuNKkwJL3eXLC2t9enE=" + "hash": "PqNUfidrvW38Pj9lMeF2whd5gnjUSHsFtk6xXiCaqX0=" } }, "is_incremental": false, @@ -776,7 +776,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html", - "hash": "FMF3/5Sveb5KwmLjq385PUcXMuUJcQj/IIRW1r5RyRw=" + "hash": "H14O27GbQrE8buRzXH3ZPyffyptzaBRslx4T+KHRlYE=" } }, "is_incremental": false, @@ -788,7 +788,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html", - "hash": "HSitjoIAmfwgW1zHSkq34/6ZbzcCigaBB66BqniAE9k=" + "hash": "+MWdcd9I+Ffhd+vmHmeSHUGSe4w/2uzuIm4E0AgZslk=" } }, "is_incremental": false, @@ -800,7 +800,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html", - "hash": "DfsmU6Hn+7umXKw2joAxuSr7xTiWu0nuy/Zb8cu03EA=" + "hash": "1cFErDltf/BpCuXh7iaEax4o23i6W268083Nymokytg=" } }, "is_incremental": false, @@ -836,7 +836,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html", - "hash": "8GE2PrP5xhlLRZZeXTKtAXD3BypDt56+WMAGmrp0GJM=" + "hash": "i5Y0Ulv4SFDsDlvuPgbHd7LvFK+Xsp5iD57I+C6oVQI=" } }, "is_incremental": false, @@ -848,7 +848,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html", - "hash": "+fCVYpyu27kcRfySrGyZTbDTB1UhYSzYWbCVaF9obLw=" + "hash": "Zg70MOCAMCUM/PeCbxOXahvYqGYepl9e9GVs0aov4mU=" } }, "is_incremental": false, @@ -860,7 +860,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html", - "hash": "mjOho6cavaXlMTYnKiJWDo17KNjy6LB3lwf3ZhmPnsA=" + "hash": "rr3jcMckRnMuFWfdvW2EKy6moD7tkRnOkzzzujC+Xio=" } }, "is_incremental": false, @@ -872,7 +872,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html", - "hash": "xpTxCycFqDkXIed03rZ59ay0JF/fYIcuzNis+2Xi2x4=" + "hash": "iHGgvLcvtT2mchj/cWFPwE54pMu42KHYHhgtRsX5uxQ=" } }, "is_incremental": false, @@ -896,7 +896,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html", - "hash": "LQqo+6er4q1nPoBbgfUomwXrcbk1ewLBcZrb+X8SDG8=" + "hash": "05SSPxDLGmz6r7szJFHmb6PK6ojM6vsd0n4RdCuPY4I=" } }, "is_incremental": false, @@ -908,7 +908,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html", - "hash": "26d80tZTcOHmnNzxAS5Qi0/UsuoGCqt2daWqnc9sg/0=" + "hash": "hGTFQDY7QanGlF2TJ4z1pGj5T6/bOpB655sXihWVd3E=" } }, "is_incremental": false, @@ -920,7 +920,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html", - "hash": "VFCjJT5dCN/iHWWBNgxhJUIdgSryAm3VcaWTWQc5XHY=" + "hash": "ZJOsuM1Wiyh9h1mEwl3yYYExp10heBQ8tUN2VQJqVc8=" } }, "is_incremental": false, @@ -932,7 +932,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html", - "hash": "WxBpcYq/8NoXo+EQ430VmkfdqQjC7Q/vicLIUfEb8Ow=" + "hash": "cW/yh0gHGdTgg2IePoN+7hoCMhSquopX3BmbUg3WcS0=" } }, "is_incremental": false, @@ -944,7 +944,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html", - "hash": "TPc/8Q4l6ZiJGf8eW8LrpbIJw75ExbV2JCvJ5rDHAaA=" + "hash": "446DitUeK7admQvp+OTr5VNRTA9LwO5OD40RbVCHA40=" } }, "is_incremental": false, @@ -956,7 +956,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html", - "hash": "xaMC3ppApETRuVNEpK0ofkrndE8aZms3KvnSxfGaIbg=" + "hash": "F3v7dpR+SRKbkJk+uscO4of6GibzS7jvICfwks0u/K8=" } }, "is_incremental": false, @@ -968,7 +968,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html", - "hash": "zm9xYd+S3f60UMje4Wwte5+92ngsOV4/Urhb5+JtSZg=" + "hash": "Db4Qqr2g3d82Ecm1U+22ZhY/lUxgwXXDI/TSW2BNCl4=" } }, "is_incremental": false, @@ -980,7 +980,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html", - "hash": "E9ZWIyqHvUG6cSai5/CSXXyaiBwZCFuCmJULDc238VQ=" + "hash": "/bXWjRVCPcp6fa2xgsKXQNYT6BtiBTTsKAaU2JGsL70=" } }, "is_incremental": false, @@ -992,7 +992,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html", - "hash": "AcX1TYwtmxm0+eF+UEGlQtxtGlNKR6Jy3pXiecPKAwQ=" + "hash": "bqFF+nPbAyhIrf+ZsUqYwj/b1bwRWQRSQjSNH5wcQfo=" } }, "is_incremental": false, @@ -1004,7 +1004,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html", - "hash": "1Yq3IvYcaBhKOwDW0giaNsyz3bGH4vEdGaUrgauMb4M=" + "hash": "lSF/rczYj+mUoiHcOgRoe4AV0gWIXPZKCwzqJadlLvo=" } }, "is_incremental": false, @@ -1028,7 +1028,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html", - "hash": "GLwnZS4kebHRmSh/fhQ5a211qMu6rcv4rgU9b5K2gKw=" + "hash": "DAfXUlKUw7XX3tkz5gIll7RkYHI65XVsNORRGVLcBzE=" } }, "is_incremental": false, @@ -1052,7 +1052,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html", - "hash": "t1LhQ3jRQZPmiInM16hDegjp82dBYVFx4cG8/fkir+c=" + "hash": "qc+vKyX9hiObq2FcEfHUYCaI711BGBBDq9PORrboQ9o=" } }, "is_incremental": false, @@ -1064,7 +1064,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html", - "hash": "9CUlVVezl9OWqGvgDq0ygfqp4dEkPOdIof8as5KmYcM=" + "hash": "VfAvKLpSvcb2WSq8C+uGRLPKmMhmIzccxcYz9eUU6lE=" } }, "is_incremental": false, @@ -1076,7 +1076,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html", - "hash": "J5Wis/fiaWPuhNhp+yRwhdvJ8GEVbomPMbKsjNiMOPM=" + "hash": "D8lCrGvkmhNAdMtnRImmrigsuZgoqOcsDJM/5tWIuwg=" } }, "is_incremental": false, @@ -1088,7 +1088,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html", - "hash": "cpn0yK77fLU90qp9wUHbC9URP2txH5K7WOqZDwm8N8I=" + "hash": "OyW+mxKRupkLD6MklIcYxBqCjrqfNc5VYncpXUAC834=" } }, "is_incremental": false, @@ -1100,7 +1100,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html", - "hash": "G8NAkiYE/fcKssD6D0oWgoic+mvCYlUxP22B624VD1Y=" + "hash": "aCNkPu491MwlRjYo9LaYkB/KStO9VKN+Ti3nBkQUeC4=" } }, "is_incremental": false, @@ -1112,7 +1112,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html", - "hash": "Pky/NXybLebEsqK+hXDAvTS6cyMTWmQFf5xsXF5UeOQ=" + "hash": "TSZFv0+GiCvjPghPuwRIUlpO4QBVrLIYJk79is0KHh4=" } }, "is_incremental": false, @@ -1124,7 +1124,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html", - "hash": "Du+DZk6w5FY7fQh+I1kgmvjU8O1FAVzg8sbSh0Jw8J0=" + "hash": "tTY8CIGY1IloLQWoTcdHHbo7Di1Z/xaGc/iVHqdrkS0=" } }, "is_incremental": false, @@ -1136,7 +1136,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html", - "hash": "HSKlTbjJk6PjRmafQKZz09Sxn/qoMuT7ViTtEMEet7E=" + "hash": "NjwZ/HKDUnJkm4qaz2jHhlYfBzwvBn2dA+OnuQqTknQ=" } }, "is_incremental": false, @@ -1148,7 +1148,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html", - "hash": "8ow4SnnNun9HBog1Bw1nbp52eJaYtULAHSjZKyIzNvA=" + "hash": "8M89x0aSVeEJFHoGYVu2zp6cr6YK22ubiT60qlJNyxc=" } }, "is_incremental": false, @@ -1160,7 +1160,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html", - "hash": "1BB73ZfS2siTfX2FQdZBKa/eLnHREUcbjnK4Dapu6Xs=" + "hash": "kesC2nDfqXFMmYpZEgMOdFqxqXbbwhqPpK4PJd6tB/Y=" } }, "is_incremental": false, @@ -1172,7 +1172,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html", - "hash": "wnw43RrNP7t25QR4C3QBE/CCodGsApTEIdC1CfX2maI=" + "hash": "KAVDZUbB2YbOi5pXqcC15IgvadhOm6OfAv8yL3f4/Vo=" } }, "is_incremental": false, @@ -1184,7 +1184,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html", - "hash": "odwS1RwbFqwj1aDOR7TRjd/T6S511nA0myLNAxLCJXw=" + "hash": "ftxwOvQy0DfefT2ZmVT9pqW5OkzXrNEjidMZ11kI+pQ=" } }, "is_incremental": false, @@ -1208,7 +1208,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.Address.html", - "hash": "ePXhA8kCO6gD7XeQvNTsoTCJgFmxLYL+/lZ7/nfSegY=" + "hash": "frFshOJinjcqZlWT/C/RBK8Lku8nJsuyKBD7790pMXo=" } }, "is_incremental": false, @@ -1220,7 +1220,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html", - "hash": "OO/0OTHp4oLZmxjHxzBbNPipEgCJKoHEyyJlQjtcR1o=" + "hash": "cVAjinlYWDmuKZwm1rPknXh4I02IeX/9uPuZjO6Qxbk=" } }, "is_incremental": false, @@ -1232,7 +1232,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html", - "hash": "EIhrGPcid0Q+ZiiNS/Vdpek3Qub3CJs4vhg0CNOdGSY=" + "hash": "/1ssDMZcTMgzPYny760yPenPdpUHAkZWl2vsD83g9oA=" } }, "is_incremental": false, @@ -1244,7 +1244,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html", - "hash": "IbkmfphKmyFaik29+315itArXCsPcIrePkWxPUiUCAU=" + "hash": "MupRynhw+Sl0NaWemiFaiKs3/R5dA8L4T3pnzojTGnk=" } }, "is_incremental": false, @@ -1256,7 +1256,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html", - "hash": "bxOt8hEcIIbTeDxekLFs2y6AWxTaVjsvXW/PWOqPKI4=" + "hash": "+2hDJe3ka4jQ8K0+kWgbhrNj8EqiD6M58837V1jaths=" } }, "is_incremental": false, @@ -1268,7 +1268,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html", - "hash": "pNlzmlZ9tUMsduwOzBJF/n7cMZ/CstgIB1cuwkxJVVU=" + "hash": "dHhgg8B6wvyaJddvJBe71e/JNpH1nqq5essNJBtTQpU=" } }, "is_incremental": false, @@ -1280,7 +1280,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html", - "hash": "/hvlzLmbaA0z6+rmH9vD2Lx1ZUAnbNy3gQHNM/o5x5o=" + "hash": "lj6kPmjudPucIrcBDaTtM5mDetCLet0woaagqxu/WlI=" } }, "is_incremental": false, @@ -1292,7 +1292,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html", - "hash": "TRnfSYNY+/GePZ3bRu12jlB5sXs3X72/2GiQPSfeBBY=" + "hash": "AItekCtxwUjODd86CoRQyx2+8PJ9IL++notWxJK1Vjk=" } }, "is_incremental": false, @@ -1304,7 +1304,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html", - "hash": "5qAF79dMxNr0mGHdgh+mssZF/HxvImuPPokc+Odyep8=" + "hash": "PPRw1oGoyZFyDkbeehf1EvS4P/2tGIVOIJ30z9sjfyk=" } }, "is_incremental": false, @@ -1316,7 +1316,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html", - "hash": "6rNJwdlLW7e0ftuFM/zdGZuezTZ335fktdcvgvACiZE=" + "hash": "Du2LphYVkoT+qkyRXSYsRIcI4jwNwNHiRQ9KLnKst40=" } }, "is_incremental": false, @@ -1328,7 +1328,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html", - "hash": "8aHHDTJ5ZLbOEv30L+EpjrUSvCdseDn1rhdBsiUpoq0=" + "hash": "/H9vBhKwy0Zq+DA7YjCAOy4PDBpvDe6fcJRgLu1sG9w=" } }, "is_incremental": false, @@ -1340,7 +1340,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html", - "hash": "zKnsxt+ueZcJQD1Zc1ii8xql8oP+wcOj5GBewOl6F2M=" + "hash": "XWX3QiGEWn4y2awS4uAujdzPa1UWPv75fwWtU0cq1pY=" } }, "is_incremental": false, @@ -1352,7 +1352,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html", - "hash": "nmy2ePy+/T06rmy/h8ahCv1yKdWAPpLPgteFZ+TyfjM=" + "hash": "671q9UBOq2Mkl4QCMDHxNrmC1YeM1yB97zDIQTprAnI=" } }, "is_incremental": false, @@ -1364,7 +1364,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html", - "hash": "4n7C8wXITNeAOdtZJq4Bcre3rPijF/N6+13C13JxS/s=" + "hash": "N0dmgL0dtwZCqlfmllsYVdbT7pTbejwFzWvgjxCrsww=" } }, "is_incremental": false, @@ -1376,7 +1376,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html", - "hash": "YgRnOPmvqWC83+8K2p69NUc5qZxVuorxNKk5nkB+1Q4=" + "hash": "YbFZuS6oMPhdyxwqpvGe4A11Jj06TG1wJu3NuYfNgo4=" } }, "is_incremental": false, @@ -1388,7 +1388,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html", - "hash": "spyMhkKhqFe8IY0v+Q3HFQQEETRHl3KupnhMdRXQxMs=" + "hash": "27PhRzm7E3sI7XivcNhJbBCDkGLC4q79KDKwDJ8B57I=" } }, "is_incremental": false, @@ -1400,7 +1400,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html", - "hash": "Mcr8pU+hMvP7hSy3P7bSU5kD1xPnC2DUgDHGtb4kKT0=" + "hash": "m5SULv9AfzSwybk2h9KEQjH4WuGrFXjxdm2P2RtU3AU=" } }, "is_incremental": false, @@ -1412,7 +1412,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html", - "hash": "m1bgKaMQ6L1tBggTyMUTQhBH1MwsoMbgSHX1vTOf9yM=" + "hash": "SnhOdGBJ8ZgVZ4UnkByXUtv5DpFUCvaMthBkyDXFhbo=" } }, "is_incremental": false, @@ -1424,7 +1424,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html", - "hash": "pyq61t/qYydKf3fS1HXF7KzeWUJSlEGiWZk0BjGqPZ0=" + "hash": "ukbewo7ivtjSD/zmuYIpqtT4AU8tOleFoMxDPAqjuVI=" } }, "is_incremental": false, @@ -1448,7 +1448,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ITxResponse.html", - "hash": "lLpM8liVYhQ2waKC4ir63bClVw11051idNtnpLw7drM=" + "hash": "l6g22NjILpNDQlIaiF/9KZrEjDdPYI/lZr64yl8Fwl0=" } }, "is_incremental": false, @@ -1460,7 +1460,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html", - "hash": "7CJBljn4okt4QZbgkYGT+9XnbNfwgkG/whpFyH4Qc3M=" + "hash": "CgwNgctFY8m8SnYWwVgpuGKE2aSkGaccGfVuovqWAks=" } }, "is_incremental": false, @@ -1472,7 +1472,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html", - "hash": "i42sA0wiONCO2T2iOnmARkwOiipG/QDKT9ZOPVCTkug=" + "hash": "GRTzja/R7M3BnCRYrxDornUD4yFEuVkXRiY7EW/1Y/k=" } }, "is_incremental": false, @@ -1484,7 +1484,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html", - "hash": "ZO70MOfBrmEfoaaA7kId1RDDlDfEtnkEluBch4nwrAs=" + "hash": "bkFdi10yZBj1fpNbg3s4zegsGSITRUfvPgLvEIJZugI=" } }, "is_incremental": false, @@ -1496,7 +1496,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html", - "hash": "VfUa+TwF8q61eCqW/HHPfZ+1iGje7/plzsujAJql3XQ=" + "hash": "mdlxqcEHs1bPc68Jfzb/RgK+xr5ocKdzwPa75Zfp2Lc=" } }, "is_incremental": false, @@ -1508,7 +1508,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html", - "hash": "ZUrWDGgcnvv50b3TAbzhI06W/Ampu9ayw7SWLDBCyCw=" + "hash": "2hjyJkJs2CqjwwI5CTGNXN9EPE4WmMQqbH6VqVxddsc=" } }, "is_incremental": false, @@ -1520,7 +1520,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html", - "hash": "Y1sB6BfuRzl/rUs5zNwcx8a7cJL/TOSnYeo8OcWyTwc=" + "hash": "RH43fq54OL0l/g0LdHyNF5fB2YLa6/Y4yB9UoS73LCE=" } }, "is_incremental": false, @@ -1532,7 +1532,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html", - "hash": "AUkdI5Pe/RPmALkxYthUQm7pppBZKGdEo03TaVAyv+o=" + "hash": "Crv0TtSEgr2Qh8+Q37NBPeZusFq5MKiXaSIeh+EU/lg=" } }, "is_incremental": false, @@ -1544,7 +1544,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html", - "hash": "C0uitYKHtZRlYVAxiuilRhidTve8G19laxP7VGeLcrk=" + "hash": "fzmN5jPfZ1DgZP6ulFrkFPismsRY8+YzIwAEFzw10lw=" } }, "is_incremental": false, @@ -1556,7 +1556,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html", - "hash": "FnCLh9AFaoWyjsXZtODX8Zn8HxXeVGBYyyc/6xIo74k=" + "hash": "dEULhQpwNmuB33AVaf0pYGEWrfSIB0TSzshk0ndVc5o=" } }, "is_incremental": false, @@ -1568,7 +1568,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html", - "hash": "ua6SJBkevNdwyh7J1DGMK6mwNOzz1j0HHrGBAWfFhuY=" + "hash": "1yKBMyy/o/9sWRHXZiaVnZrC+z8KzAKqjTJfdMh0iF8=" } }, "is_incremental": false, @@ -1580,7 +1580,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html", - "hash": "iiNIIOL2hR/dq/cJHCQudnCINQCXbsFCl8whqOpukUA=" + "hash": "Ap18VUArZq8T2ZprULK5b89Zr0KZnX0SQLmyV+rfjr4=" } }, "is_incremental": false, @@ -1592,7 +1592,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html", - "hash": "s7CQMVeypqMLPiYZcVdNoKeyOob9vGSO0f4dFOfzOWM=" + "hash": "GEdYNJcPeTfyleMvPzhcdWxfeHJ4mCC0GApH0HA/NSg=" } }, "is_incremental": false, @@ -1604,7 +1604,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html", - "hash": "sblbWgAS6E/rkx/CvVbCNyGliDDysRas2x/kCAs3CHM=" + "hash": "lcMLO7H4bGUn0UoEgUOh4R1Cypt7auL/PdZNAh6wBZc=" } }, "is_incremental": false, @@ -1616,7 +1616,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html", - "hash": "6dgaVIfZ2mMBCGYV25g5XV45AqbgzguWG7nJjeMzQoY=" + "hash": "7ErMiwtiNdEsyxqOyV5IiVJLBZjB7RIOeGwEl8T4IvE=" } }, "is_incremental": false, @@ -1628,7 +1628,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html", - "hash": "K860oSILC5/7BaWfDdYxs4y4ICwCZ0F+JtqdFMMjUdk=" + "hash": "llRR/JV2m0nfq/F2Hcig9Bwg3KupeZ6XhhBnsjqswp4=" } }, "is_incremental": false, @@ -1640,7 +1640,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html", - "hash": "7qFHrrbmorrS17vOEbUEEdzUVRTMyMHnrTx7fSde4mA=" + "hash": "OD+55Cifpx+ztA/FKY9d4LwatJEWIQGoA/TozJg2994=" } }, "is_incremental": false, @@ -1652,7 +1652,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html", - "hash": "N23qA3K5oYn+XcHKySyD/x06XU4rJfoaLfkGqUovHec=" + "hash": "xAEKVBpxYNUWkj1iqKfEJuKdmSP4dXerRL9UYzM+VwA=" } }, "is_incremental": false, @@ -1664,7 +1664,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html", - "hash": "kayTFtr0pbC4KZ4zO66ceLHdmp+gZlmVFwFHjWFmE7c=" + "hash": "+8+YDH2wH0/ebxsvDEZuXRbAko8k/ECMYZIPzVJG0oI=" } }, "is_incremental": false, @@ -1676,7 +1676,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html", - "hash": "CO/2sMH9JV7kHZiAwd27QiLtApw4z++9uGMKC9ZK+5g=" + "hash": "fguXvJr2XHwkIbNHTvntmaBzCaVXCRzkZ6+47vxqFTw=" } }, "is_incremental": false, @@ -1688,7 +1688,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html", - "hash": "DJ2tUDKxd14PG6fHGuOmdvKxoIyZ2UqJ2mWOF6NHO9M=" + "hash": "9IF24WGGZGGL9ERO4wklH3vhbhdwDvNRpi8GH5Bi8+4=" } }, "is_incremental": false, @@ -1700,7 +1700,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html", - "hash": "YKaHjVG4/WFhsiVnfLd3nBeadDftW164go+WA2rdQwg=" + "hash": "3Iowsq5SCKXgfGQHwjHXxli4Uid3c3X/7gD0k4UlCkQ=" } }, "is_incremental": false, @@ -1712,7 +1712,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html", - "hash": "h6HaEAWG00Fw/56xU/TfXRRDBJyDPQ+HdYWn5Nww3YU=" + "hash": "3KfcqClJhrZ8YXT6stKNCgY1dvsLlR6TzWY0ZJTlENg=" } }, "is_incremental": false, @@ -1724,7 +1724,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html", - "hash": "kF7WgCJy7ADR7R8K3NyD4EtZV1/nXBT4TL9AKm2CHsQ=" + "hash": "C6vklVif1jSIQ3SaJnskz+ygT3f4ov56wHaaueFYqN0=" } }, "is_incremental": false, @@ -1736,7 +1736,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html", - "hash": "7H3sqY4ANKCVoPaT+WpoL39IvXUnaK33/IFzBolZHII=" + "hash": "GiPEhr3TfhLhq7VlU7/aWmj/W/ztFOv7bBofmZYA6yU=" } }, "is_incremental": false, @@ -1760,7 +1760,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html", - "hash": "J6kpyOwCqNgGd998+WI4eI+y8Q8viwOyrqq6BetCUxk=" + "hash": "AuI0A2bEAkXSTf80LmRKo4kULtjyDg14M4mPshzhNS0=" } }, "is_incremental": false, @@ -1772,7 +1772,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html", - "hash": "JWMxojJRNDKFQv8/SssI0ldYjHGnubQeT1Oj6yyPaKU=" + "hash": "GZg3bDGLbhiK4Bkcxn/u6f8mYUn3O7wxBDwkIaU5iJo=" } }, "is_incremental": false, @@ -1784,7 +1784,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html", - "hash": "bMr52ClC4KeT2r3AsdLVvNi0hlMXNDDxIjS79GiSk+4=" + "hash": "+JTaqLpSX4Q4VNP8NPhHcvnO1P8xv/doGTwP6v3K1yc=" } }, "is_incremental": false, @@ -1796,7 +1796,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html", - "hash": "R5kEfbvNm5mPCIFs1XtUyBn8Vz9ghDoJvwFOgXlVmRs=" + "hash": "KNuey1qErrFVWU+fEEbpkd2V/V/EwLW2/PzvLWwRHoc=" } }, "is_incremental": false, @@ -1808,7 +1808,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html", - "hash": "S9fMnZeymBpglGgDSBwP1YGfQW/KpMyRg9kaAjOVlaQ=" + "hash": "ZFN8KxnGjTFyxClaq7yOXGcBUfJovzKu5MnyH6eQ79A=" } }, "is_incremental": false, @@ -1820,7 +1820,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html", - "hash": "CwpmYjaruPHVCrjS5iENbPGv7mM7/jJ5N+ifUwi57pA=" + "hash": "IiVgjFY0lgN9vYvrwRCi1yIgrMsbIndmz8levgdAl4c=" } }, "is_incremental": false, @@ -1832,7 +1832,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html", - "hash": "5mCSYUBEM2sLbGGXZExAr2jQ2Nt9iyAULT5ABEv5dPg=" + "hash": "ucZi6gfnmhgrKZSQ9euc4CNCTIadoEeOZYBQ1uNpBHs=" } }, "is_incremental": false, @@ -1844,7 +1844,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html", - "hash": "2DQQGlJ5yTY1qBeZG+j1M01A6udgwogkiPY+dG20/R8=" + "hash": "ORF/SYthV+icNO4Jc2s5d7nh2Mil1qAWxIMa2se0NeY=" } }, "is_incremental": false, @@ -1856,7 +1856,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html", - "hash": "SSDaU/+PdL5CJOWFd9KO7t+fv+6RLxAsc6PoRmu/ZgE=" + "hash": "7FfCC/H7U9krJnfANf6yEn/IHJ54N3LXREJ5YWqATOc=" } }, "is_incremental": false, @@ -1880,7 +1880,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html", - "hash": "TDedYQ4w8Qq/9n137pqSEkmCULGIx9nm0Nsbz3gySAI=" + "hash": "56svVHN5jyaJ4m/Atd27NRPHxKYh3MahV/q7cnITUlU=" } }, "is_incremental": false, @@ -1892,7 +1892,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html", - "hash": "Wtq1yyGQ4sqM3/zUosZRGTEOCO7AsacQbwfpWCTqqrc=" + "hash": "HvMJTS+ym1EmnRKJb9wvvF1gLlX4H2Z8atGNOBIpyrM=" } }, "is_incremental": false, @@ -1904,7 +1904,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html", - "hash": "M83ouogm4cX6SlznFd9zjgLcDsdgx/7n0k8MRPXYnj4=" + "hash": "+qSEVCDob/7rTkSaAHn+SzH6fAPVvmy7CaLJ46cLZnY=" } }, "is_incremental": false, @@ -1916,7 +1916,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html", - "hash": "p0HZTPlxkdDD8CvoWSNxpcMx3RgAYtlXwpT9eZCC5ag=" + "hash": "uT35QbNnBNJP8H1Ik77AcbPXNyjSqOYoQGIQKlBm2zs=" } }, "is_incremental": false, @@ -1928,7 +1928,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html", - "hash": "uzRvEOd6s5EmgbPOVhoRkWGgEVT88TqXKZKBMHSAKPw=" + "hash": "a/nG3CNHRJHlTjMnHxsiTYLrvucvxWcLgGcJ1WDswfM=" } }, "is_incremental": false, @@ -1940,7 +1940,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html", - "hash": "xB+N8qE8A5f9dhldQjcyMKzFrWp0sw9Dn5OMwe56zUw=" + "hash": "A3tltobAvXGiWfkGy9D+oz2e4kzf6J6T8zFq+pw7DmU=" } }, "is_incremental": false, @@ -1952,7 +1952,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html", - "hash": "H4xraNe8QyyS92j0kdJX7Do1YH266y9y+o64Jn97hyc=" + "hash": "YVYVgG0DiNyTRTR0WQSiyl1K3Vo/pDX6SXMmfL/oFco=" } }, "is_incremental": false, @@ -1964,7 +1964,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html", - "hash": "qRW5UAX4MwODnmHCXiiNgAuJjoGU8GtGy7oesAVDQvw=" + "hash": "NRPMnMlZeG8IgJ+GAl3y/guP9Xe0zMblfqTwn2EO7KA=" } }, "is_incremental": false, @@ -1976,7 +1976,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html", - "hash": "pqrd7Hr7uK1KRHkelf/m1eJ3h+AOu4/kgQ0Luk8UNpY=" + "hash": "iY+FcfsiFCxAClYmWAX/280NqLEN172TJY+0dD3IUz4=" } }, "is_incremental": false, @@ -1988,7 +1988,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html", - "hash": "OS/HFCpwKhUEjq/QTNIny0wUT6jVvzv/Lh5QFWl1rHg=" + "hash": "alhXXDcBLg4v4TXcK4omM7POelH7BntsijkIQRKmcGk=" } }, "is_incremental": false, @@ -2000,7 +2000,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html", - "hash": "4QlgGlxKPc/9tEzQ26elkMHys+0FAvUyqbkIIqQKzEo=" + "hash": "v2nsG98MtlJwjzJ3NtGJmvbA7YfYiS5ms9lHNwGMqog=" } }, "is_incremental": false, @@ -2012,7 +2012,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html", - "hash": "BXONLMpCA/Ng7irZnt05mXjJbUNuazKd2qPOOPP5h7A=" + "hash": "oh9bg2x5RXIHVg4zQL4e9BmiY2aRutQIrrmPe0mCMmw=" } }, "is_incremental": false, @@ -2024,7 +2024,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html", - "hash": "xsKI2cqW/0ZSSMzPAsZev++KjRFITZ0O0D0WNZPxJIY=" + "hash": "Xjl1BeKrxGF533MpOY25J4JMcIwC4rBEaM0a8VdwLQA=" } }, "is_incremental": false, @@ -2036,7 +2036,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html", - "hash": "XPS/tZR1EWOuh4E9Rb1A3tgnkjsVZW2w8Xck0uruGiY=" + "hash": "La/q6yqtorjVkibwiNEfA4j0SBRLXym/Nt5TjFFIdOM=" } }, "is_incremental": false, @@ -2048,7 +2048,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html", - "hash": "a5P5UwPu3PxWCO+Ek33QgVWsWvvSQa3DOEJ5XMKsW6U=" + "hash": "9YrqSQ9+JrAGUtkjr7disCrZVvhO6UANEnzLmW+NhKg=" } }, "is_incremental": false, @@ -2060,7 +2060,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html", - "hash": "kYuWOGBf7RmyFMdZL7jUk5g0MGHH4HRAiynyMvacpHA=" + "hash": "xannYUz7RQmMuqGsU+uK98y+po3tbhcp7pXwj3XkKyk=" } }, "is_incremental": false, @@ -2072,7 +2072,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html", - "hash": "fc6zbeqtjKL1Y3hmUm1bmKoGU0ivh1b79n0f8KzpDWc=" + "hash": "xUZzS7aEOfFexyccN7MmHtjszG9CLthvbmkFeX7/Qcg=" } }, "is_incremental": false, @@ -2084,7 +2084,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html", - "hash": "GfZL4cBuwzvxwHEmTpDbXchALLFQSYl5A19nto8dHCg=" + "hash": "MQg82F0Bdn+ECtkTjrh1ebajgn+nlVKiWMuVyR79Udw=" } }, "is_incremental": false, @@ -2096,7 +2096,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html", - "hash": "g+D4PdEJ9gusXQHcri7cZBMrIzKtgS5TIKfhAJrsIys=" + "hash": "TGYvrm3D70YluirjdYroY6OnqD6nCEF40X6xPQ9ZIuI=" } }, "is_incremental": false, @@ -2108,7 +2108,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html", - "hash": "u1gl5huEZYCyJLZHapwzvu3lOpn5gm5LseWrf9YAMRs=" + "hash": "Ee6WTu5/+bMm1PhSKOtAsIlZMtVE3SdD5DhlJOH4H6c=" } }, "is_incremental": false, @@ -2120,7 +2120,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html", - "hash": "R/Vq5Esu0JwPU+Bh4Oj/mgF7RU99eeixxFF72KPSaTQ=" + "hash": "B4vIjPLqPohJI4F2hz5r5COJcs8h+O1sABxZrZ1OpBM=" } }, "is_incremental": false, @@ -2144,7 +2144,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html", - "hash": "Sz24CWG6J54Bl2W7YAStJNWxQ6mIUSsCXvl6E9IWOz8=" + "hash": "9uZhxY8PFEVU/wVM1ofOboQdDbM5DvMfMpTuDI+tEPs=" } }, "is_incremental": false, @@ -2156,7 +2156,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html", - "hash": "WdrWyGoT6Qp9kBJqzikj/l/zaqSRppmZz+trUvdZ2KI=" + "hash": "c3b1ddvFC9Rb/5Gsp6jy16E5IY0Xlb8tKdPOiN+Irsw=" } }, "is_incremental": false, @@ -2168,7 +2168,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html", - "hash": "0tK6zoxQnbrxJX1rNrfsu/PMh8XyZpqRBjTFOT+JqyM=" + "hash": "XbHrfcyMTy9bZl763GH7jbiFBzxiI+9ymIfcMZavUQ0=" } }, "is_incremental": false, @@ -2180,7 +2180,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html", - "hash": "eWLPDZW6bX7nPoVNVbPW0SjI5/m4gaN6H+bxaUws5zU=" + "hash": "wn08Wu2bbNxWM+quO/3aXs4HPOOAFp5Ge/WxQ5Nz41o=" } }, "is_incremental": false, @@ -2192,7 +2192,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html", - "hash": "YGIs0O2a9t7CngJOuphDzEtCDb3wFW5UEePwatN/2pI=" + "hash": "OPKVtYQ5bIBHmc3RMkmJWjoPmyPIik5C6ADeqgwRIQs=" } }, "is_incremental": false, @@ -2204,7 +2204,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html", - "hash": "YEgE/1BC8tvsCaJcX3oXTi1e5hVm6fHJTL+g1NXuOAc=" + "hash": "/th1mJXnw+j55fm4fxsIFbrzyDXbn0mLKTZPBbMRNFs=" } }, "is_incremental": false, @@ -2216,7 +2216,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html", - "hash": "Erhu2ET23/fRc8uOzfnqjzCm2lgpM4KmlMj/GtwIKUw=" + "hash": "2EA3SgQXkmEdtDYYkEBMLQjpmVftbv+JUvCXEhvxULk=" } }, "is_incremental": false, @@ -2228,7 +2228,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html", - "hash": "W4AeUEOj/4SOH5AXKecXMGMS96rWo37wY3+BFRXMkuc=" + "hash": "1/4WnDr1QPqbSChQA7tBcLNZi787pDzND/n2+Lw7gos=" } }, "is_incremental": false, @@ -2240,7 +2240,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html", - "hash": "dVTQbUhgggxTtw4Tyguz8jSUaa2ZlihI6v3dOi6MM3s=" + "hash": "AyESwtNmBBjPX68PCLo8FemOUvU1LPv4OVKr93VSG5I=" } }, "is_incremental": false, @@ -2252,7 +2252,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html", - "hash": "Mff2ZG39ZEIZaRZGAX+GAatzfpewUMALoVckjH7e6TI=" + "hash": "noP3BVSnEtILHWpUe3r96G3+UrVzDg+JzjCL+5STbWs=" } }, "is_incremental": false, @@ -2264,7 +2264,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html", - "hash": "NvS0vsPJcq59zEx2F0GfA5bl68l5pSG/0XW/BPe9ArE=" + "hash": "l6V1Bkv9GuG84Tr13NmupznbX0UnirXUBy/zWAnBmo0=" } }, "is_incremental": false, @@ -2276,7 +2276,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html", - "hash": "UFhr1JU9RYykJM96A1beOHGFn9to2VhSyEEe6hqWqcA=" + "hash": "WS8QQNcFhuKd/Uq4RqhP55/n2/aMP8mpH+ELficnwGU=" } }, "is_incremental": false, @@ -2288,7 +2288,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html", - "hash": "bg8Q9RaxBzAY5lt3yodIocfvxL+JMynazLXWIFT8aSo=" + "hash": "ifnunYLunv0DN9UEvsRNB5P2tCpKg62zef4CioZF1sI=" } }, "is_incremental": false, @@ -2300,7 +2300,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html", - "hash": "J+8j3Sl4US4EqMGFUORzISHcK+33sHGBqEkvF2hov70=" + "hash": "XkJ+N3MDUvy3y7Hecc2deThwMh8NMYReFH+q9FYB5mI=" } }, "is_incremental": false, @@ -2312,7 +2312,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html", - "hash": "VHilVGZW5IUafTzqJKbIplt/g71jUhmZaCsKcL9iA9c=" + "hash": "WOFOoAEOGprfmau/PQ4eNDSSbLIu+DIamoTQpBQD5Vo=" } }, "is_incremental": false, @@ -2324,7 +2324,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html", - "hash": "vrqRnhz+f9NXJi3k/sl/x/qyGOBz1ezG55GAM2nAGiY=" + "hash": "Es7ClKFoHR3/zFcbclFHSQhxaHaOetP/+kxT4LAMdZ4=" } }, "is_incremental": false, @@ -2336,7 +2336,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html", - "hash": "Lxkac4dlOknZ9tVhkPtKLdqcXjKHaOZdO5AqWXu/ywY=" + "hash": "k5arKoLqWL0yzWdG4pvswBLofAZ1AR5A0b4+FSm9V9I=" } }, "is_incremental": false, @@ -2360,7 +2360,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html", - "hash": "z3FIeihVbsMyk27QVMQ5+DZkpw7hDShOzpD+bzMYdNk=" + "hash": "Cpy5dQo+WriqPlf7YEqx/YwstdZPLwW7V6UhFw2JSEY=" } }, "is_incremental": false, @@ -2372,7 +2372,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html", - "hash": "UNUxAqBXEsoOevN1zvCkoLHZ7l/D/sOItf7ltBFOLKc=" + "hash": "F6dKjdTZHUub6W7+dCba9dF+6FntDjhJbSfgI7/jYxg=" } }, "is_incremental": false, @@ -2384,7 +2384,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html", - "hash": "1Vu/2OiUU0U+i8hStpIqR9372ItGYuannWd/4Fp1Evg=" + "hash": "OMv+uURpwdIlbwbN1DMgMLI6tQwLfd8ons5zot5M5NE=" } }, "is_incremental": false, @@ -2396,7 +2396,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html", - "hash": "ao9UwVNT5galMlpG24NXz6pCG1wYSI8ytDNRpsQ3KpA=" + "hash": "rtfTYDEG1iQgxCTreLYZZWWbMsLS/dCorQHkj8CiVMI=" } }, "is_incremental": false, @@ -2408,7 +2408,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html", - "hash": "ncBLLVZ90qkapHvIaUCbh9acnRQy7vbhlKTqhrp9PyQ=" + "hash": "Vgwim5Z9qe2lGq5Lytgjts/ModNNIFj71ajMCieHaWA=" } }, "is_incremental": false, @@ -2420,7 +2420,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html", - "hash": "3/gSCxm6GMOS3/nCtmL/xh5my94Zyr9VhqrvCjJ57XU=" + "hash": "kYorsgLDkh/O30og4Z2TU5vhb2eqLepfbn+q4wfoye8=" } }, "is_incremental": false, @@ -2432,7 +2432,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html", - "hash": "mTskBAW6ffzqaHVgs1595yf87BU1//UmHKFU86DDHe4=" + "hash": "G3R7IXUIf4MciS5Iag2b07nP76ynr0pM7eYMvXaaZrA=" } }, "is_incremental": false, @@ -2444,7 +2444,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html", - "hash": "J6wYnMoNQPHJvE4AJpj4EIsssyezXH69KdK+xBNAJ5M=" + "hash": "mOZ35RGadz5pk81kAn3Gojwm1xKk1K0eHwve0PKhPPY=" } }, "is_incremental": false, @@ -2456,7 +2456,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html", - "hash": "TYgsv4P2f43nOS2sUzfKC8fo59blDO2s7vUxZCIrstw=" + "hash": "N6ZjR8U91ZlTYEaTx/47WU8X3heA9asCdrDTF9hld5Q=" } }, "is_incremental": false, @@ -2468,7 +2468,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html", - "hash": "U7YMZRcwAU+rjPeNPINgS6PL76x+940B/vTq8/gdk1w=" + "hash": "X5DENz/Ej7wSms2sgyx653f6TdHPHBfOhV9UnlsXd1Q=" } }, "is_incremental": false, @@ -2480,7 +2480,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html", - "hash": "H6+Q0xevqt15wmLQxMnLK46y0tr1cccwkMKQvDnHRBM=" + "hash": "2Gi4sdNTCUIXmglJ854u52Wqp/yN7Hp48wWfxcY+RZM=" } }, "is_incremental": false, @@ -2492,7 +2492,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html", - "hash": "AfQjmz5BhAIA7JpapUnCXEGbd60tcAyeGUV3V/7Sbr4=" + "hash": "Sd73xH41Vqy+TOZWznORukHjq8Y1DyyHKiQVAyvQ1qc=" } }, "is_incremental": false, @@ -2504,7 +2504,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html", - "hash": "K7gdh2oI/i8aIX3KfbeKSZ39biSHQh2OPjuTTOkH5G8=" + "hash": "3XsqHj/ayNEBm6eCFMDKT4Z6qMWQjHc/mMhCZbyZts4=" } }, "is_incremental": false, @@ -2516,7 +2516,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html", - "hash": "U2NB/0M8FvXBCUXpLBc5csEeYTv8VkePy5R3ZDBgpts=" + "hash": "Hwjq/n39Uis5jMc7RHSe42gQoL99BDWAlmsJmupmR9Q=" } }, "is_incremental": false, @@ -2528,7 +2528,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html", - "hash": "uYT7x5M4awwrstiYtFszuW8H2lPRani7hQLZNuAONL0=" + "hash": "1yB2oJbgckCV30jGeJq/uMj/CUxRg7SY3MCJOBod0Rc=" } }, "is_incremental": false, @@ -2540,7 +2540,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html", - "hash": "DLWO7AN5NZ1hUohH50XFC1Joybj2Li5uICN3WQEjlH4=" + "hash": "aafj2GnkQu+rRREv596Xt+s7qlEKfDvRDHhFXWifZo8=" } }, "is_incremental": false, @@ -2552,7 +2552,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html", - "hash": "44zssXv5KkaVw0ikOulMTe2if7pVxr7FIyLFzBjfjOU=" + "hash": "MlskEyxn29AnSKMxHUukjie67uO/h7WYzDkhVhTJS6g=" } }, "is_incremental": false, @@ -2564,7 +2564,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html", - "hash": "0WPOXAFSgKeaAnwEcOJFdQMmMaNJ4ZRg9vU8R8bPPe4=" + "hash": "twLXls4IQQZFGi9opSmBuKK2P6//hWQkG16qCdKTYrU=" } }, "is_incremental": false, @@ -2576,7 +2576,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html", - "hash": "5UgbzXyPC8Aav50m467F9Gp9zQrsJRWKkM6+deGrskw=" + "hash": "bNyJuGJ5lxOYerP5mvOXAvBzXMLQAkch5P6lQTUoDe4=" } }, "is_incremental": false, @@ -2588,7 +2588,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html", - "hash": "SPoywt9zrlpUMYYn7/FJESM3NbPwPjLaaG/Osu+WeFs=" + "hash": "pUYjoqgegvysUtGFidQt4C0/bmH+sL0sAGWVxllUFck=" } }, "is_incremental": false, @@ -2600,7 +2600,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html", - "hash": "tDz0YrevIrGqeHGAzakpHULdyIeqE/BfIcaHCegwfOM=" + "hash": "DisNMSZMydDr3iO1u1lWT1FJCb8rYjXIzPRi60WDTXY=" } }, "is_incremental": false, @@ -2612,7 +2612,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html", - "hash": "C0WAgHD8OZHg/fCGiYpniTupOTldAhTvFPH9VIQdovg=" + "hash": "lBY59OizP5ulq0xhwb24J76lcX7tN2MCZkaNFTYBWhU=" } }, "is_incremental": false, @@ -2624,7 +2624,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html", - "hash": "Y1YVf6W39gde3jTFpJQqgQUPFg323J6CW68F1OBxa4k=" + "hash": "BkNgLE9TTQ0B3oQHBIv6I1FeyrJDwJ6B4m9n8LhxPwM=" } }, "is_incremental": false, @@ -2636,7 +2636,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html", - "hash": "923Fc2drPk2SIoBGs+OpI6pP1zf8OtJJO71nMTT1ARI=" + "hash": "+kz66e1rY7a6sRkSSy7mUFRpauTtU9U73VMbqM5xg4I=" } }, "is_incremental": false, @@ -2648,7 +2648,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html", - "hash": "/+qnJNTSRS7bqBQSjwk6ahotoGbV0cIaHpmq+99gggk=" + "hash": "UGmrMv8eUtwbJnQZ9isWryYs12nUG0yDgO7LfXsZPpU=" } }, "is_incremental": false, @@ -2660,7 +2660,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html", - "hash": "8BPXf+X6kS2qJWSgJLVwHbDmSVLWKKQyhulnplsM2Nw=" + "hash": "ylksVvyOlgdvD32I+qfeaLf/FSFvaFVTsbORu9krRn8=" } }, "is_incremental": false, @@ -2684,7 +2684,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html", - "hash": "9MeeHDvp85Ieu2awx0p6BOH/5x86o5eeFx8fvWR5wnE=" + "hash": "OKfXV78t5VOT5CbYRJU7H7/mYfhLZmsRiu9P4qaE/eE=" } }, "is_incremental": false, @@ -2696,7 +2696,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html", - "hash": "v/6QMkk3b/5wUSAazDeluFh018HdALYdwAvfpPr1Fus=" + "hash": "bkvX68THU9jV7E0OOJu2Xztz1jUMKMzqATl+yyYwyqw=" } }, "is_incremental": false, @@ -2708,7 +2708,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html", - "hash": "83tPm8QPpOA30iCPkgQ6rjBHq+xY6WalnA3z7/FGDsw=" + "hash": "hZrKCPciLLH/MiYnWXIcVcTN3jpKWx30lZkKgWCtnro=" } }, "is_incremental": false, @@ -2720,7 +2720,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html", - "hash": "o/vkRM97eT5xtA+Sa87wcqT2eiwEzVRsg5f6UW/P3Gw=" + "hash": "WRwC+iJXKsXUe2n76Yg2VLf4xbFRqSwJ06bJti8bXQs=" } }, "is_incremental": false, @@ -2732,7 +2732,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html", - "hash": "Q7HPS3zaUtXWjm+Zy5q+bKDugqKLddttG7Q0GOxFIEM=" + "hash": "d5q1AzG+8qHIATk2SShiw3WBhlnMiK/gbue1o+ersWQ=" } }, "is_incremental": false, @@ -2744,7 +2744,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html", - "hash": "nh7D1bXxbsJRIG9zvDyCgWR7WWOpsB5jIcKLlkgoy30=" + "hash": "vaxuAVaKzFyJ0/PbYuir9pJVBc7XpA0Gt2Ubc43mNKs=" } }, "is_incremental": false, @@ -2756,7 +2756,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html", - "hash": "Cj32Oc/eSbatJGk6TIrotqiv0PjuC2YPYuY0xCviJKY=" + "hash": "B5WFpAJ0N4oFXHZHNfmt9Ht3bnT7Rd46VHq61K5Thp8=" } }, "is_incremental": false, @@ -2768,7 +2768,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html", - "hash": "aTptbK1xHc+NDnqDpaE5BaOQJidzSLt/PQpap/DPJBw=" + "hash": "fcsspzEM2FBuoHF8vF8HewW5spT5Lg0sK8AR/pSS+t0=" } }, "is_incremental": false, @@ -2780,7 +2780,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html", - "hash": "5GI4rnvEAjYBwr25gd0388h4IzWI288RY7Dqvq/E5q0=" + "hash": "GiHI26dbs4TT5nCuwPJVWRisycvdPh9t/RfmmNHO+OQ=" } }, "is_incremental": false, @@ -2792,7 +2792,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html", - "hash": "2rPsLYeu//lzuhdGCqwZfVvPbAVTT1DjbfFNBzQQ6Vs=" + "hash": "BLnBPrXiDqC9tB0RN3go+P3sPPFvDGDzti0vbRPoQN4=" } }, "is_incremental": false, @@ -2804,7 +2804,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html", - "hash": "d9pG4L4YuGT4G49YonlyC7agwZ4c+bOOiBU+vdRIff4=" + "hash": "W9/9WPl4ENYik6Erxl9QIn8AtTvPPmh2LGqcQAnMsZ0=" } }, "is_incremental": false, @@ -2816,7 +2816,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html", - "hash": "vAfkQ+fPAi5GxH8/v47b88jq7rF5JMepnTQNa88+4dE=" + "hash": "rj/C5CLtlggMJM4bNQDGyvl1XQuGMMaZ3Bitr/Ttn38=" } }, "is_incremental": false, @@ -2828,7 +2828,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html", - "hash": "9eZ0xP8QUmZLDZ7Y7/29FGzpgW9I9GESD4mHiYRwpYk=" + "hash": "uogs1jpfxh4iIKDiyj2fcy8LcTOqBbZXbyJuSxyqtJo=" } }, "is_incremental": false, @@ -2840,7 +2840,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html", - "hash": "eMxMaT4je2wrV9jhK/qV0LpGeoUOD5Ag1mzJe/9F5aQ=" + "hash": "c8gItko/Nmt5FBgOM1igzwf4yFtlgb13ObQtLnJ8mvY=" } }, "is_incremental": false, @@ -2852,7 +2852,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html", - "hash": "a8vGkLWqcYUtd3WLexDdjSxtqV6HgEsPJB2sPfyVBKg=" + "hash": "t8cWofJIfso7mdyqWSeR0m3n8TnODOo+lFXdAY3pO8U=" } }, "is_incremental": false, @@ -2888,7 +2888,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html", - "hash": "cxQOLa1O7ayKY3siAA7kngevZZBx61NNeDLtf/lRBjc=" + "hash": "7k0xVKte/Tg5Xa13tO6ni9bdNxQvo22mI5wMNxGeBWk=" } }, "is_incremental": false, @@ -2900,7 +2900,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html", - "hash": "YpRXeFrRrZl55MFS22KV+OdbMi7R6k5swwF4LOs+teg=" + "hash": "60f45k2iENwYms/EC501Nz+wsBmcaMXGLhBGaCS/9kk=" } }, "is_incremental": false, @@ -2912,7 +2912,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html", - "hash": "+LDnyroVhKgVqns0/xsHQNKPExrLiQAK4wzmqH8Wi9E=" + "hash": "TL2j0+BjlIUUxgD8QqKC/cGJbX5pi7/69oAE6qj7n/E=" } }, "is_incremental": false, @@ -2924,7 +2924,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html", - "hash": "txXc+5sb00cC1DUnwmu0+avkK8rtXpyGNWIp+2RHty0=" + "hash": "wKWvT045q2TTkJ470OdAyraEj20HRJX3FFzVywQsWXY=" } }, "is_incremental": false, @@ -2936,7 +2936,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html", - "hash": "xN4v5k3dvXiQUSzZ2cEf+VPfC4lsy4UFHU5PFTIL3EQ=" + "hash": "EhzRA2dWNOVqHQiMIq1P+Qf5gnVKzUtuPBqdk0N17Vc=" } }, "is_incremental": false, @@ -2948,7 +2948,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html", - "hash": "i/HiKpj/0k70pWa+6JGr5k+5Lgi9AXPakOf496DhnHg=" + "hash": "DSk+8KMUIlwEwn1d+d8OaNYdVnUN//y4jSVn9hPHsBY=" } }, "is_incremental": false, @@ -2960,7 +2960,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html", - "hash": "nU8HzWkpEsvUbf2+OoDzqKK/yUXeK3MsKnGDhAhxPHE=" + "hash": "M5EXf2Iiz9IlaYJn/ZEqiYKpxO4Nly7brgJyeaZC10M=" } }, "is_incremental": false, @@ -2972,7 +2972,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html", - "hash": "74OmD9NR87PN9zwxvZ4toYWgUNmAkE7t29W1ehTcU/I=" + "hash": "mPEdqiQewLXnxcqFdLCH3fV3qPt7d8uSI1xsOeYsZ5o=" } }, "is_incremental": false, @@ -2984,7 +2984,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html", - "hash": "g+Pp0TboM+Z4C5MV2JAcfufP2t5ZR8/cSjUh4YUQ0Yc=" + "hash": "lGBmVtONZ2eih6Ygot6NaEnlODFz2v42wDPrWMANfig=" } }, "is_incremental": false, @@ -2996,7 +2996,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html", - "hash": "NqYFysZ8cwEIW5RzCPaCKeYGhcIEGiLrSFhVgBTZzIg=" + "hash": "3JoG6NYc+Suhaf34q2r0B+Rvc/udzlklZRjD+vHFGMw=" } }, "is_incremental": false, @@ -3008,7 +3008,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html", - "hash": "nEIXwILhIPxSSGHiIVpTyTjTelRphQsC7cnp0cFR+jY=" + "hash": "dcQALFWrS9usV88oCUCBnAMYXLnGAJFdN/xvDcKvznY=" } }, "is_incremental": false, @@ -3020,7 +3020,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html", - "hash": "xickIHPu3hJYG+5lGR/8Phkp85Og0zHElXiU7wO+O/Q=" + "hash": "mUvJNi/YeB0KBIOgE54IbnudsX7iecXzI9dof+bbev8=" } }, "is_incremental": false, @@ -3032,7 +3032,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html", - "hash": "aH32TFZ0cix/DntcWCRIyy8iX3r41FsbTc/9DYnNJ9Q=" + "hash": "dR58Ew56gtKDsIRwc717GmI8P5toA135OoXxj30BePo=" } }, "is_incremental": false, @@ -3044,7 +3044,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html", - "hash": "t8pCa+37GXTi0SYMsbTI3y2gpNqspAWbaU0SNMKwijM=" + "hash": "mS0+xkEz0QRCBf7VNYsnn8y5KF7SKjnBT3DeAaPQLbY=" } }, "is_incremental": false, @@ -3056,7 +3056,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html", - "hash": "IyeD6kdWYmdhi/v29mo/yo5OkComVbRGCmMKTWxguRQ=" + "hash": "MeW6+hT4yM5iwuFatddpGDoETjWz5hpPIFAre0i2zCw=" } }, "is_incremental": false, @@ -3068,7 +3068,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html", - "hash": "1Wk2cxtHR1bdyzN8NKlvCruyAHMWRDEDInCgfc3UIhg=" + "hash": "UdALIqcTEcN95JpeetZrh9Nt3d4PNMkQjkfx9OkYgi8=" } }, "is_incremental": false, @@ -3080,7 +3080,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html", - "hash": "57PY7ZQnomDsmfcvNGO+sA7mhjx3xCZfQllji+jxszU=" + "hash": "1093WjI4IhTC6kIiITH3w/LZ5FmwDg2xNXRi0HHbEOo=" } }, "is_incremental": false, @@ -3116,7 +3116,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html", - "hash": "xmX7smWrBj/NuWGk03X8L7p50yqvjTg/lVQFqQvs+OI=" + "hash": "CMl2ZMRvmTTz8vforrDtEprC83PnmvqTtSIrW//a4fY=" } }, "is_incremental": false, @@ -3128,7 +3128,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html", - "hash": "nnrIypn+/MVlXnNJqpaQ2sgRShNMJRuWUhjehhBdpQo=" + "hash": "QrhlvabeWHAnb0DhJIrP6f+bUFOose+po/lMMIBYeIA=" } }, "is_incremental": false, @@ -3140,7 +3140,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html", - "hash": "gQwAhSKMsNP8cYeoFTBdXEShSlLTYp+//h/YK5yCnAk=" + "hash": "ofRXCH3mlPBLNk5LeMBUqys9CC/xmMDgjusprrroUV4=" } }, "is_incremental": false, @@ -3152,7 +3152,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html", - "hash": "t4sGyqXorZvQUaJRYW/6/djr82LdjL1BLKmL5fdTWOk=" + "hash": "DWNEADlXi0hdXGLf8+7OfqL26cIadfcBY4XfOglxU+M=" } }, "is_incremental": false, @@ -3164,7 +3164,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html", - "hash": "aXJDyDgKjpDVjH1td9/BXcyW74MKs13RZMo/JNpMII4=" + "hash": "28ln2bvlJMPqteDkbGTNbIcxT8sDltIolz5DhS3wp9c=" } }, "is_incremental": false, @@ -3176,7 +3176,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html", - "hash": "fcya+s51gRv4o0v4iCovj5Sk4hfgv3+E/ACMLoTufqQ=" + "hash": "3p8+XcKtsnwjo3zf7Li+G+K/5c5//X99j5qGCq/sMG0=" } }, "is_incremental": false, @@ -3188,7 +3188,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html", - "hash": "9C4KiCz6GzYsA9uNBWZmoX1E+VU/8vRQRGZAiOl9kZE=" + "hash": "XaXSP+xNmt3agDIFMJjU2X34lY5BaESXlFauorZBL6M=" } }, "is_incremental": false, @@ -3200,7 +3200,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html", - "hash": "OEq0L6yc/UMsfiP8yoPLzxI9RRAmB4dMKD7e+zCmv0s=" + "hash": "d76TN/vKHR3OQQ9hwjcvOCZbn/kSS2QOzzryzu98rRU=" } }, "is_incremental": false, @@ -3212,7 +3212,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html", - "hash": "z3qoqhv5LbRPbclkMkZwgX5chODd7OaXXFeYvYOH4UU=" + "hash": "hp8nddjxRyGuNyISZWPv2Oscin9wCCBf88wiLqc4lE4=" } }, "is_incremental": false, @@ -3224,7 +3224,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html", - "hash": "qkewLKC3KDOZ4MVysgMNhVh6BZmqUec8k7dO2i2NUGY=" + "hash": "aNCgxfT7wN5ezvNz+ssW2wfXqDUtBCWjIbNt7gM0fd0=" } }, "is_incremental": false, @@ -3236,7 +3236,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html", - "hash": "m5KPRsZXzpibkkzHrAgRVa+TkD+USD3gjDhaxTdusW8=" + "hash": "wkQrDbjcnMx6Dy1dpf4McrcOln2kD8n0Qn/kmP998Ps=" } }, "is_incremental": false, @@ -3248,7 +3248,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html", - "hash": "fHIPlV4D3NDtP+8P5/HocJqLqJPIdcXlSXfwJKQAKy0=" + "hash": "gV0dTWGUCr07uU+/FMUrKrnxeeHElxmyo4Tt69ocF+U=" } }, "is_incremental": false, @@ -3260,7 +3260,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html", - "hash": "hu9Gg+tob07RvuRrBcXJzbnBJGLiVyTOx1M62qL0LxU=" + "hash": "OQ0d7KzhvccjrJn+IJbWk2VXI/gZ8v+oFahSzbCAiRM=" } }, "is_incremental": false, @@ -3272,7 +3272,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html", - "hash": "hX7HBuUD/E3PFJxEdmlQDrlr4a1Hv7ozZYcu0pcTZA0=" + "hash": "V10WjKxBaqr6aQpDGZ0iYYArVqHC80PlchHyVopBu7s=" } }, "is_incremental": false, @@ -3284,7 +3284,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html", - "hash": "BDcVUnqWnYIS4a7/d/2+NCEheE2Z2zaDtIry3tJlrz8=" + "hash": "TjHFrhoGMG1pBEh4sKC+Ttg6dRMSj1AqvcnyzGDh4rk=" } }, "is_incremental": false, @@ -3308,7 +3308,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Document.html", - "hash": "ge0q6BeC0yWISljDMfzrVP8J2Qq5uEkYQ6X6vByEJ1Q=" + "hash": "QDGU46f2Tjiu3W6Bmvwt3WIQwjVcygo+yNYskoQoy48=" } }, "is_incremental": false, @@ -3320,7 +3320,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.GeoCoordinates.html", - "hash": "jRHr73jlHuc+eInAV93hSmIOISDp9wbSmVGklPAlyO0=" + "hash": "vha2K6Qf8cZgc3I5EElK8jWaGdMzZd2jnArh47wEzPE=" } }, "is_incremental": false, @@ -3332,7 +3332,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.GeocodedCoordinates.html", - "hash": "2p4AhNlJGn1AFgLGjBlyGkrMX/XoGuL2diH8HBqSrXY=" + "hash": "NVL3vn3pXraZcFr2YUDnQ6RURPbJQYXXXrwSfNH+Pkc=" } }, "is_incremental": false, @@ -3344,7 +3344,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html", - "hash": "qZ+DLDYfHwPCV+k8TWM/Il1nXUTVTER1HciMeY6Jegk=" + "hash": "Jmo1hRAebVq8WCSuNr5edwZxbaIsvm7xV+orzeoFrmA=" } }, "is_incremental": false, @@ -3356,7 +3356,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.EmployerNames.html", - "hash": "s11HfOjaTq59bIYmv4BhJA1ka3O7TN0d7m16qQ6mWf4=" + "hash": "fzrCKryzwHJ5Uq3YKgdEoMIunjO4gPXd2BMfUbjEUpc=" } }, "is_incremental": false, @@ -3368,7 +3368,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobDegree.html", - "hash": "t7x0Qa3L3rSOx9t+2fNWdmRn6e20Q8cOfLmjbutPdCw=" + "hash": "JW5UJqSOATgiuA7t1UbLAtrS7+r817rxISLKqz2f0Bw=" } }, "is_incremental": false, @@ -3380,7 +3380,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobMetadata.html", - "hash": "ZJ6rjn8CWL8LkSE+2LKpTdW/dyHjQ3Nz80kbsAI8C60=" + "hash": "paSYHxuyeQ6RNtCm6GlHcA1plarVw1hChL+j7mVUkwc=" } }, "is_incremental": false, @@ -3392,7 +3392,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobTitles.html", - "hash": "IMErJOUFIiqVRyTQm3B76Gl++igwgDEdDpYNtVn+JbQ=" + "hash": "tnNAX45r7x2+8A+m4Vh2axp0DUekrLlJUgEIceK3fVk=" } }, "is_incremental": false, @@ -3404,7 +3404,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.ParsedJob.html", - "hash": "JHhPu8McTZsWyxCPFjEglsiZeLs9gq8wBjqA6abU7ls=" + "hash": "PMFiRTrrJZ19lkMu0Qxn1MReuOsvw9IbEGBiXS/d5kY=" } }, "is_incremental": false, @@ -3416,7 +3416,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.PayRange.html", - "hash": "/BafchufdWWZ5AUGqnNWB6YJKWQnlrFZW3Rg8JqIdZY=" + "hash": "xzPXxEmu9EhQ+qX4xO8l9HTRuceKVbLZx6vk1sm82A8=" } }, "is_incremental": false, @@ -3428,7 +3428,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html", - "hash": "4y+gU4JQyV/Dd9l63uTxNdcOqpbQourzMkLCbJg2MfE=" + "hash": "NQ7nylGFYp6YsPTs5C/WHoLom5rWsZgpu0ZWGZpfIrg=" } }, "is_incremental": false, @@ -3440,7 +3440,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html", - "hash": "rHYjCQwTCfHl3spnWfaazUmj5N+t70w2NfdEO2hAMhY=" + "hash": "LZ1ZaWHUSg+rUkQZLfM4Jhc2y+ycVm/fgPKlBrjd0HE=" } }, "is_incremental": false, @@ -3452,7 +3452,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html", - "hash": "53OMSGWAJC1IImOPt2aNMIBjkV2b5W6ga/Rl1lqDVKs=" + "hash": "wTo1df2MI/iIaklsK8vDOI9Z1uaiGJSCvx3fDSz+/jw=" } }, "is_incremental": false, @@ -3464,7 +3464,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html", - "hash": "ggy7xxj8hd4OlbSOC+AoJqlH5RT7vEFPZtklEKMiWrY=" + "hash": "nrCyaf18U+lBMKNHEDtX3oo7fuq5WLWJHsli/6axfd4=" } }, "is_incremental": false, @@ -3476,7 +3476,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html", - "hash": "u3EYeHPvN6B+ZkTCRQps+hvEkdagllKQQLFTl4eT6c0=" + "hash": "sGhcAZ/1hpOKjC/tZTyCRa5/5qznYB1unR9d3K+7FlM=" } }, "is_incremental": false, @@ -3488,7 +3488,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html", - "hash": "CdkyS0prVOeTtOZ4joL3x4+1WZKWEkyEjgIiN/Yb1LI=" + "hash": "Zdd6eVagtKKdHBwlWNGpilVOOROwl04/TvRJIh6+lQQ=" } }, "is_incremental": false, @@ -3500,7 +3500,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html", - "hash": "u1bOb3IeIjszx+rMJAAEhLsrtM4xlFvGM5KchPIuVAQ=" + "hash": "uJI9Ml+taSqN4Q/7GAgO60F1nfkwJrJW8XWqCFLFmYQ=" } }, "is_incremental": false, @@ -3512,7 +3512,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html", - "hash": "ZPxbpYGtoDGiF3xgbFYBQbnOVd6UngiLf2RavUpa10g=" + "hash": "fnvgwq0cR+BhmxO/wRUhqbI20k8Mq7bUhq2CAEjUc6s=" } }, "is_incremental": false, @@ -3548,7 +3548,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Location.html", - "hash": "f/mtekEKdLqoSbUl4547cT4fAjVxRFuHQG07xztTvnA=" + "hash": "yH0fG1INn64c8d5sqOx+7tHRHap2knVJjt6WaW6NaNA=" } }, "is_incremental": false, @@ -3560,7 +3560,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Matching.Index.html", - "hash": "sQpGIyGjPDCzaYUFJAUyDfnv/703KjenwkEfzIi08A8=" + "hash": "IwAyBSP9v6SE0JX5cZf6ZJnUDxMpuFxrcgwMDs6lYlI=" } }, "is_incremental": false, @@ -3572,7 +3572,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Matching.IndexType.html", - "hash": "9J0pD410896YsF2jpPSRxKidoZcnZ5g+IJsMj+Saqcg=" + "hash": "7QKN8Fk7pacotTmw87hO0B46uY0lHD7wdavXRsRDZUU=" } }, "is_incremental": false, @@ -3596,7 +3596,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.ParsedDocument.html", - "hash": "q0ZrmEKklJFoLk5i9lrVPJ4x/SdALfiCwkXtC8yF6q4=" + "hash": "vHjjoqZ5YQJ46OdtGORY95SOPDGpQABft2kxJBQQBLg=" } }, "is_incremental": false, @@ -3608,7 +3608,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html", - "hash": "UU32fxByfd/A4bthz1kCcBwhxgDshUx6eCspEzyiQcE=" + "hash": "O3NH5wWFTnZC4KPEheK5SStClvGasFUkKqUG5UChusA=" } }, "is_incremental": false, @@ -3620,7 +3620,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Association.html", - "hash": "l4Mn7MxX0QOAWFDJ6+Ghku0yE3Q7DnZoiK8PW61NBU8=" + "hash": "NzStWQmeL4AbufPDSPYBoj4uhe9d89U7qFbo8Mr65kw=" } }, "is_incremental": false, @@ -3632,7 +3632,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.CandidateReference.html", - "hash": "PnLGVkj5lrSZX0PR4YWvByxiPJSaUPoWVvlKPJmvtCg=" + "hash": "MLezvMgDrMpoASJMl+rntwo4mk17A98nBUpqLC79USM=" } }, "is_incremental": false, @@ -3644,7 +3644,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Certification.html", - "hash": "qYbRhmzIakxM7IQc+E6Q9F0agTBIJ6w++2tKiX19YjU=" + "hash": "tamcmy2bkY9ufkCmgznM8W0jMnvIJJPX0luzKPuoo/I=" } }, "is_incremental": false, @@ -3656,7 +3656,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html", - "hash": "57tr58656mde8dl9A+tufQmmwbjPi8C7URw9ZwHFLCM=" + "hash": "8fWnPl3+aE4hDgY6y3K7TUXo79nMAz9aqDS+UwAgP7k=" } }, "is_incremental": false, @@ -3668,7 +3668,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html", - "hash": "gFS1yvyIG6sv7rhtCdcFZN/RuvfDuCPjl3MWPnI2hB8=" + "hash": "dhe6bYOyeSFcDpRkR1Q2F1hIQh7zyH7JibXLoiRox80=" } }, "is_incremental": false, @@ -3680,7 +3680,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html", - "hash": "I7+B0bcQSPi+VBvehH9ROx5/sD8gkYdy4rqfKcyQ11Q=" + "hash": "qTIhUmm0sxFCH0asutHUkO5tVJrTm+Fduocw41MuqjI=" } }, "is_incremental": false, @@ -3692,7 +3692,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html", - "hash": "iJMdYO0g2mRau3DdxiPzQovyMyCR4W1pA2WuxvOlYi4=" + "hash": "0rdIZxYgPvq2TMUX/XaEQk0g1sCsxz+iJirRf2cQIKk=" } }, "is_incremental": false, @@ -3704,7 +3704,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html", - "hash": "ZJz2OM7FDHb1+E/GXJKCHPQH06Gt5kvvzlE0OwmBOIE=" + "hash": "Olh0NaIDQqIFuEZnFcxpwEqKspIOp0RhkCD5LMgNfTA=" } }, "is_incremental": false, @@ -3728,7 +3728,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.Degree.html", - "hash": "R2cdIGra3QWIdYbHuD8T4U2BqEB2voBBdFocmvU1ndk=" + "hash": "7HIcJTZcWEaLd9jmquVEfAMLFNeorUAf0TpN+PXOip8=" } }, "is_incremental": false, @@ -3740,7 +3740,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html", - "hash": "7MwLIT1y2GxilevpbPWa8vrCnB8O+mx0u1N8AXg1OQ0=" + "hash": "Nxb3EKghKS4NqXdjMOjNockXKGKB2yxvYqHbPcFccrY=" } }, "is_incremental": false, @@ -3752,7 +3752,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html", - "hash": "lLFxR1hM6NSOU9BaoB++AhgFa9e+BpmnwzfvqhpIAHM=" + "hash": "yXsPJzUKKI97hCMQW+iFogHgrg3cOUmJmfQVKCU555w=" } }, "is_incremental": false, @@ -3764,7 +3764,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html", - "hash": "EQTFnq0ebzf3Be9nQa5Gk7EkNeCtW7eapBFb08ZY1Q8=" + "hash": "OytnIoeNdVFzoj5UFn5NUipp0n8KcFQy6uXGIrRQzSY=" } }, "is_incremental": false, @@ -3776,7 +3776,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html", - "hash": "YsnKqdapXKr5K6apnaeVmOqL3SbMga4BoYIcMLXXSsg=" + "hash": "mOd3u+kZo53mNU3dKLredLElTOhXsJjuvMNP/HQXQ10=" } }, "is_incremental": false, @@ -3800,7 +3800,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html", - "hash": "5AxurpnOF6PFETQuLuzqcdQmxt240vgpq25ougKLmV8=" + "hash": "avaT3/wYru4ANKIxdd3jry25Mjr0cNpCe0FkLzgEnjo=" } }, "is_incremental": false, @@ -3812,7 +3812,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html", - "hash": "Q3hdys/bbyfHN4AVnkAka7A6qv1A1fF3cMqMTC4MdPY=" + "hash": "tZGRQQ8/Au6xziP3P6O8+8IWm13+2mQRyv6sSdxs8hM=" } }, "is_incremental": false, @@ -3824,7 +3824,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html", - "hash": "OgXMYmA3FYJ1NKLWdQsJHOF0qXPHeDpiqGC7W3vkbn0=" + "hash": "Uhb2GWxoy972AT/fbPXWSV5DgfVRJCH5m5qrorQrc7w=" } }, "is_incremental": false, @@ -3836,7 +3836,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html", - "hash": "/bJgBbtAxYDdWw2ivcQpuGdYI1fTz2oJGGadiigz1LU=" + "hash": "vCBD3/c9ikQSQCfCvYuW7oP+QnC+K9JG1CootLYZfj8=" } }, "is_incremental": false, @@ -3848,7 +3848,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html", - "hash": "gwYjDJZFkzddU8SNSZBHWfkf2xbm0FS+dBo7pkjxbK8=" + "hash": "5mKlCvPwc4fBR9kJxANkyrV5Duhr94Cq3+0Cb7AF18U=" } }, "is_incremental": false, @@ -3860,7 +3860,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html", - "hash": "tbUFriMTic3e8qLUIdcrAYer94d7Pu+dDNBINGOgBkY=" + "hash": "k49oF/o0efObMOtJjRT7xt80QEVju9iXPUnb1RsI3sU=" } }, "is_incremental": false, @@ -3872,7 +3872,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html", - "hash": "5DSSAbnsmMkm9kCBgbrkI0U5Z+4+bAwiLk8vfX9w4H4=" + "hash": "wVlTaaHNt+O/GA1J/P8FXPex/wNO8PEoQuf39+M61Hw=" } }, "is_incremental": false, @@ -3884,7 +3884,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Position.html", - "hash": "E5y9fzus3dzl7/8ZiFhVjeMvPlGyW/zinJEmzSGIFpk=" + "hash": "oBeG/j4ExNOQoZGV+eAzL7D03n6ElB3xQ3qeWnx8/Yc=" } }, "is_incremental": false, @@ -3896,7 +3896,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html", - "hash": "d31IryOeqZidFHS2VfTkRL0wt/puXdwC5Zk1Dl9Uogg=" + "hash": "RAVR1to80LFtmQUWPWmhx92jB6LZpF2i5m28duJo3gg=" } }, "is_incremental": false, @@ -3920,7 +3920,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html", - "hash": "nKg7wlyo3G6klc1KXh5ppZbDMb7EJUWDz/ku3J1zSKo=" + "hash": "UfMLzIhG5hSlmVIzVrLI8OEl9uUqqmYtAjcRFp7UHxw=" } }, "is_incremental": false, @@ -3932,7 +3932,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html", - "hash": "+RAnHTymvjAtAhgIF6FZeGAkp53nh346Jg0LdqJxR2E=" + "hash": "zUsZ0JSaQ36NLxtWNezvTMuY6nnxbbRDFk6Y3ER/bKU=" } }, "is_incremental": false, @@ -3944,7 +3944,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html", - "hash": "RtD0rSp1LxJ1duq78cVBs/DegeSPW9atofVskkpPyWs=" + "hash": "nZLQCnwe3tlVbGtiqkztceuTqgGldhOEn+eHjKjuH84=" } }, "is_incremental": false, @@ -3956,7 +3956,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html", - "hash": "WBC3GrLAa2RUUWk09hgKYX3JqQVgd3dY44hIAcEZrgw=" + "hash": "TFQGlSgBNI8ZcDk1P/alyenfEGc16WL7Qhf0RQ/twJo=" } }, "is_incremental": false, @@ -3968,7 +3968,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html", - "hash": "dduG/mAZwAejBC8WQ4XRETAT3Vip5QVm0/egmh/UfBs=" + "hash": "nHZI+aP8cvfpoxLeZPvXvxHMu1NtG/DcCEJYXAlaWi8=" } }, "is_incremental": false, @@ -3980,7 +3980,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html", - "hash": "RylxiPQXSXwG+ORJdSSE0qT5U0YQUxHQxUykv+xoVIs=" + "hash": "c0pvHw5PcwMtk8Snkma90FJp1qabklue6a+H71qEhLI=" } }, "is_incremental": false, @@ -3992,7 +3992,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html", - "hash": "DXZDfgux3PQnzJLfh/FjtXLQHRcJsD3EvGS7lBZvfLA=" + "hash": "9/vi10QXffxflh3VqPR+OSrZ8nJ7rcWzJx5iojaGA74=" } }, "is_incremental": false, @@ -4004,7 +4004,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html", - "hash": "29spXF8kop3pPFXJwALiF2023QLooI/fNzraF1xqMjA=" + "hash": "dI7lwF8qjLzlEzYPWbbX3NLMoNLUDYULGb5rDUUFYTo=" } }, "is_incremental": false, @@ -4028,7 +4028,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html", - "hash": "yJDLSBspqhcHMSjB54VatznDDau3uaj8pdOuThjtC0w=" + "hash": "vJvbiRdh9nstHI+lGMjFY5wmxegOF/a99GORyt0ZeEc=" } }, "is_incremental": false, @@ -4040,7 +4040,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html", - "hash": "519mL8EYZLVhNER/s3bdZanhcS/QFa3M8g97sCqDuRM=" + "hash": "DdAsNq38kaLNWhBGjJzIVb9unu3jBjQNFOxRD35pM0s=" } }, "is_incremental": false, @@ -4052,7 +4052,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html", - "hash": "ttxYCaWRApnKm8Uhpnccz32HWqxtYU8fY9UqaQfvCEY=" + "hash": "NglSaYtsg5ZjNRByvCEqwrtQcdMsZDJyZhJ5wP//NwI=" } }, "is_incremental": false, @@ -4076,7 +4076,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html", - "hash": "lVIWFbTU4kbZDx/0M2YSuwOfJA3h8Sk1Ym7ZalHdCNA=" + "hash": "YW+W5tQgZBnmZE2Mhyx9CEHJkfCvrWyjlFAycK9Dyo4=" } }, "is_incremental": false, @@ -4088,7 +4088,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.NormalizedString.html", - "hash": "+ZAzEXmJVgIKt5Ish0VvDrh/qB7Ifz+r8fadWxw0iuQ=" + "hash": "qwZklgtdHok/ep35KN0xRZEeBSsVAjK6m57hxj8Ph20=" } }, "is_incremental": false, @@ -4100,7 +4100,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ParsedResume.html", - "hash": "xjXLKKdNLdhvc5kWQ5VzEnYKU4tV1vFI5sTeXIqotqE=" + "hash": "pGI7jC7h8nS1X4LI7cHo/U5NEd5dY2aRV7gQ0iKlG9A=" } }, "is_incremental": false, @@ -4112,7 +4112,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html", - "hash": "ISkzRWxJLuAZ0Dsm01PjkZLbUigb6LPOk733VDQvW8w=" + "hash": "LithaoJ/GLZ2fFXRVNxLcosdbtCfDj46XPXweOyNKgY=" } }, "is_incremental": false, @@ -4124,7 +4124,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Salary.html", - "hash": "P0e43K0hx2JamkaYfay4vcmLySl6UZ+0bbkGlQApwOo=" + "hash": "OfKSg19T6GyaowyUi3y5RKmwBQjkoeuVKUi+D1o1wIs=" } }, "is_incremental": false, @@ -4136,7 +4136,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html", - "hash": "4jSp/fSCWTN17ZH2pEIZaJAyOup+chCysUeJoSUiKWQ=" + "hash": "hVKUQhGjGUDD1x8+XaseYvo9nz2/4COw+gVBg2m6Xzc=" } }, "is_incremental": false, @@ -4148,7 +4148,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html", - "hash": "DCgOXmT3BJMQgc2pKaHFzrasS5IoPnWV/h/SwYfmwmM=" + "hash": "LIHGh9gSvncr4pieZbSSQSsmACV5bXKo1HfLaIC/txM=" } }, "is_incremental": false, @@ -4160,7 +4160,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html", - "hash": "SAO9QifAAd/3K5AwexglCRv6/BwouPsMrAWb4p8tndk=" + "hash": "rm2p2qkOHycC1DNy3xDuKEnTAksRN5jf5dLlonokgtA=" } }, "is_incremental": false, @@ -4172,7 +4172,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html", - "hash": "d29193Ii0vH0+Yg+zfTU2XR8t/K46Q5FWbt0m83dXCs=" + "hash": "pWjXWFjg9+Rc2z5/JEPXFUnaaSbCK/bXoYQkK2mFqaU=" } }, "is_incremental": false, @@ -4184,7 +4184,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html", - "hash": "b6NTouZF/UrGkVRV8osWHYnuY62TdDe1nO71ENc2kcc=" + "hash": "lpbxhIpbXrH3mJ+c0DCZFpCoO7m+qVYFUnmkvYFL42I=" } }, "is_incremental": false, @@ -4196,7 +4196,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html", - "hash": "wisoSFEy6TX5I2xqBjpM2EyvFE2HNvTyzIcKcBnB6Vw=" + "hash": "QW/0XTjrciOBa9VpnSTRcmt3JekeDHvtX0T2bB8UpHQ=" } }, "is_incremental": false, @@ -4208,7 +4208,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html", - "hash": "pvNuZe58EVlo8Zp2Ik+A3xIiSEibMpIz8VxzveSljkM=" + "hash": "kTsgwjCOJjsIumByfj4ZjH3x8+uYEVyB65XxlJSYtW4=" } }, "is_incremental": false, @@ -4220,7 +4220,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html", - "hash": "W7EHDrKSLCITsvEnKS3W7kPpe5SANVj1PPRsTMUcxDo=" + "hash": "FAaoVc972wrq5cQ+UB705xlkZ835bUXih/6XB4wkLLQ=" } }, "is_incremental": false, @@ -4232,7 +4232,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html", - "hash": "kpuYnNjSP79FWA5UwYRPwRIQ1EW7m/c3jqPvqkph9aU=" + "hash": "hcdRBnj72pM/AfoORFYLKwSHyy4e4cy89r8tA3zQ2hY=" } }, "is_incremental": false, @@ -4256,7 +4256,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html", - "hash": "ZLBvjtC9IT1+h5C/WmHAbB+xZLoSV+N3oRVxknLAAwg=" + "hash": "Z14WsTb4EhbYVOv3+Yo6eyPkyxn2jDR4mkMuwrlh85s=" } }, "is_incremental": false, @@ -4268,7 +4268,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html", - "hash": "TXj7Aq4MfkXcYqaVZJrTFPH4FJaj7uFthmzRLk4pQ3o=" + "hash": "DjuDVXsV0L/RGytBURVmdWOWZx3MDTwy5qdg34jlcmg=" } }, "is_incremental": false, @@ -4292,7 +4292,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html", - "hash": "7/vwfNhDRdnJk7I3w5zub8wHDm8JYSYtsdW8ASPP4kk=" + "hash": "+5UfSX/faWitbuOzqMnkzJjMYSs2C368JG4zfvlU9Jc=" } }, "is_incremental": false, @@ -4304,7 +4304,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html", - "hash": "5iiOo9wX/yYKbKdW5hCIry3spycxGNcTVDpijxwQuo4=" + "hash": "tund/yYJnRnbKTGdAch1gPQwaLrknwDyq8iUCEkbEkw=" } }, "is_incremental": false, @@ -4316,7 +4316,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html", - "hash": "oHvazmUKwbxLUGRbgD7bLzafIzJDUL6qnsAbZWfh6qw=" + "hash": "q9NOFyGReADTP9UL6nTtN1pikq2LLVOOfB7WqZOYgFo=" } }, "is_incremental": false, @@ -4328,7 +4328,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html", - "hash": "wjYQktwxkfuIU+WcAaPdpX/G7xNLHBfriQEC9ZVx8Kk=" + "hash": "u3zVHIQFTX4rckWz7l2PFn3d1njAazpuLQr1PKljZ+w=" } }, "is_incremental": false, @@ -4340,7 +4340,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html", - "hash": "xYcucYhYLpek7OThpflNz25xgIDFqjtICDncGguQf4g=" + "hash": "kHP+nzc73ZjworEpMEqmWVUuO6NESd3za7dxMVorA7I=" } }, "is_incremental": false, @@ -4352,7 +4352,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html", - "hash": "YWBtW9GrxxPAQxWIznAnOWZJj/AHarWqmYLLJJ9WVvo=" + "hash": "zfV5SfK1bM3fomYd6JQUHa9xVTLyUkRPR4Qrr34FERU=" } }, "is_incremental": false, @@ -4364,7 +4364,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.RawSkill.html", - "hash": "iavF+nO19X+17JHmolqxM4nretVC6yZVnuS35P2TPAY=" + "hash": "KiEqZK/CH+pzjXA/DI9QxDabpV990ot3jjOvaw8NsWQ=" } }, "is_incremental": false, @@ -4376,7 +4376,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.Skill.html", - "hash": "N3tn58DXCBtYAZeVJEHhfLyCM8FCBAneZsuzjYsi1Lw=" + "hash": "7zQxFEbuafMyt9omhL3IbMOkZndYu3Q6yrZMj+pcBhM=" } }, "is_incremental": false, @@ -4388,7 +4388,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html", - "hash": "EgVvbUDeti+LXSBivIfQw83m/KjZYVBb5JuPileJb1o=" + "hash": "7UHiKY40o/CgiK3qct1Ohm5Iap5BFaoAqhZzUEC8bo4=" } }, "is_incremental": false, @@ -4400,7 +4400,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.Taxonomy.html", - "hash": "phPYl5YMW14L8364BPXzuxZWYSAhMVmolDfHYXMwr9c=" + "hash": "Is39Np6zgKrA3VDgwN33fYERwY+zMwtH4u20KgewOJ4=" } }, "is_incremental": false, @@ -4424,7 +4424,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.TxDate.html", - "hash": "QQezotRCl3269gOLaIztiPhwC1fzlSCVtf5SPPLY+QY=" + "hash": "0OV/HY2paLyQY7Ni6Ym5nlAoiEMSogouq4jw18vulXI=" } }, "is_incremental": false, @@ -4436,7 +4436,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.TxPrimitive-1.html", - "hash": "Nyu/HLg2vM/fqOSW6lLGyr6Dc5twMkxSa+EhhN/ZU5I=" + "hash": "2BsUnh/nv93eHWcjG86E4HMbS3ejCAMtCrF2NT+R/S4=" } }, "is_incremental": false, @@ -4460,7 +4460,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxClient.html", - "hash": "JzVz1VeRao/Durv06bb0HJBk2rhzS6GoxtJhRUxq52o=" + "hash": "N/knin2wIFma4xitBYR5hYnzQXDhJgP/PGzvwMvRSfk=" } }, "is_incremental": false, @@ -4472,7 +4472,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxClientSettings.html", - "hash": "3z1ZmDbzERnMZCLSdQaHclzw1EiDTEgtZfsTcjUgkXE=" + "hash": "AWup/+8xpqmfTRDH6zJzhbiflsMo9AQ2NI22DcJ1oWc=" } }, "is_incremental": false, @@ -4484,7 +4484,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxException.html", - "hash": "K3GKONZWqIHZetNMfYbkTi1mC7dRh4EvRsj0qfj2xYQ=" + "hash": "otQfWSriyscg8eg7hb/+4l4VZlhh0+pRzvnYktXh7Vg=" } }, "is_incremental": false, @@ -4496,7 +4496,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxGeocodeJobException.html", - "hash": "iFlVgWWzPovucsti2TXnankP373qmkQYsNnvnHwBQQc=" + "hash": "o5rqiwWMnyR9NuRhIx1mobSlvrzdVSHDqQqmitDtVn4=" } }, "is_incremental": false, @@ -4508,7 +4508,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxGeocodeResumeException.html", - "hash": "S0Wex/qnFv5RxBfn/2yjadRm2STv+rqFhqNEcV9uX6s=" + "hash": "t74Av/ktCQY3uzxb18LaKQpEH0CVz0UVgqd1ABHsw/g=" } }, "is_incremental": false, @@ -4520,7 +4520,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxIndexJobException.html", - "hash": "xR1kRB2sjEvUw3x4rR2pzzcgWkhBJUvl3fd7L/C49HU=" + "hash": "0oCcjgsP8nN8R2oRTmWM7P9owBV4w6q8T/9Vlkq5hZU=" } }, "is_incremental": false, @@ -4532,7 +4532,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxIndexResumeException.html", - "hash": "XtchXeGjoJN3lXa2KzEj3Wlyqtw3uFYjoLg3jysesl0=" + "hash": "LsDrRu4mSjCh+as1fwEWjpwFcjbxKcrbJAM+Lp8ckXI=" } }, "is_incremental": false, @@ -4544,7 +4544,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html", - "hash": "FE0r7PIIiigBi/KwKI5TUCAhaqQyYlB5f9tm+rxMqKw=" + "hash": "1Ojrw606f4jUXogepO2gXuwavy+1m34KmWr/xVzwlUk=" } }, "is_incremental": false, @@ -4556,7 +4556,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html", - "hash": "yd5haADomEyCUbadc11cVKTVoGcj1hs5CBRWJEzIFZs=" + "hash": "9dUowa9LY77Qqe0magstgytWgccPjWlbSfqSStwnSOM=" } }, "is_incremental": false, @@ -4568,7 +4568,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxUsableJobException.html", - "hash": "N/fJYcd7SSV+kPwtmq4/nRJAZX5ecS8MCXoXaFvxjyE=" + "hash": "+YZ96PCdUJoOITGj00PGG/4eTB2LpEdW8tDNy8RINPs=" } }, "is_incremental": false, @@ -4580,7 +4580,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxUsableResumeException.html", - "hash": "/Scinfu4HX5Szg+T/dl1wVH0p5DKpX3IqDL2go8JmN0=" + "hash": "yzoHzinEjoCoiSGFsOjsJgPKOU98i1AImgz4O9kQmVg=" } }, "is_incremental": false, @@ -4604,7 +4604,7 @@ "output": { ".html": { "relative_path": "sdk/index.html", - "hash": "+EO8S7Lqr+qBaGWxuoO4kZfO2/YRUSVqu5er/NGnnUU=" + "hash": "/x4UL64eazw9z2aaZ+ywYGre5GPtreVicjkyQ8aeWYk=" } }, "is_incremental": false, diff --git a/docs/sdk/Textkernel.Tx.Batches.BatchErrorResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Batches.BatchErrorResult.html rename to docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html index e0c09320..1e5a789c 100644 --- a/docs/sdk/Textkernel.Tx.Batches.BatchErrorResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Batches.BatchParser.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Batches.BatchParser.html rename to docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html index 56ece0e8..c4bd89bd 100644 --- a/docs/sdk/Textkernel.Tx.Batches.BatchParser.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html @@ -126,10 +126,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJobs(TxClient, ParseOptions, BatchParsingRules, String, SearchOption, Func<JobBatchSuccessResult, Task>, Func<JobBatchPartialSuccessResult, Task>, Func<BatchErrorResult, Task>, Func<String, String>)

@@ -239,10 +239,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResumes(TxClient, ParseOptions, BatchParsingRules, String, SearchOption, Func<ResumeBatchSuccessResult, Task>, Func<ResumeBatchPartialSuccessResult, Task>, Func<BatchErrorResult, Task>, Func<String, String>)

@@ -358,10 +358,10 @@
Exceptions
diff --git a/docs/sdk/Textkernel.Tx.Batches.BatchParsingRules.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Batches.BatchParsingRules.html rename to docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html index 3096754a..c7595208 100644 --- a/docs/sdk/Textkernel.Tx.Batches.BatchParsingRules.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

BatchParsingRules(Int32, IEnumerable<String>, IEnumerable<String>, Func<String, Boolean>)

@@ -185,10 +185,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DefaultDisallowedFileTypes

The default file types that will result in invalid parse transactions (and cost unnecessary credits)

@@ -217,10 +217,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AllowedFileTypes

@@ -248,10 +248,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DisallowedFileTypes

@@ -279,10 +279,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxBatchSize

@@ -311,10 +311,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShouldProcessFile

@@ -348,10 +348,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Batches.BatchResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Batches.BatchResult.html rename to docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html index 6ea569f3..77e4ef24 100644 --- a/docs/sdk/Textkernel.Tx.Batches.BatchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

File

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html rename to docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html index ef9bc3c3..c2a87c62 100644 --- a/docs/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html rename to docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html index 066d780d..8342563b 100644 --- a/docs/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -171,10 +171,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html rename to docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html index 2211a23f..43ae6ea5 100644 --- a/docs/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html rename to docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html index e021bffa..648a5478 100644 --- a/docs/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -171,10 +171,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html b/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html rename to docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html index 06fe7e86..78809962 100644 --- a/docs/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html @@ -172,10 +172,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Batches.html b/docs/site-/sdk/Textkernel.Tx.Batches.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Batches.html rename to docs/site-/sdk/Textkernel.Tx.Batches.html diff --git a/docs/sdk/Textkernel.Tx.DataCenter.html b/docs/site-/sdk/Textkernel.Tx.DataCenter.html similarity index 91% rename from docs/sdk/Textkernel.Tx.DataCenter.html rename to docs/site-/sdk/Textkernel.Tx.DataCenter.html index ec2698bf..35bfde89 100644 --- a/docs/sdk/Textkernel.Tx.DataCenter.html +++ b/docs/site-/sdk/Textkernel.Tx.DataCenter.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DataCenter(String)

@@ -162,10 +162,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

AU

Represents the AU datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -192,10 +192,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EU

Represents the EU datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -222,10 +222,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

US

Represents the US datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -258,10 +258,10 @@
Field Value
diff --git a/docs/sdk/Textkernel.Tx.ITxClient.html b/docs/site-/sdk/Textkernel.Tx.ITxClient.html similarity index 70% rename from docs/sdk/Textkernel.Tx.ITxClient.html rename to docs/site-/sdk/Textkernel.Tx.ITxClient.html index b71e157a..36732804 100644 --- a/docs/sdk/Textkernel.Tx.ITxClient.html +++ b/docs/site-/sdk/Textkernel.Tx.ITxClient.html @@ -97,10 +97,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteProfession(String, IEnumerable<String>, String, Int32)

@@ -187,10 +187,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkill(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -283,10 +283,106 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source + + +

AutocompleteSkillV2(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

+

Returns normalized skills that begin with a given prefix, based on the chosen language(s). +Each profession is associated with multiple descriptions. If any of the descriptions are a good +completion of the given prefix, the profession is included in the results.

+
+
+
Declaration
+
+
Task<AutoCompleteSkillsResponse> AutocompleteSkillV2(string prefix, IEnumerable<string> languages = null, string outputLanguage = null, IEnumerable<string> types = null, int limit = 10)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Stringprefix

The skill prefix to be completed. Must contain at least 1 character.

+
System.Collections.Generic.IEnumerable<System.String>languages

The language(s) used to search for matching skills (the language of the provided prefix). +A maximum of 5 languages can be provided. Must be one of the supported +ISO codes. +
Default is 'en' only.

+
System.StringoutputLanguage

The language to ouput the found skills in (default is 'en'). Must be one of the supported +ISO codes.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

+
System.Int32limit

The maximum number of returned skills. The default is 10 and the maximum is 100.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<AutoCompleteSkillsResponse>

A list of skills that match the given prefix.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source

BimetricScore<TTarget>(ParsedJobWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -384,10 +480,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedResumeWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -485,10 +581,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessions(Int32, Int32, String)

@@ -568,10 +664,93 @@
Exceptions
| - Improve this Doc + Improve this Doc + + + View Source + + +

CompareProfessionsV2(Int32, Int32, String)

+

Compare two professions based on the skills associated with each.

+
+
+
Declaration
+
+
Task<CompareProfessionsResponse> CompareProfessionsV2(int profession1, int profession2, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Int32profession1

A profession code ID from the +Professions Taxonomy +to compare.

+
System.Int32profession2

A profession code ID from the +Professions Taxonomy +to compare.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<CompareProfessionsResponse>

Common skills and exclusive skills between the two professions.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc - View Source + View Source

CompareSkillsToProfession(Int32, String, SkillScore[])

@@ -649,10 +828,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(ParsedResume, Int32, String, Boolean)

@@ -734,19 +913,19 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source - -

CreateIndex(IndexType, String)

-

Create a new index

+ +

CompareSkillsToProfessionV2(Int32, String, SkillScore[])

+

Compare a given set of skills to the skills related to a given profession.

Declaration
-
Task<CreateIndexResponse> CreateIndex(IndexType type, string indexId)
+
Task<CompareSkillsToProfessionResponse> CompareSkillsToProfessionV2(int professionCodeId, string outputLanguage = null, params SkillScore[] skills)
Parameters
@@ -759,16 +938,24 @@
Parameters
- - - + + - - + + + + + + @@ -783,8 +970,9 @@
Returns
- - + +
IndexTypetype

The type of documents stored in this index. Either 'Resume' or 'Job'

+
System.Int32professionCodeId

The profession code ID from the +Professions Taxonomy +to compare the skill set to.

System.StringindexId

The ID to assign to the new index. This is restricted to alphanumeric with dashes -and underscores. All values will be converted to lower-case.

+
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
SkillScore[]skills

The skill IDs (and optionally, scores) which should be compared against the given profession. The list can contain up to 50 skills.

System.Threading.Tasks.Task<CreateIndexResponse>System.Threading.Tasks.Task<CompareSkillsToProfessionResponse>

Common skills and skills not in the profession.

+
@@ -799,26 +987,26 @@
Exceptions
TxException -

Thrown when an API error occurs

+

Thrown when an API error occurred

| - Improve this Doc + Improve this Doc - View Source + View Source - -

DeleteDocument(String, String)

-

Delete an existing document from an index

+ +

CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean)

+

Compare the skills of a candidate to the skills related to a job using the Ontology API.

Declaration
-
Task<DeleteDocumentResponse> DeleteDocument(string indexId, string documentId)
+
Task<CompareSkillsToProfessionResponse> CompareSkillsToProfessionV2(ParsedResume resume, int professionCodeId, string outputLanguage = null, bool weightSkillsByExperience = true)
Parameters
@@ -831,15 +1019,28 @@
Parameters
- - - + + + + + + + - - + + + + + + @@ -854,8 +1055,9 @@
Returns
- - + +
System.StringindexId

The index containing the document

+
ParsedResumeresume

The resume containing the skills of the candidate

+
System.Int32professionCodeId

The code ID of the profession to compare the skills of the candidate to

System.StringdocumentId

The ID of the document to delete

+
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

System.Threading.Tasks.Task<DeleteDocumentResponse>System.Threading.Tasks.Task<CompareSkillsToProfessionResponse>

Skills that are common between the candidate and the job, as well as what skills are missing

+
@@ -870,27 +1072,26 @@
Exceptions
TxException -

Thrown when an API error occurs

+

Thrown when an API error occurred

| - Improve this Doc + Improve this Doc - View Source + View Source - -

DeleteIndex(String)

-

Delete an existing index. Note that this is a destructive action and -cannot be undone. All the documents in this index will be deleted.

+ +

CreateIndex(IndexType, String)

+

Create a new index

Declaration
-
Task<DeleteIndexResponse> DeleteIndex(string indexId)
+
Task<CreateIndexResponse> CreateIndex(IndexType type, string indexId)
Parameters
@@ -902,10 +1103,18 @@
Parameters
+ + + + + - +
IndexTypetype

The type of documents stored in this index. Either 'Resume' or 'Job'

+
System.String indexId

The ID to assign to the new index. This is restricted to alphanumeric with dashes +and underscores. All values will be converted to lower-case.

+
@@ -919,7 +1128,7 @@
Returns
- System.Threading.Tasks.Task<DeleteIndexResponse> + System.Threading.Tasks.Task<CreateIndexResponse> @@ -942,10 +1151,146 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source + + +

DeleteDocument(String, String)

+

Delete an existing document from an index

+
+
+
Declaration
+
+
Task<DeleteDocumentResponse> DeleteDocument(string indexId, string documentId)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.StringindexId

The index containing the document

+
System.StringdocumentId

The ID of the document to delete

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<DeleteDocumentResponse>
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurs

+
+ + | + Improve this Doc + + + View Source + + +

DeleteIndex(String)

+

Delete an existing index. Note that this is a destructive action and +cannot be undone. All the documents in this index will be deleted.

+
+
+
Declaration
+
+
Task<DeleteIndexResponse> DeleteIndex(string indexId)
+
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
System.StringindexId
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<DeleteIndexResponse>
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurs

+
+ + | + Improve this Doc + + + View Source

DeleteMultipleDocuments(String, IEnumerable<String>)

@@ -1013,10 +1358,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkills(String, String, String, Single)

@@ -1101,10 +1446,98 @@
Exceptions
| - Improve this Doc + Improve this Doc + + + View Source + + +

ExtractSkillsV2(String, String, String, Single)

+

Extracts known skills from the given text.

+
+
+
Declaration
+
+
Task<ExtractSkillsResponse> ExtractSkillsV2(string text, string language = "en", string outputLanguage = null, float threshold = 0.5F)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Stringtext

The text to extract skills from. There is a 24,000 character limit.

+
System.Stringlanguage

The language of the input text. Must be one of the supported +ISO codes. +
Default is 'en'.

+
System.StringoutputLanguage

The language to use for the output skill descriptions. If not provided, defaults to the input language. Must be one of the supported +ISO codes.

+
System.Singlethreshold

A value from [0 - 1] for the minimum confidence threshold for extracted skills. Lower values will return more skills, +but also increase the likelihood of ambiguity-related errors. The recommended and default value is 0.5.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<ExtractSkillsResponse>

A list of extracted skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc - View Source + View Source

FormatResume(FormatResumeRequest)

@@ -1167,10 +1600,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplate(FormatResumeWithTemplateRequest)

@@ -1233,10 +1666,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateJobDescription(GenerateJobRequest)

@@ -1298,10 +1731,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, Address, GeocodeCredentials)

@@ -1376,10 +1809,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, GeocodeCredentials)

@@ -1448,10 +1881,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, Address, GeocodeCredentials)

@@ -1526,10 +1959,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, GeocodeCredentials)

@@ -1598,10 +2031,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -1688,10 +2121,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -1772,10 +2205,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -1869,10 +2302,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -1960,10 +2393,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2050,10 +2483,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2134,10 +2567,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2231,10 +2664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2322,10 +2755,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAccountInfo()

@@ -2369,10 +2802,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAllIndexes()

@@ -2416,10 +2849,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetJob(String, String)

@@ -2487,10 +2920,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomy(String, TaxonomyFormat)

@@ -2562,10 +2995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomyMetadata()

@@ -2610,10 +3043,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetResume(String, String)

@@ -2681,10 +3114,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomy(TaxonomyFormat)

@@ -2748,10 +3181,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadata()

@@ -2796,69 +3229,184 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source - -

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

-

Add a job to an existing index

+ +

GetSkillsTaxonomyMetadataV2()

+

Get metadata about the skills taxonomy/service.

Declaration
-
Task<IndexDocumentResponse> IndexDocument(ParsedJob job, string indexId, string documentId, IEnumerable<string> userDefinedTags = null)
+
Task<GetMetadataResponse> GetSkillsTaxonomyMetadataV2()
-
Parameters
+
Returns
- - - - - - - - - - - - - - - - - - - +
TypeName Description
ParsedJobjob

A job generated by the Job Parser

-
System.StringindexId

The index the document should be added into (case-insensitive).

-
System.StringdocumentId

The ID to assign to the new document. This is restricted to alphanumeric -with dashes and underscores. All values will be converted to lower-case.

-
System.Collections.Generic.IEnumerable<System.String>userDefinedTags

The user-defined tags that the job should have

+
System.Threading.Tasks.Task<GetMetadataResponse>

The skills taxonomy metadata

-
Returns
+
Exceptions
- + - - + + + + +
TypeDescriptionCondition
System.Threading.Tasks.Task<IndexDocumentResponse>TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

GetSkillsTaxonomyV2(TaxonomyFormat)

+

Get all skills in the taxonomy with associated IDs and descriptions in all supported languages.

+
+
+
Declaration
+
+
Task<GetSkillsTaxonomyResponse> GetSkillsTaxonomyV2(TaxonomyFormat format = TaxonomyFormat.json)
+
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
TaxonomyFormatformat

The format of the returned taxonomy. +
NOTE: if you set this to csv, only the CsvOutput will be populated.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<GetSkillsTaxonomyResponse>

The full structure of the Skills Taxonomy.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

+

Add a job to an existing index

+
+
+
Declaration
+
+
Task<IndexDocumentResponse> IndexDocument(ParsedJob job, string indexId, string documentId, IEnumerable<string> userDefinedTags = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedJobjob

A job generated by the Job Parser

+
System.StringindexId

The index the document should be added into (case-insensitive).

+
System.StringdocumentId

The ID to assign to the new document. This is restricted to alphanumeric +with dashes and underscores. All values will be converted to lower-case.

+
System.Collections.Generic.IEnumerable<System.String>userDefinedTags

The user-defined tags that the job should have

+
+
Returns
+ + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<IndexDocumentResponse>
@@ -2880,10 +3428,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedResume, String, String, IEnumerable<String>)

@@ -2964,10 +3512,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexJobInfo>, String)

@@ -3035,10 +3583,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexResumeInfo>, String)

@@ -3106,10 +3654,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupProfessions(IEnumerable<Int32>, String)

@@ -3181,10 +3729,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkills(IEnumerable<String>, String)

@@ -3254,10 +3802,83 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source + + +

LookupSkillsV2(IEnumerable<String>, String)

+

Get the details associated with given skills in the taxonomy.

+
+
+
Declaration
+
+
Task<LookupSkillCodesResponse> LookupSkillsV2(IEnumerable<string> skillIds, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<System.String>skillIds
System.StringoutputLanguage

The language to use for the output skill descriptions. Must be one of the supported +ISO codes. +
Default is 'en'.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<LookupSkillCodesResponse>

An array of skills objects.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source

Match(String, String, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3356,10 +3977,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedJob, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3452,10 +4073,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedResume, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3548,10 +4169,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeProfessions(IEnumerable<String>, String, String)

@@ -3630,10 +4251,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkills(IEnumerable<String>, String, String)

@@ -3712,10 +4333,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJob(ParseRequest)

@@ -3793,10 +4414,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResume(ParseRequest)

@@ -3874,10 +4495,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Search(IEnumerable<String>, FilterCriteria, SearchMatchSettings, PaginationSettings)

@@ -3905,21 +4526,850 @@
Parameters
- FilterCriteria - query -

The search query. A result must satisfy all of these criteria

+ FilterCriteria + query +

The search query. A result must satisfy all of these criteria

+ + + + SearchMatchSettings + settings +

The settings for this search request

+ + + + PaginationSettings + pagination +

Pagination settings. If not specified the default will be used

+ + + + +
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SearchResponse>
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurs

+
+ + | + Improve this Doc + + + View Source + + +

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

+

Determines how closely related one set of skills is to another. The service defines closely related skills +such that knowing a skill either implies knowledge about another skill, or should make it considerably +easier to acquire knowledge about that skill.

+
+
+
Declaration
+
+
Task<SkillsSimilarityScoreResponse> SkillsSimilarityScore(IEnumerable<SkillScore> skillSetA, IEnumerable<SkillScore> skillSetB)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<SkillScore>skillSetA

A set of skills (and optionally, scores) to score against the other set of skills. +The list can contain up to 50 skills.

+
System.Collections.Generic.IEnumerable<SkillScore>skillSetB

A set of skills (and optionally, scores) to score against the other set of skills. +The list can contain up to 50 skills.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SkillsSimilarityScoreResponse>

A score from [0 - 1] representing how closely related skill set A and skill set B are, based on the relations between skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SkillsSimilarityScoreV2(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

+

Determines how closely related one set of skills is to another. The service defines closely related skills +such that knowing a skill either implies knowledge about another skill, or should make it considerably +easier to acquire knowledge about that skill.

+
+
+
Declaration
+
+
Task<SkillsSimilarityScoreResponse> SkillsSimilarityScoreV2(IEnumerable<SkillScore> skillSetA, IEnumerable<SkillScore> skillSetB)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<SkillScore>skillSetA

A set of skills (and optionally, scores) to score against the other set of skills. +The list can contain up to 50 skills.

+
System.Collections.Generic.IEnumerable<SkillScore>skillSetB

A set of skills (and optionally, scores) to score against the other set of skills. +The list can contain up to 50 skills.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SkillsSimilarityScoreResponse>

A score from [0 - 1] representing how closely related skill set A and skill set B are, based on the relations between skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

+

Suggest professions based on a given set of skill IDs.

+
+
+
Declaration
+
+
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(IEnumerable<SkillScore> skills, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<SkillScore>skills

The skill IDs (and optionally, scores) used to return the most relevant professions. The list can contain up to 50 skill IDs.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

+

Suggest professions based on the skills within a given job.

+
+
+
Declaration
+
+
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedJobjob

The professions are suggested based on the skills within this job.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given job, based on skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

+

Suggest professions based on the skills within a given resume.

+
+
+
Declaration
+
+
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(ParsedResume resume, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null, bool weightSkillsByExperience = true)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedResumeresume

The professions are suggested based on the skills within this resume.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given resume, based on skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore>, Int32, Boolean, String)

+

Suggest professions based on a given set of skill IDs.

+
+
+
Declaration
+
+
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore> skills, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<SkillScore>skills

The skill IDs (and optionally, scores) used to return the most relevant professions. The list can contain up to 50 skill IDs.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String)

+

Suggest professions based on the skills within a given job.

+
+
+
Declaration
+
+
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkillsV2(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedJobjob

The professions are suggested based on the skills within this job.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given job, based on skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean)

+

Suggest professions based on the skills within a given resume.

+
+
+
Declaration
+
+
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkillsV2(ParsedResume resume, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null, bool weightSkillsByExperience = true)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedResumeresume

The professions are suggested based on the skills within this resume.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given resume, based on skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

+

Takes a job title and suggests relevant skills.

+
+
+
Declaration
+
+
Task<SuggestSkillsFromJobTitleResponse> SuggestSkillsFromJobTitle(string jobTitle, string language = "en", int? limit = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.StringjobTitle

The title of the job for which skills are being suggested.

+
System.Stringlanguage

Language of the suggested skills in ISO 639-1 code format.

+
System.Nullable<System.Int32>limit

Maximum number of skills to suggest. If not specified this parameter defaults to 10. This value cannot exceed 50.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestSkillsFromJobTitleResponse>
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

+

Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.

+
+
+
Declaration
+
+
Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(IEnumerable<int> professionCodeIDs, int limit = 10, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + - - - + + - - - + + @@ -3934,8 +5384,9 @@
Returns
- - + +
TypeNameDescription
System.Collections.Generic.IEnumerable<System.Int32>professionCodeIDs

The code IDs of the professions to suggest skills for.

SearchMatchSettingssettings

The settings for this search request

+
System.Int32limit

The maximum amount of suggested skills returned. The default is 10.

PaginationSettingspagination

Pagination settings. If not specified the default will be used

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

System.Threading.Tasks.Task<SearchResponse>System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

+
@@ -3950,28 +5401,26 @@
Exceptions
TxException -

Thrown when an API error occurs

+

Thrown when an API error occurred

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

-

Determines how closely related one set of skills is to another. The service defines closely related skills -such that knowing a skill either implies knowledge about another skill, or should make it considerably -easier to acquire knowledge about that skill.

+ +

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

+

Suggests skills related to a job based on the profession title in the job.

Declaration
-
Task<SkillsSimilarityScoreResponse> SkillsSimilarityScore(IEnumerable<SkillScore> skillSetA, IEnumerable<SkillScore> skillSetB)
+
Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(ParsedJob job, int limit = 10, string outputLanguage = null)
Parameters
@@ -3984,17 +5433,22 @@
Parameters
- - - + + - - - + + + + + + + @@ -4009,8 +5463,8 @@
Returns
- - + @@ -4033,19 +5487,19 @@
Exceptions
System.Collections.Generic.IEnumerable<SkillScore>skillSetA

A set of skills (and optionally, scores) to score against the other set of skills. -The list can contain up to 50 skills.

+
ParsedJobjob

The job to suggest skills for (based on the profession in the job)

System.Collections.Generic.IEnumerable<SkillScore>skillSetB

A set of skills (and optionally, scores) to score against the other set of skills. -The list can contain up to 50 skills.

+
System.Int32limit

The maximum amount of suggested skills returned. The default is 10.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

System.Threading.Tasks.Task<SkillsSimilarityScoreResponse>

A score from [0 - 1] representing how closely related skill set A and skill set B are, based on the relations between skills.

+
System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

-

Suggest professions based on a given set of skill IDs.

+ +

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

+

Suggests skills related to a resume based on the recent professions in the resume.

Declaration
-
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(IEnumerable<SkillScore> skills, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(ParsedResume resume, int limit = 10, string outputLanguage = null)
Parameters
@@ -4058,21 +5512,15 @@
Parameters
- - - + + - - - - - - @@ -4094,8 +5542,8 @@
Returns
- - + @@ -4118,19 +5566,19 @@
Exceptions
System.Collections.Generic.IEnumerable<SkillScore>skills

The skill IDs (and optionally, scores) used to return the most relevant professions. The list can contain up to 50 skill IDs.

+
ParsedResumeresume

The resume to suggest skills for (based on the professions in the resume)

System.Int32 limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

-
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+

The maximum amount of suggested skills returned. The default is 10.

System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given skills.

+
System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

-

Suggest professions based on the skills within a given job.

+ +

SuggestSkillsFromProfessionsV2(IEnumerable<Int32>, Int32, String, IEnumerable<String>)

+

Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.

Declaration
-
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
Task<SuggestSkillsResponse> SuggestSkillsFromProfessionsV2(IEnumerable<int> professionCodeIDs, int limit = 10, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4143,21 +5591,15 @@
Parameters
- - - + + - - - - - - @@ -4165,6 +5607,12 @@
Parameters
+ + + + + @@ -4179,8 +5627,8 @@
Returns
- - + @@ -4203,19 +5651,19 @@
Exceptions
ParsedJobjob

The professions are suggested based on the skills within this job.

+
System.Collections.Generic.IEnumerable<System.Int32>professionCodeIDs

The code IDs of the professions to suggest skills for.

System.Int32 limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

-
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+

The maximum amount of suggested skills returned. The default is 10.

outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported ISO codes.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given job, based on skills.

+
System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

-

Suggest professions based on the skills within a given resume.

+ +

SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable<String>)

+

Suggests skills related to a job based on the profession title in the job.

Declaration
-
Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(ParsedResume resume, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null, bool weightSkillsByExperience = true)
+
Task<SuggestSkillsResponse> SuggestSkillsFromProfessionsV2(ParsedJob job, int limit = 10, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4228,21 +5676,15 @@
Parameters
- - - + + - - - - - - @@ -4253,9 +5695,9 @@
Parameters
- - - + + @@ -4270,8 +5712,8 @@
Returns
- - + @@ -4294,19 +5736,19 @@
Exceptions
ParsedResumeresume

The professions are suggested based on the skills within this resume.

+
ParsedJobjob

The job to suggest skills for (based on the profession in the job)

System.Int32 limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

-
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+

The maximum amount of suggested skills returned. The default is 10.

System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given resume, based on skills.

+
System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

-

Takes a job title and suggests relevant skills.

+ +

SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable<String>)

+

Suggests skills related to a resume based on the recent professions in the resume.

Declaration
-
Task<SuggestSkillsFromJobTitleResponse> SuggestSkillsFromJobTitle(string jobTitle, string language = "en", int? limit = null)
+
Task<SuggestSkillsResponse> SuggestSkillsFromProfessionsV2(ParsedResume resume, int limit = 10, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4319,21 +5761,28 @@
Parameters
- - - + + + + + + + - - + - - - + + @@ -4348,8 +5797,9 @@
Returns
- - + +
System.StringjobTitle

The title of the job for which skills are being suggested.

+
ParsedResumeresume

The resume to suggest skills for (based on the professions in the resume)

+
System.Int32limit

The maximum amount of suggested skills returned. The default is 10.

System.Stringlanguage

Language of the suggested skills in ISO 639-1 code format.

+
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

System.Nullable<System.Int32>limit

Maximum number of skills to suggest. If not specified this parameter defaults to 10. This value cannot exceed 50.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

System.Threading.Tasks.Task<SuggestSkillsFromJobTitleResponse>System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

+
@@ -4371,19 +5821,21 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

-

Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.

+ +

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

+

Returns skills related to a given skill or set of skills. The service returns closely related skills +in a sense that knowing the provided skills either implies knowledge about the returned related skills, +or should make it considerably easier to acquire knowledge about them.

Declaration
-
Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(IEnumerable<int> professionCodeIDs, int limit = 10, string outputLanguage = null)
+
Task<SuggestSkillsResponse> SuggestSkillsFromSkills(IEnumerable<SkillScore> skills, int limit = 25, string outputLanguage = null)
Parameters
@@ -4396,15 +5848,16 @@
Parameters
- - - + + - @@ -4450,19 +5903,21 @@
Exceptions
System.Collections.Generic.IEnumerable<System.Int32>professionCodeIDs

The code IDs of the professions to suggest skills for.

+
System.Collections.Generic.IEnumerable<SkillScore>skills

The skills (and optionally, scores) for which the service should return related skills. +The list can contain up to 50 skills.

System.Int32 limit

The maximum amount of suggested skills returned. The default is 10.

+

The maximum amount of suggested skills returned. The maximum and default is 25.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

-

Suggests skills related to a job based on the profession title in the job.

+ +

SuggestSkillsFromSkills(ParsedJob, Int32, String)

+

Suggests skills related to a job (but not in the job) based on the skills in the job. The service returns +closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, +or should make it considerably easier to acquire knowledge about them.

Declaration
-
Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(ParsedJob job, int limit = 10, string outputLanguage = null)
+
Task<SuggestSkillsResponse> SuggestSkillsFromSkills(ParsedJob job, int limit = 10, string outputLanguage = null)
Parameters
@@ -4477,13 +5932,13 @@
Parameters
- - @@ -4529,19 +5984,21 @@
Exceptions
ParsedJob job

The job to suggest skills for (based on the profession in the job)

+

The job to suggest skills for (based on the skills in the job)

System.Int32 limit

The maximum amount of suggested skills returned. The default is 10.

+

The maximum amount of suggested skills returned. The maximum and default is 25.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

-

Suggests skills related to a resume based on the recent professions in the resume.

+ +

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

+

Suggests skills related to a resume (but not in the resume) based on the skills in the resume. The service +returns closely related skills in a sense that knowing the provided skills either implies knowledge about +the returned related skills, or should make it considerably easier to acquire knowledge about them.

Declaration
-
Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(ParsedResume resume, int limit = 10, string outputLanguage = null)
+
Task<SuggestSkillsResponse> SuggestSkillsFromSkills(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true)
Parameters
@@ -4556,13 +6013,13 @@
Parameters
- - @@ -4570,6 +6027,12 @@
Parameters
+ + + + + @@ -4608,13 +6071,13 @@
Exceptions
ParsedResume resume

The resume to suggest skills for (based on the professions in the resume)

+

The resume to suggest skills for (based on the skills in the resume)

System.Int32 limit

The maximum amount of suggested skills returned. The default is 10.

+

The maximum amount of suggested skills returned. The maximum and default is 10.

outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported ISO codes.

+
System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

+ +

SuggestSkillsFromSkillsV2(IEnumerable<SkillScore>, Int32, String, IEnumerable<String>)

Returns skills related to a given skill or set of skills. The service returns closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably easier to acquire knowledge about them.

@@ -4622,7 +6085,7 @@

Declaration
-
Task<SuggestSkillsResponse> SuggestSkillsFromSkills(IEnumerable<SkillScore> skills, int limit = 25, string outputLanguage = null)
+
Task<SuggestSkillsResponse> SuggestSkillsFromSkillsV2(IEnumerable<SkillScore> skills, int limit = 25, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4652,6 +6115,12 @@
Parameters
+ + + + + @@ -4690,13 +6159,13 @@
Exceptions
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported ISO codes.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromSkills(ParsedJob, Int32, String)

+ +

SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable<String>)

Suggests skills related to a job (but not in the job) based on the skills in the job. The service returns closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably easier to acquire knowledge about them.

@@ -4704,7 +6173,7 @@

Declaration
-
Task<SuggestSkillsResponse> SuggestSkillsFromSkills(ParsedJob job, int limit = 10, string outputLanguage = null)
+
Task<SuggestSkillsResponse> SuggestSkillsFromSkillsV2(ParsedJob job, int limit = 10, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4733,6 +6202,12 @@
Parameters
+ + + + + @@ -4771,13 +6246,13 @@
Exceptions
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported ISO codes.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

+ +

SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable<String>)

Suggests skills related to a resume (but not in the resume) based on the skills in the resume. The service returns closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably easier to acquire knowledge about them.

@@ -4785,7 +6260,7 @@

Declaration
-
Task<SuggestSkillsResponse> SuggestSkillsFromSkills(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true)
+
Task<SuggestSkillsResponse> SuggestSkillsFromSkillsV2(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true, IEnumerable<string> types = null)
Parameters
@@ -4820,6 +6295,12 @@
Parameters
+ + + + + @@ -4858,10 +6339,10 @@
Exceptions
System.Boolean weightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateJobUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -4941,10 +6422,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateResumeUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -5030,10 +6511,10 @@
Exceptions
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html index 9776e8a1..de139a85 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Account.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Account.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Account.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.AccountInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html similarity index 89% rename from docs/sdk/Textkernel.Tx.Models.API.AccountInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html index a9df6be1..e0e2d85a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.AccountInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AccountId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CreditsRemaining

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CreditsUsed

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExpirationDate

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IPAddress

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumConcurrentRequests

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html index ea51df56..384f0a93 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html @@ -184,10 +184,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Info

@@ -215,10 +215,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -256,10 +256,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html index 15265f14..c02afce8 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApiVersion

@@ -165,10 +165,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CustomerDetails

@@ -196,10 +196,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EngineVersion

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TotalElapsedMilliseconds

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionCost

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionId

@@ -327,10 +327,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html index da7d0047..809f733d 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html index b9c8fd39..5871a616 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SourceJob

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html index b72ba317..b60ebb97 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Settings

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetJobs

@@ -229,10 +229,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetResumes

@@ -267,10 +267,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html index 6c9ec119..a139e20b 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html index 8ae6a944..ea85b08a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html @@ -147,10 +147,10 @@
diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html index 369cddf2..6f806fa0 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -291,10 +291,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -340,10 +340,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html index 0223eda8..1ee5344a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SourceResume

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html index f8024ec3..e67a6128 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -134,10 +134,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html index 706bbe6d..98d87b25 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -202,10 +202,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html index e56ec96b..f486216d 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -202,10 +202,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.BimetricScoring.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html index 95c73f1b..01904320 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prefix

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html index f03e6079..89688be2 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html index 27c2f4b6..f5a7ed88 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionACodeId

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionBCodeId

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html index 5882d363..683abcc7 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeId

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html index a7f38032..ea7586b2 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsA

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsB

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html index fc2ddb0a..c2523e45 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReturnMissingSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html similarity index 82% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html index d5084c21..0ada4a04 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeIds

@@ -217,6 +217,37 @@
Property Value
+ + | + Improve this Doc + + + View Source + + +

Types

+

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certification, All. Only applicable in v2 endpoints.

+
+
+
Declaration
+
+
public List<string> Types { get; set; }
+
+
Property Value
+ + + + + + + + + + + + + +
TypeDescription
System.Collections.Generic.List<System.String>
@@ -225,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html similarity index 82% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html index c34eba64..f94217d7 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -217,6 +217,37 @@
Property Value
+ + | + Improve this Doc + + + View Source + + +

Types

+

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certification, All. Only applicable in v2 endpoints.

+
+
+
Declaration
+
+
public List<string> Types { get; set; }
+
+
Property Value
+ + + + + + + + + + + + + +
TypeDescription
System.Collections.Generic.List<System.String>
@@ -225,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html index 022ecfbe..d56d8cc4 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html index 2c118c77..0fb8f26e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CommonSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExclusiveSkillsByProfession

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html index 03e8c345..b12f1c20 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html index 9b32a35b..9aca0191 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CommonSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

InputSkillsNotInProfession

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MissingSkillsFoundInProfession

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html index a88c92b8..1ca41883 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsFoundOnlyInThisProfession

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html index f7e48e83..aaf58779 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html index 7ba41b2a..0c1560ef 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html index 720bb3aa..4f59095a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html index 6b23a093..41e74a5d 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html index 585967ea..8205dbe0 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedProfessions

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Warnings

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html index a195036b..30585c21 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsWithoutProfessionRelation

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html index 3dc12b67..76e9d5f3 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html index 09c4917e..7d15ecb7 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedSkills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html index eb03c1c3..ae4aa259 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MissingSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html index 38ca7c1c..0f3d24f6 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html index 0f9821aa..70caeeea 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ONET

@@ -164,10 +164,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html index d01039bc..a1ff7248 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeIds

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html index 2d057e3d..462a5023 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html index cb058c79..00afafcd 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html index 8abb969c..f5ac3dc3 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html index 6f7f3c10..0f9c3f4c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html index 7fe42fc0..79bd3baf 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html index c665c0e6..1a803f46 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html index fb917b49..0a40f365 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html index 67afb557..66aef5e7 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html index f45ac192..98fd57d2 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html index a678bdba..8ac18ed1 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Threshold

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html index 3a033468..11f1335c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillIds

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html index 11cd657f..9ab2ca98 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html index 7f25f217..a741abf6 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html @@ -139,14 +139,14 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Types

-

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, All.

+

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certification (only when using v2 endpoints), All.

Declaration
@@ -176,10 +176,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html index 248d6155..c3bd0294 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html index a36b93dc..82e351bc 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html index 5619d694..71a082cc 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html index e525f0fd..21e01c01 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Truncated

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html index 6de0b56f..ec43a927 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html index 5539a374..34c0dffd 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html index e32f69d5..a962f1ae 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html index fa8a3f13..c86992bf 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html index 80838afc..7a601589 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html index 8fbbdf59..25425d58 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html index e59b3e9b..548c72d1 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.DataEnrichment.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html similarity index 89% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html index 65835613..a48216d0 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CompanyName

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Email

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phone

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Placement

@@ -350,10 +350,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html index 5e44f9c7..7e239be9 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html index 6595807d..8755cf6b 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html index f7afca6b..d76fac17 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CompanyInfo

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Metadata

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputType

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WorkHistory

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html index 4077ac18..6709e02c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeRequest(ParsedResume, ResumeType)

@@ -169,10 +169,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Options

@@ -200,10 +200,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -238,10 +238,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html index efa951a9..4a61c8ba 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html index ced810ed..a140703e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentAsBase64String

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html index 93daec72..999900e2 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplateRequest(ParsedResume, Byte[], ResumeType)

@@ -172,10 +172,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplateRequest(ParsedResume, String, ResumeType)

@@ -220,10 +220,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomData

@@ -256,10 +256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputType

@@ -288,10 +288,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -319,10 +319,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Template

@@ -359,10 +359,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html index fae16b01..829056fe 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

HideCandidateSummary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HideTopSkills

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html index 31cb0349..4971c916 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo()

@@ -142,10 +142,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo(Byte[], Int32, Int32)

@@ -188,10 +188,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo(String, Int32, Int32)

@@ -236,10 +236,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -267,10 +267,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -298,10 +298,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -335,10 +335,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html index d2395ac2..2d1d820e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html index 30b1c0ad..74be2ba6 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerNames

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxYearsOfWorkHistory

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumPositions

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Formatter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Formatter.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html index f8033e6f..dc4cb10f 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AddressLine

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html index 30a1358b..eeb083e0 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html index da4fb8e3..b367384b 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html index c6197230..d3c2b966 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html index e5fb9e1a..7a09fc61 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexIfGeocodeFails

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingOptions

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html index 92e43375..a50fe262 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeResponse

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingResponse

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html index 772d3865..782b8586 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html index 18d5a1b6..f8a7314a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html index e1c18167..963432d4 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html index f07b5d1a..32bbad4e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Provider

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProviderKey

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html index 8d42f358..549fcd44 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html index da8f09d4..fbdf7ca5 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html index b0cbcf94..7b672551 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html index 82380db4..735a9f1e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IncludeGeocoding

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html index bb91fbb6..1a85d026 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeoCoordinates

@@ -170,10 +170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalAddress

@@ -209,10 +209,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html index 030acd93..e6df8a78 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html index 8cbd83e3..73baf0f1 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html index a8f46c75..1cb24e98 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html index f550c5f9..8864cdbb 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Geocoding.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Geocoding.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.ITxResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.ITxResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html index 6592ce40..6b90deb7 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.ITxResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Info

@@ -134,10 +134,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html index 2048f861..f25639ab 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexType

@@ -164,10 +164,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html index 3896a2e6..783f9533 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html index ba25c8cd..0640555b 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html index d274b746..9cdcff0c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html index 655994ed..fa9f0282 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html index b51216f4..98411931 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html index 1920174f..38609071 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html index 0db17e4c..5927094c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html index 583aff93..20e8a59a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html index df9d157b..fb861847 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html index f85b54b8..9bb68eb5 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html index 4d154fb7..c9df6d37 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html index 55fa82cd..854893de 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html index 217e66bd..98351c9c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -162,10 +162,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -199,10 +199,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html index c11e8ce0..a04cfac4 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html index 6adcefb3..2eb68e16 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html index c8c688d0..6e638d38 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Jobs

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html index cfcc7885..852674c5 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Resumes

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html index a754a22e..be9ebd83 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html index ff280c51..bd75a89d 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html index b07dc3fe..a1ca1ed0 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html index eac428a9..11453ab8 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Method

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html index 060007cf..cde86e16 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html index 2ec6de57..2c037a9f 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.Indexes.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Indexes.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html index 2b5b4668..31435e0e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Organization

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Tone

@@ -319,10 +319,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html index c812d827..a06e2eca 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html index d091735f..f641e9be 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobDescription

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html index d8c2d7a7..71542233 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Priority

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html index fd6ee486..a9cf8d78 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html index f4fedb8a..149ce6d4 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html index 98093186..fac1828f 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html index e3c90fcc..05ab47de 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html index 21b22d16..3e5f12eb 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedSkills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.JobDescription.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.JobDescription.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html index 68c38e61..54a62618 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html @@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AppliedCategoryWeights

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedCategoryWeights

@@ -236,10 +236,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html index 69a2b888..6f79f1e6 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentCount

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Matches

@@ -205,10 +205,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TotalCount

@@ -242,10 +242,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html similarity index 87% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html index 2845ba10..adad7393 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CertificationsHasData

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EducationHasData

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveTypeHasData

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Industries

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndustriesHasData

@@ -374,10 +374,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitlesHasData

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesHasData

@@ -498,10 +498,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -529,10 +529,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevelHasData

@@ -560,10 +560,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -591,10 +591,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsHasData

@@ -628,10 +628,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html index 4dedf987..ed70e33b 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html index a8dfc57a..52fad5d3 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html index 5f88be9c..af7d8677 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html @@ -147,10 +147,10 @@
Syntax
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html index 58c5f23e..9ad8cf1d 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html index 1a8bff73..45ff3210 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html similarity index 87% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html index 47432c83..b301f3be 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AverageMonthsPerEmployer

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentManagementLevel

@@ -226,10 +226,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DegreeNames

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DegreeTypes

@@ -310,10 +310,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentIds

@@ -341,10 +341,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLanguages

@@ -372,10 +372,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Employers

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployersMustAllBeCurrentEmployer

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HasPatents

@@ -509,10 +509,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HasSecurityCredentials

@@ -540,10 +540,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsAuthor

@@ -571,10 +571,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrentStudent

@@ -602,10 +602,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsMilitary

@@ -633,10 +633,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsPublicSpeaker

@@ -664,10 +664,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsRecentGraduate

@@ -695,10 +695,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsTopStudent

@@ -726,10 +726,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobPredictiveIndex

@@ -758,10 +758,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -789,10 +789,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesKnown

@@ -821,10 +821,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesKnownMustAllExist

@@ -853,10 +853,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LocationCriteria

@@ -884,10 +884,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -915,10 +915,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsManagementExperience

@@ -946,10 +946,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RevisionDateRange

@@ -977,10 +977,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolNames

@@ -1010,10 +1010,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SearchExpression

@@ -1042,10 +1042,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SecurityCredentials

@@ -1075,10 +1075,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -1106,10 +1106,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsMustAllExist

@@ -1138,10 +1138,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -1170,10 +1170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -1202,10 +1202,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTagsMustAllExist

@@ -1240,10 +1240,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html index d3375bdc..4db5a0d9 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeoPoint

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html index 3dbf43b7..c473b384 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html index 607cd01b..af639407 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Title

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html index 74423931..c1061b2b 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Distance

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceUnit

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeProvider

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeProviderKey

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Locations

@@ -291,10 +291,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html index e564635e..71bdb645 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html @@ -147,10 +147,10 @@
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html index 62e6a584..06e6e4b0 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Take

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html index 015ede06..ff665f7a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skip

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Take

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html index 06fc6f75..cdfe1585 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html index de2a873f..bde646ff 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FilterCriteria

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexIdsToSearchInto

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Settings

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html index 547fa379..5ce95af5 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeJobTitles

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeJobTitlesLanguage

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PositionTitlesMustHaveAnExactMatch

@@ -235,10 +235,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html index 51bb216f..e039a11a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html @@ -133,10 +133,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html index a7664b47..5d0c790e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExperienceLevel

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillName

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Request.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Request.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html index 99fc463b..e4edcea2 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html @@ -132,10 +132,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Evidence

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UnweightedScore

@@ -200,10 +200,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html index 41bee8bc..9ad76ad8 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Fact

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html index 7f1d253b..d08c649f 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Primary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Secondary

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html index aeb01925..7dc02d51 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ActualEducation

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Comparison

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExpectedEducation

@@ -235,10 +235,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html index 33e01902..6060681c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html index f3988282..ade61986 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawTerm

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

VariationOf

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html index 8785d94a..d0a85953 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skill

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html index b9280b35..9e1a3b5e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -128,10 +128,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -272,10 +272,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html index 38b4c520..7f135186 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html index ac7a921d..1290c718 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Actual

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

AmountOfExperienceMatches

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Desired

@@ -232,10 +232,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html index 4409ecd4..195bf426 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -233,10 +233,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -267,10 +267,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -316,10 +316,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html index 6bd10e90..420dc33e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html index 4807c6a4..f6b10b23 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html index 7ff5bbd5..acf29491 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html index 52341d02..ff8f2cf8 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ActualTaxonomies

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DesiredTaxonomies

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html index c7e23365..fff8073e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Subtaxonomy

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomy

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html index 40058969..c8f93962 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Matched

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.Response.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.Response.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html index 65963ad7..79c79e20 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PaginationSettings

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html index 39090927..43a462a5 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html index 1a211b03..45c0fc52 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html @@ -140,10 +140,10 @@
Syntax
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html index 6c1d641a..7f0d1f39 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Result

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html index 976d8247..2c02ada3 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SovScoreName

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Style

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Username

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html index 15dd70bc..763d2245 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html @@ -138,10 +138,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Result

@@ -175,10 +175,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html index 9153d670..b7497a40 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html index 694a649c..6ce74d37 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html index 611c42ca..968cd898 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html @@ -145,10 +145,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MatchDetails

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UIOptions

@@ -213,10 +213,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html index de8290fa..fd91f16d 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html @@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SaasRequest

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html index ce65c7e1..83b03780 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExpiresIn

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

URL

@@ -202,10 +202,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html index 3c9b42fe..bca999b8 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Documents

@@ -186,10 +186,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html index 3e4b625c..92be4991 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JsAction

@@ -167,10 +167,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UrlAction

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html index 8fdf53c3..1acbdf28 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html index f69a5065..8f743ef1 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html @@ -146,10 +146,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomInfo

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Username

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html index d8254386..ed6ebe2c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Data

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Target

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetOrigin

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html index 2c16ebcf..034e7603 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FilterCriteria

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -217,10 +217,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html index 18c6d0eb..8e48992c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Client

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Server

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html index d7e204f6..8493eff8 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -167,10 +167,10 @@
Overrides
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkText

@@ -206,10 +206,10 @@
Overrides
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html index a4362946..c40382a3 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomInfo

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Url

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html index ab78fc8d..2693889d 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -176,10 +176,10 @@
Overrides
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html index 7cd27495..f100b173 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobBoard

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobBoardDocumentId

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -242,10 +242,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SourceDocument

@@ -279,10 +279,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html index 93e88059..4200437d 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Target

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Url

@@ -200,10 +200,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html index 2ec3c6a8..f2f1d52a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkText

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html index 913bcd92..6c0f475c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Client

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OnUpdate

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Server

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Sourcing

@@ -267,10 +267,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html index 424dac40..391e45de 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -217,10 +217,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html index f9082c3c..35d88bc1 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AppliedCategoryWeights

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HtmlDocument

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SourceDocumentType

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html index af4514f7..6e1b978e 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseOptions

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UIOptions

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html index 014fca25..105d62d2 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FontFamily

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FontUrl

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HeaderColor

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PrimaryColor

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SquareCorners

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html index 51078c4d..85280102 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html @@ -137,10 +137,10 @@
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html index fd188ea2..5e305777 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html @@ -144,10 +144,10 @@
S diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html index ad53cc7c..c975631a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html @@ -137,10 +137,10 @@
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html index 5d8b18c3..1223d5fa 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html @@ -144,10 +144,10 @@
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html index 96632803..3ea4f806 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html @@ -144,10 +144,10 @@
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html index e8e0cd8f..d9359530 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html @@ -137,10 +137,10 @@
Synta diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html index f383c9d3..563c7d90 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html @@ -144,10 +144,10 @@
Syntax
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html index 9d8504eb..200a4f08 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html @@ -144,10 +144,10 @@
Syntax diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html similarity index 89% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html index cca2a0b0..44560618 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExecuteImmediately

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Hooks

@@ -200,10 +200,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowBanner

@@ -231,10 +231,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowDetailsButton

@@ -262,10 +262,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFilterCriteria

@@ -293,10 +293,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFindSimilar

@@ -324,10 +324,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowJobBoards

@@ -356,10 +356,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowSavedSearches

@@ -387,10 +387,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowWebSourcing

@@ -418,10 +418,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowWeights

@@ -449,10 +449,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsAutoCompleteCustomSkillsList

@@ -480,10 +480,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTagsPicklists

@@ -518,10 +518,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html index 6fcdff02..9fc362a5 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html @@ -144,10 +144,10 @@
Syntax
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html index 08493132..8ca32e09 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html index 20a28c31..c318f158 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Label

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Options

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.UI.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.UI.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.Matching.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Matching.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Matching.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html index f8bf415b..becf0507 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ConversionMetadata

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Conversions

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParsingMetadata

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParsingResponse

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionNormalizationResponse

@@ -296,10 +296,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html index bf657e3d..00c5ae9b 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Configuration

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizerData

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionsSettings

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -256,10 +256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSettings

@@ -293,10 +293,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html index 016256e8..2d4521ee 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DetectedType

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentHash

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ElapsedMilliseconds

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputValidityCode

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedFileExtension

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html index 30e63bf2..f305579a 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateImage

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateImageExtension

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HTML

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PDF

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RTF

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html index 6e4265d8..086e86a3 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DataType

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnumerationValues

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Identifier

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prompt

@@ -259,10 +259,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html index 40a6b1f8..f71955a8 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html @@ -138,10 +138,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html index e9597649..638f2317 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Responses

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html index e13309e7..e4525745 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Identifier

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Reply

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReplyList

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html index 0ade69b2..42764ec2 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html index dcde6378..96290868 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -186,10 +186,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html index 676f6cb2..f2d5a272 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FlexRequests

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -208,10 +208,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingOptions

@@ -243,10 +243,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputCandidateImage

@@ -274,10 +274,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputHtml

@@ -305,10 +305,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputPdf

@@ -336,10 +336,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputRtf

@@ -367,10 +367,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UseLLMParser

@@ -406,10 +406,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html index 271f76b9..6fccce62 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html @@ -167,10 +167,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParseRequest(Document, ParseOptions)

@@ -209,10 +209,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentAsBase64String

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLastModified

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html index 9527c85c..a958b0f9 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html index 17f5355d..0f2f75a0 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EducationNormalizationResponse

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FlexResponse

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RedactedResumeData

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -281,10 +281,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html index cd7b58fb..d6e5e60c 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ElapsedMilliseconds

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LicenseSerialNumber

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimedOut

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimedOutAtMilliseconds

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html index 16638e93..fec950b8 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalize

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -213,10 +213,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html index a3e4666c..c893e8c3 100644 --- a/docs/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html @@ -125,10 +125,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalize

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyVersion

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.API.Parsing.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.Parsing.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.html diff --git a/docs/sdk/Textkernel.Tx.Models.API.html b/docs/site-/sdk/Textkernel.Tx.Models.API.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.API.html rename to docs/site-/sdk/Textkernel.Tx.Models.API.html diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html index 483cff72..04f9dc2e 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html index abbf9a22..3b3ba5b5 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Matches

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html index 1a6fdf06..49224ec1 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsoCode

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html index af7274df..32bcce03 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html @@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html index 0960dc82..23ca6c9d 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

RawText

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html index 3595151b..161e927e 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Class

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Isco

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Kldb2020

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Onet

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Onet2019

@@ -321,10 +321,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UkSoc2010

@@ -352,10 +352,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UwvBoc

@@ -389,10 +389,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html index 1686b6e5..4cf73d1c 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -211,10 +211,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html index 899ad45c..a5f9d943 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html @@ -155,10 +155,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -187,10 +187,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Descriptions

@@ -224,10 +224,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html index ec41eda3..9727647c 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsoCode

@@ -221,14 +221,14 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

-

Type of skill. Possible values are Professional, IT, Language, or Soft.

+

Type of skill. Possible values are Professional, IT, Language, Soft, or Certification (only when using v2 endpoints).

Declaration
@@ -258,10 +258,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html index 2a978661..910eb34e 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html @@ -141,10 +141,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -178,10 +178,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html index 169fdc9c..fb00e2d3 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BeginSpan

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndSpan

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Likelihood

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawText

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html index 19bfd1c8..53a63e1a 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Descriptions

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html index 029542c4..4ad8aab0 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CsvOutput

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html index f585c33e..4ae2b982 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ServiceVersion

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyReleaseDate

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html index d9b45ff4..873943aa 100644 --- a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -185,10 +185,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.DataEnrichment.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.DataEnrichment.html rename to docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.html diff --git a/docs/sdk/Textkernel.Tx.Models.Document.html b/docs/site-/sdk/Textkernel.Tx.Models.Document.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Document.html rename to docs/site-/sdk/Textkernel.Tx.Models.Document.html index caf6dd7c..7687d688 100644 --- a/docs/sdk/Textkernel.Tx.Models.Document.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Document.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Document(Byte[], DateTime)

@@ -168,10 +168,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Document(String)

@@ -205,10 +205,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AsBase64

@@ -236,10 +236,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastModified

@@ -273,10 +273,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.GeoCoordinates.html b/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.GeoCoordinates.html rename to docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html index 0733d30e..10991115 100644 --- a/docs/sdk/Textkernel.Tx.Models.GeoCoordinates.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Latitude

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Longitude

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html b/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html rename to docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html index 20db70c4..c92e4a52 100644 --- a/docs/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Source

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html similarity index 89% rename from docs/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html index 654d6330..c383798f 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDeadline

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDescription

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactEmail

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactPerson

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactPhone

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostedDate

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReferenceNumber

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Website

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.EmployerNames.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Job.EmployerNames.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html index 0235ebc7..fb07d04f 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.EmployerNames.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MainEmployerName

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.JobDegree.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Job.JobDegree.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html index b6cbc60d..97c24f37 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.JobDegree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

InternationalEducationLevel

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LocalEducationLevel

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.JobMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.Job.JobMetadata.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html index 5827e080..ea66ee43 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.JobMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html @@ -146,10 +146,10 @@
Syntax
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.JobTitles.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Job.JobTitles.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html index 1e6f3b17..bd556590 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.JobTitles.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MainJobTitle

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedProfession

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.ParsedJob.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html similarity index 86% rename from docs/sdk/Textkernel.Tx.Models.Job.ParsedJob.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html index c584b7f0..af3f0a99 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.ParsedJob.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html @@ -130,10 +130,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParsedJob()

@@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDetails

@@ -185,10 +185,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Benefits

@@ -216,10 +216,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CertificationsAndLicenses

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContractType

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentJobIsManagement

@@ -321,10 +321,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentLocation

@@ -352,10 +352,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Degrees

@@ -383,10 +383,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DriversLicenses

@@ -414,10 +414,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerDescription

@@ -445,10 +445,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerNames

@@ -476,10 +476,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmploymentType

@@ -511,10 +511,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -542,10 +542,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -573,10 +573,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HighestManagementScore

@@ -604,10 +604,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsRemote

@@ -635,10 +635,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobDescription

@@ -666,10 +666,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobMetadata

@@ -697,10 +697,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobRequirements

@@ -728,10 +728,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -759,10 +759,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCodes

@@ -790,10 +790,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -821,10 +821,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumWorkingHours

@@ -852,10 +852,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumYears

@@ -883,10 +883,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumYearsManagement

@@ -914,10 +914,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumWorkingHours

@@ -945,10 +945,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumYears

@@ -976,10 +976,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumYearsManagement

@@ -1007,10 +1007,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Owners

@@ -1038,10 +1038,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequiredDegree

@@ -1069,10 +1069,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Salary

@@ -1100,10 +1100,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolNames

@@ -1131,10 +1131,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -1162,10 +1162,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -1194,10 +1194,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -1225,10 +1225,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TermsOfInterest

@@ -1256,10 +1256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -1290,10 +1290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WorkingHours

@@ -1325,10 +1325,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

FromFile(String)

@@ -1374,10 +1374,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

FromJson(String)

@@ -1423,10 +1423,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -1481,10 +1481,10 @@
Overrides
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.PayRange.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.Job.PayRange.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html index 59985f05..50af4da5 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.PayRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Currency

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawMaximum

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawMinimum

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimeScale

@@ -331,10 +331,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html index 673e0cf5..0fcd401e 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -176,10 +176,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html index e608cd8d..a3870858 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html index 6e7b4b88..b4925e99 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html index fff4e60a..c5fe34de 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html index 6bd3b629..2d95664e 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html index 5981944e..70517d59 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html @@ -151,10 +151,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html index bac8c9ab..227a1168 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Root

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html index d13e53ef..af0338d5 100644 --- a/docs/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedProfessionClasses

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Job.Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Job.Skills.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.html diff --git a/docs/sdk/Textkernel.Tx.Models.Job.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Job.html rename to docs/site-/sdk/Textkernel.Tx.Models.Job.html diff --git a/docs/sdk/Textkernel.Tx.Models.Location.html b/docs/site-/sdk/Textkernel.Tx.Models.Location.html similarity index 89% rename from docs/sdk/Textkernel.Tx.Models.Location.html rename to docs/site-/sdk/Textkernel.Tx.Models.Location.html index 166a75b0..677139c9 100644 --- a/docs/sdk/Textkernel.Tx.Models.Location.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Location.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeoCoordinates

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Regions

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StreetAddressLines

@@ -318,10 +318,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Matching.Index.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Matching.Index.html rename to docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html index c4b19c52..ba6fa390 100644 --- a/docs/sdk/Textkernel.Tx.Models.Matching.Index.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexType

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Matching.IndexType.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html similarity index 96% rename from docs/sdk/Textkernel.Tx.Models.Matching.IndexType.html rename to docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html index dd6d8ce1..d72dab81 100644 --- a/docs/sdk/Textkernel.Tx.Models.Matching.IndexType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/sdk/Textkernel.Tx.Models.Matching.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Matching.html rename to docs/site-/sdk/Textkernel.Tx.Models.Matching.html diff --git a/docs/sdk/Textkernel.Tx.Models.ParsedDocument.html b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.ParsedDocument.html rename to docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html index a445841d..ab1bde0d 100644 --- a/docs/sdk/Textkernel.Tx.Models.ParsedDocument.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html @@ -125,10 +125,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToFile(String, Boolean)

@@ -165,10 +165,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -215,10 +215,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -254,10 +254,10 @@
Overrides
diff --git a/docs/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html rename to docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html index beb71bcd..c206f2af 100644 --- a/docs/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentCulture

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLanguage

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLastModified

@@ -230,10 +230,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParserSettings

@@ -261,10 +261,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PlainText

@@ -298,10 +298,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Association.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Association.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html index 454a785a..19a5c8f4 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Association.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Organization

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Role

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html similarity index 89% rename from docs/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html index 5f604b1e..d4e90ace 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Company

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReferenceName

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telephones

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Title

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WebAddresses

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Certification.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Certification.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html index a1ec989b..ddaffeef 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Certification.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsVariation

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MatchedFromList

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -229,10 +229,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html index 78b942f6..d05a0787 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telephones

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WebAddresses

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html similarity index 89% rename from docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html index 7fab7803..cb22a507 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FamilyName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FormattedName

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GivenName

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MiddleName

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Moniker

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prefix

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Suffix

@@ -349,10 +349,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html index cd7aa8c0..a65478b5 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AreaCityCode

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

InternationalCountryCode

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubscriberNumber

@@ -232,10 +232,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html index 0adde53a..9a529816 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Address

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -215,10 +215,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html similarity index 86% rename from docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html index 343f3501..c564d716 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

Facebook

A Facebook profile URL

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Gab

A Gab username

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GitHub

A GitHub username/URL

@@ -216,10 +216,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ICQ

An ICQ username

@@ -246,10 +246,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Instagram

An Instagram username

@@ -276,10 +276,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkedIn

A LinkedIn URL

@@ -306,10 +306,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MeWe

A MeWe username/URL

@@ -336,10 +336,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Parler

A Parler username

@@ -366,10 +366,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PersonalWebsite

A personal website URL

@@ -396,10 +396,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QQ

A QQ username/number

@@ -426,10 +426,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Quora

A Quora username

@@ -456,10 +456,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Reddit

A Reddit username/URL

@@ -486,10 +486,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Signal

A Signal username/number

@@ -516,10 +516,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skype

A Skype username/URL

@@ -546,10 +546,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StackOverflow

A Stack Overflow username/URL

@@ -576,10 +576,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telegram

A Telegram username

@@ -606,10 +606,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telegraph

A Telegraph username

@@ -636,10 +636,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Twitter

A Twitter handle

@@ -666,10 +666,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Unknown

An unknown internet handle/URL (the platform/website/app was not specified)

@@ -696,10 +696,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeChat

A WeChat username

@@ -726,10 +726,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WhatsApp

A WhatsApp username/number

@@ -758,10 +758,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -791,10 +791,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(String to WebAddressType)

@@ -846,10 +846,10 @@
Returns
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Resume.ContactInfo.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.html diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html index 355f59f9..08a35e1a 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedInternational

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedLocal

@@ -225,10 +225,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html similarity index 88% rename from docs/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html index fd72014b..337e6274 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Degree

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GPA

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Graduated

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastEducationDate

@@ -313,10 +313,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Majors

@@ -375,10 +375,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minors

@@ -406,10 +406,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolName

@@ -437,10 +437,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolType

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -509,10 +509,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -546,10 +546,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html index 02049139..d6eb2a22 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EducationDetails

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HighestDegree

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html index 1b56d22c..a927ac1b 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MaxScore

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumScore

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedScore

@@ -224,10 +224,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -255,10 +255,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ScoringSystem

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html index 74ede63b..2466b60d 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Education.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Resume.Education.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.html diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html index 267f4286..378ca11a 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html index 9b5e27b2..d7c1b404 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Probability

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html index d3e22dc5..23c564eb 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OtherFoundName

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html index 92e222f9..f5825455 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExperienceSummary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html index c65eaa8f..c73467bc 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AttentionNeeded

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

AverageMonthsPerEmployer

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentManagementLevel

@@ -229,10 +229,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -266,10 +266,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -309,10 +309,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FulltimeDirectHirePredictiveIndex

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementScore

@@ -379,10 +379,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementStory

@@ -410,10 +410,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsOfManagementExperience

@@ -447,10 +447,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsOfWorkExperience

@@ -489,10 +489,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html index b617b79b..14e53db1 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Probability

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -224,10 +224,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -262,10 +262,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html index 733ea1ca..4b135bc8 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Class

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ISCO

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ONET

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Profession

@@ -318,10 +318,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html similarity index 88% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html index 10ebadb4..64a84d9f 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Bullets

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Employer

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -282,10 +282,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -313,10 +313,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsSelfEmployed

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobLevel

@@ -382,10 +382,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -413,10 +413,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobType

@@ -450,10 +450,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedProfession

@@ -481,10 +481,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumberEmployeesSupervised

@@ -512,10 +512,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedToByCompanyName

@@ -543,10 +543,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedToByDates

@@ -574,10 +574,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -605,10 +605,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyName

@@ -638,10 +638,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyName

@@ -671,10 +671,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyPercentage

@@ -709,10 +709,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html index 9392f3fe..6ab68c19 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -185,10 +185,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Employment.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Resume.Employment.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.html diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html index e47d0989..ddf61f54 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCode

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html index 8e284c99..4d724501 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MatchedFromList

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html index 7a5c976c..e865d7be 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Names

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OtherData

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phones

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Urls

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html index fddaa992..3589eb4e 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html @@ -142,10 +142,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundSections

@@ -173,10 +173,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReservedData

@@ -204,10 +204,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeQuality

@@ -254,10 +254,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html index c8748495..acd76415 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Findings

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Level

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html index 3a571885..a14e0164 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QualityCode

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionIdentifiers

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html index 98005731..f7110aac 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DataMissing

Some data was missing that should be included in a resume

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FatalProblem

A fatal issue was found in the resume. Parse results may have severe inaccuracies

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MajorIssue

A major issue was found in the resume that will reduce the quality of parse results

@@ -216,10 +216,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedImprovement

Only minor issues were found

@@ -248,10 +248,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -281,10 +281,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(String to ResumeQualityLevel)

@@ -336,10 +336,10 @@
Returns
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html index 60ed96ae..8aeba848 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FirstLineNumber

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HeaderTextFound

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastLineNumber

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionType

@@ -283,10 +283,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Metadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Resume.Metadata.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.html diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html index 3ebf2323..154c0694 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Country

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Service

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html index 2b25fbfb..918a4a63 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Branch

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Rank

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html index ac42eb3c..c8c506c6 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Military.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Resume.Military.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.html diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html index c6f824a9..39ccbeb1 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Number

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phrase

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html index ceec271f..b844e85b 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html similarity index 87% rename from docs/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html index eda971b6..30cf248d 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html @@ -130,10 +130,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParsedResume()

@@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Achievements

@@ -185,10 +185,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Associations

@@ -216,10 +216,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactInformation

@@ -278,10 +278,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CoverLetter

@@ -309,10 +309,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -340,10 +340,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmploymentHistory

@@ -371,10 +371,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Hobbies

@@ -402,10 +402,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCompetencies

@@ -434,10 +434,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Licenses

@@ -466,10 +466,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MilitaryExperience

@@ -497,10 +497,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Objective

@@ -528,10 +528,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Patents

@@ -559,10 +559,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PersonalAttributes

@@ -590,10 +590,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionalSummary

@@ -621,10 +621,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Publications

@@ -652,10 +652,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QualificationsSummary

@@ -683,10 +683,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

References

@@ -714,10 +714,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeMetadata

@@ -745,10 +745,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SecurityCredentials

@@ -776,10 +776,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -807,10 +807,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -839,10 +839,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SpeakingEngagements

@@ -870,10 +870,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Training

@@ -901,10 +901,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -937,10 +937,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

FromFile(String)

@@ -986,10 +986,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

FromJson(String)

@@ -1035,10 +1035,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -1093,10 +1093,10 @@
Overrides
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html similarity index 86% rename from docs/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html index ba83c31b..be71c852 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Availability

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Birthplace

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentLocation

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentSalary

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DateOfBirth

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DrivingLicense

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FamilyComposition

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FathersName

@@ -374,10 +374,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Gender

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HukouArea

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HukouCity

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaritalStatus

@@ -498,10 +498,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MothersMaidenName

@@ -529,10 +529,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MotherTongue

@@ -560,10 +560,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NationalIdentities

@@ -591,10 +591,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Nationality

@@ -622,10 +622,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PassportNumber

@@ -653,10 +653,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredLocation

@@ -684,10 +684,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequiredSalary

@@ -715,10 +715,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

VisaStatus

@@ -746,10 +746,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WillingToRelocate

@@ -783,10 +783,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Salary.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Salary.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html index 230dff13..7961e252 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Salary.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Amount

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Currency

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html index 1ce84f7a..874c2da4 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionType

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html index 31f991ed..0b7fdb60 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -170,10 +170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -201,10 +201,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -238,10 +238,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html index 3816c757..3477b3ac 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -229,10 +229,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html index 944553bb..7d9a74f2 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html @@ -146,10 +146,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ChildrenLastUsed

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ChildrenMonthsExperience

@@ -208,10 +208,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -245,10 +245,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html index b0bdfe57..fa6ea163 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -236,10 +236,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html similarity index 95% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html index 46f0596d..71e93244 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html similarity index 97% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html index 330d6548..a237d470 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html @@ -151,10 +151,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html index 87238d4f..dd19afed 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Root

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html index 25e09ebf..657b6e3e 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedProfessionClasses

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Resume.Skills.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.html diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html similarity index 90% rename from docs/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html index 00d84ede..f7cc4b9f 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Entity

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Qualifications

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -288,10 +288,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html index fa401937..947c7daf 100644 --- a/docs/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Trainings

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Resume.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Resume.html rename to docs/site-/sdk/Textkernel.Tx.Models.Resume.html diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html index a44b9ed4..f62e4b32 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfOverall

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfParent

@@ -203,10 +203,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html index a68e9fd3..ae858d7c 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html @@ -147,10 +147,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -178,10 +178,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -209,10 +209,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfOverall

@@ -240,10 +240,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -281,10 +281,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html index 67e36205..b05cbb9d 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html @@ -112,10 +112,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -143,10 +143,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -211,10 +211,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html index e9509549..edf80582 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawSkills

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -258,10 +258,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html index a079767a..3fc58f52 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Groups

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Percent

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html index 53e33d84..96bc64c9 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Percent

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.RawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.Skills.RawSkill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html index 78e5dcf5..924a17d4 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.RawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.Skill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html similarity index 92% rename from docs/sdk/Textkernel.Tx.Models.Skills.Skill.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html index 83b03281..e1f53713 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.Skill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExistsInText

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html similarity index 93% rename from docs/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html index 7be04bbe..72fe364e 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyId

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyName

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html index b6e834a3..93e406a0 100644 --- a/docs/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TxDefaults

@@ -265,10 +265,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.Models.Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.Skills.html rename to docs/site-/sdk/Textkernel.Tx.Models.Skills.html diff --git a/docs/sdk/Textkernel.Tx.Models.TxDate.html b/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html similarity index 91% rename from docs/sdk/Textkernel.Tx.Models.TxDate.html rename to docs/site-/sdk/Textkernel.Tx.Models.TxDate.html index 35e31c35..32129cd0 100644 --- a/docs/sdk/Textkernel.Tx.Models.TxDate.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Date

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundDay

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundMonth

@@ -226,10 +226,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundYear

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrentDate

@@ -294,10 +294,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.TxPrimitive-1.html b/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html similarity index 94% rename from docs/sdk/Textkernel.Tx.Models.TxPrimitive-1.html rename to docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html index eff77d40..debfd25b 100644 --- a/docs/sdk/Textkernel.Tx.Models.TxPrimitive-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.Models.html b/docs/site-/sdk/Textkernel.Tx.Models.html similarity index 100% rename from docs/sdk/Textkernel.Tx.Models.html rename to docs/site-/sdk/Textkernel.Tx.Models.html diff --git a/docs/sdk/Textkernel.Tx.TxClient.html b/docs/site-/sdk/Textkernel.Tx.TxClient.html similarity index 70% rename from docs/sdk/Textkernel.Tx.TxClient.html rename to docs/site-/sdk/Textkernel.Tx.TxClient.html index a8029e93..693faf1f 100644 --- a/docs/sdk/Textkernel.Tx.TxClient.html +++ b/docs/site-/sdk/Textkernel.Tx.TxClient.html @@ -131,10 +131,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

TxClient(HttpClient, TxClientSettings)

@@ -184,10 +184,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

TxClient(String, String, DataCenter, IEnumerable<String>)

@@ -240,10 +240,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFullRequestBodyInExceptions

@@ -274,10 +274,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteProfession(String, IEnumerable<String>, String, Int32)

@@ -364,10 +364,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkill(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -460,10 +460,106 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source + + +

AutocompleteSkillV2(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

+

Returns normalized skills that begin with a given prefix, based on the chosen language(s). +Each profession is associated with multiple descriptions. If any of the descriptions are a good +completion of the given prefix, the profession is included in the results.

+
+
+
Declaration
+
+
public async Task<AutoCompleteSkillsResponse> AutocompleteSkillV2(string prefix, IEnumerable<string> languages = null, string outputLanguage = null, IEnumerable<string> types = null, int limit = 10)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Stringprefix

The skill prefix to be completed. Must contain at least 1 character.

+
System.Collections.Generic.IEnumerable<System.String>languages

The language(s) used to search for matching skills (the language of the provided prefix). +A maximum of 5 languages can be provided. Must be one of the supported +ISO codes. +
Default is 'en' only.

+
System.StringoutputLanguage

The language to ouput the found skills in (default is 'en'). Must be one of the supported +ISO codes.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

+
System.Int32limit

The maximum number of returned skills. The default is 10 and the maximum is 100.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<AutoCompleteSkillsResponse>

A list of skills that match the given prefix.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source

BimetricScore<TTarget>(ParsedJobWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -561,10 +657,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedResumeWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -662,10 +758,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessions(Int32, Int32, String)

@@ -745,10 +841,93 @@
Exceptions
| - Improve this Doc + Improve this Doc + + + View Source + + +

CompareProfessionsV2(Int32, Int32, String)

+

Compare two professions based on the skills associated with each.

+
+
+
Declaration
+
+
public async Task<CompareProfessionsResponse> CompareProfessionsV2(int profession1, int profession2, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Int32profession1

A profession code ID from the +Professions Taxonomy +to compare.

+
System.Int32profession2

A profession code ID from the +Professions Taxonomy +to compare.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<CompareProfessionsResponse>

Common skills and exclusive skills between the two professions.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc - View Source + View Source

CompareSkillsToProfession(Int32, String, SkillScore[])

@@ -826,10 +1005,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(ParsedResume, Int32, String, Boolean)

@@ -911,19 +1090,19 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source - -

CreateIndex(IndexType, String)

-

Create a new index

+ +

CompareSkillsToProfessionV2(Int32, String, SkillScore[])

+

Compare a given set of skills to the skills related to a given profession.

Declaration
-
public async Task<CreateIndexResponse> CreateIndex(IndexType type, string indexId)
+
public async Task<CompareSkillsToProfessionResponse> CompareSkillsToProfessionV2(int professionCodeId, string outputLanguage = null, params SkillScore[] skills)
Parameters
@@ -936,16 +1115,24 @@
Parameters
- - - + + - - + + + + + + @@ -960,8 +1147,9 @@
Returns
- - + +
IndexTypetype

The type of documents stored in this index. Either 'Resume' or 'Job'

+
System.Int32professionCodeId

The profession code ID from the +Professions Taxonomy +to compare the skill set to.

System.StringindexId

The ID to assign to the new index. This is restricted to alphanumeric with dashes -and underscores. All values will be converted to lower-case.

+
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
SkillScore[]skills

The skill IDs (and optionally, scores) which should be compared against the given profession. The list can contain up to 50 skills.

System.Threading.Tasks.Task<CreateIndexResponse>System.Threading.Tasks.Task<CompareSkillsToProfessionResponse>

Common skills and skills not in the profession.

+
@@ -976,26 +1164,26 @@
Exceptions
TxException -

Thrown when an API error occurs

+

Thrown when an API error occurred

| - Improve this Doc + Improve this Doc - View Source + View Source - -

DeleteDocument(String, String)

-

Delete an existing document from an index

+ +

CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean)

+

Compare the skills of a candidate to the skills related to a job using the Ontology API.

Declaration
-
public async Task<DeleteDocumentResponse> DeleteDocument(string indexId, string documentId)
+
public async Task<CompareSkillsToProfessionResponse> CompareSkillsToProfessionV2(ParsedResume resume, int professionCodeId, string outputLanguage = null, bool weightSkillsByExperience = true)
Parameters
@@ -1008,15 +1196,28 @@
Parameters
- - - + + + + + + + - - + + + + + + @@ -1031,8 +1232,9 @@
Returns
- - + +
System.StringindexId

The index containing the document

+
ParsedResumeresume

The resume containing the skills of the candidate

+
System.Int32professionCodeId

The code ID of the profession to compare the skills of the candidate to

System.StringdocumentId

The ID of the document to delete

+
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

System.Threading.Tasks.Task<DeleteDocumentResponse>System.Threading.Tasks.Task<CompareSkillsToProfessionResponse>

Skills that are common between the candidate and the job, as well as what skills are missing

+
@@ -1047,27 +1249,26 @@
Exceptions
TxException -

Thrown when an API error occurs

+

Thrown when an API error occurred

| - Improve this Doc + Improve this Doc - View Source + View Source - -

DeleteIndex(String)

-

Delete an existing index. Note that this is a destructive action and -cannot be undone. All the documents in this index will be deleted.

+ +

CreateIndex(IndexType, String)

+

Create a new index

Declaration
-
public async Task<DeleteIndexResponse> DeleteIndex(string indexId)
+
public async Task<CreateIndexResponse> CreateIndex(IndexType type, string indexId)
Parameters
@@ -1079,10 +1280,18 @@
Parameters
+ + + + + - +
IndexTypetype

The type of documents stored in this index. Either 'Resume' or 'Job'

+
System.String indexId

The ID to assign to the new index. This is restricted to alphanumeric with dashes +and underscores. All values will be converted to lower-case.

+
@@ -1096,7 +1305,7 @@
Returns
- System.Threading.Tasks.Task<DeleteIndexResponse> + System.Threading.Tasks.Task<CreateIndexResponse> @@ -1119,10 +1328,146 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source + + +

DeleteDocument(String, String)

+

Delete an existing document from an index

+
+
+
Declaration
+
+
public async Task<DeleteDocumentResponse> DeleteDocument(string indexId, string documentId)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.StringindexId

The index containing the document

+
System.StringdocumentId

The ID of the document to delete

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<DeleteDocumentResponse>
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurs

+
+ + | + Improve this Doc + + + View Source + + +

DeleteIndex(String)

+

Delete an existing index. Note that this is a destructive action and +cannot be undone. All the documents in this index will be deleted.

+
+
+
Declaration
+
+
public async Task<DeleteIndexResponse> DeleteIndex(string indexId)
+
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
System.StringindexId
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<DeleteIndexResponse>
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurs

+
+ + | + Improve this Doc + + + View Source

DeleteMultipleDocuments(String, IEnumerable<String>)

@@ -1190,10 +1535,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -1206,10 +1551,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkills(String, String, String, Single)

@@ -1294,10 +1639,98 @@
Exceptions
| - Improve this Doc + Improve this Doc + + + View Source + + +

ExtractSkillsV2(String, String, String, Single)

+

Extracts known skills from the given text.

+
+
+
Declaration
+
+
public async Task<ExtractSkillsResponse> ExtractSkillsV2(string text, string language = "en", string outputLanguage = null, float threshold = 0.5F)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Stringtext

The text to extract skills from. There is a 24,000 character limit.

+
System.Stringlanguage

The language of the input text. Must be one of the supported +ISO codes. +
Default is 'en'.

+
System.StringoutputLanguage

The language to use for the output skill descriptions. If not provided, defaults to the input language. Must be one of the supported +ISO codes.

+
System.Singlethreshold

A value from [0 - 1] for the minimum confidence threshold for extracted skills. Lower values will return more skills, +but also increase the likelihood of ambiguity-related errors. The recommended and default value is 0.5.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<ExtractSkillsResponse>

A list of extracted skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc - View Source + View Source

FormatResume(FormatResumeRequest)

@@ -1360,10 +1793,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplate(FormatResumeWithTemplateRequest)

@@ -1426,10 +1859,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateJobDescription(GenerateJobRequest)

@@ -1491,10 +1924,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, Address, GeocodeCredentials)

@@ -1569,10 +2002,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, GeocodeCredentials)

@@ -1641,10 +2074,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, Address, GeocodeCredentials)

@@ -1719,10 +2152,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, GeocodeCredentials)

@@ -1791,10 +2224,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -1881,10 +2314,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -1965,10 +2398,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2062,10 +2495,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2153,10 +2586,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2243,10 +2676,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2327,10 +2760,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2424,10 +2857,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2515,10 +2948,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAccountInfo()

@@ -2562,10 +2995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAllIndexes()

@@ -2609,10 +3042,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetJob(String, String)

@@ -2680,10 +3113,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomy(String, TaxonomyFormat)

@@ -2755,10 +3188,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomyMetadata()

@@ -2803,10 +3236,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetResume(String, String)

@@ -2874,10 +3307,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomy(TaxonomyFormat)

@@ -2941,10 +3374,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadata()

@@ -2989,69 +3422,184 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source - -

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

-

Add a job to an existing index

+ +

GetSkillsTaxonomyMetadataV2()

+

Get metadata about the skills taxonomy/service.

Declaration
-
public async Task<IndexDocumentResponse> IndexDocument(ParsedJob job, string indexId, string documentId, IEnumerable<string> userDefinedTags = null)
+
public async Task<GetMetadataResponse> GetSkillsTaxonomyMetadataV2()
-
Parameters
+
Returns
- - - - - - - - - - - - - - - - - - - +
TypeName Description
ParsedJobjob

A job generated by the Job Parser

-
System.StringindexId

The index the document should be added into (case-insensitive).

-
System.StringdocumentId

The ID to assign to the new document. This is restricted to alphanumeric -with dashes and underscores. All values will be converted to lower-case.

-
System.Collections.Generic.IEnumerable<System.String>userDefinedTags

The user-defined tags that the job should have

+
System.Threading.Tasks.Task<GetMetadataResponse>

The skills taxonomy metadata

-
Returns
+
Exceptions
- + - - + + + + +
TypeDescriptionCondition
System.Threading.Tasks.Task<IndexDocumentResponse>TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

GetSkillsTaxonomyV2(TaxonomyFormat)

+

Get all skills in the taxonomy with associated IDs and descriptions in all supported languages.

+
+
+
Declaration
+
+
public async Task<GetSkillsTaxonomyResponse> GetSkillsTaxonomyV2(TaxonomyFormat format = TaxonomyFormat.json)
+
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
TaxonomyFormatformat

The format of the returned taxonomy. +
NOTE: if you set this to csv, only the CsvOutput will be populated.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<GetSkillsTaxonomyResponse>

The full structure of the Skills Taxonomy.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

+

Add a job to an existing index

+
+
+
Declaration
+
+
public async Task<IndexDocumentResponse> IndexDocument(ParsedJob job, string indexId, string documentId, IEnumerable<string> userDefinedTags = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedJobjob

A job generated by the Job Parser

+
System.StringindexId

The index the document should be added into (case-insensitive).

+
System.StringdocumentId

The ID to assign to the new document. This is restricted to alphanumeric +with dashes and underscores. All values will be converted to lower-case.

+
System.Collections.Generic.IEnumerable<System.String>userDefinedTags

The user-defined tags that the job should have

+
+
Returns
+ + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<IndexDocumentResponse>
@@ -3073,10 +3621,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedResume, String, String, IEnumerable<String>)

@@ -3157,10 +3705,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexJobInfo>, String)

@@ -3228,10 +3776,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexResumeInfo>, String)

@@ -3299,10 +3847,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupProfessions(IEnumerable<Int32>, String)

@@ -3374,10 +3922,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkills(IEnumerable<String>, String)

@@ -3447,10 +3995,83 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source + + +

LookupSkillsV2(IEnumerable<String>, String)

+

Get the details associated with given skills in the taxonomy.

+
+
+
Declaration
+
+
public async Task<LookupSkillCodesResponse> LookupSkillsV2(IEnumerable<string> skillIds, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<System.String>skillIds
System.StringoutputLanguage

The language to use for the output skill descriptions. Must be one of the supported +ISO codes. +
Default is 'en'.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<LookupSkillCodesResponse>

An array of skills objects.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source

Match(String, String, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3549,10 +4170,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedJob, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3645,10 +4266,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedResume, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3741,10 +4362,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeProfessions(IEnumerable<String>, String, String)

@@ -3823,10 +4444,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkills(IEnumerable<String>, String, String)

@@ -3905,10 +4526,67 @@
Exceptions
| - Improve this Doc + Improve this Doc + + + View Source + + +

NormalizeSkillsV2(IEnumerable<String>, String, String)

+
+
+
Declaration
+
+
public async Task<NormalizeSkillsResponse> NormalizeSkillsV2(IEnumerable<string> skills, string language = "en", string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<System.String>skills
System.Stringlanguage
System.StringoutputLanguage
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<NormalizeSkillsResponse>
+ + | + Improve this Doc - View Source + View Source

ParseJob(ParseRequest)

@@ -3986,10 +4664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResume(ParseRequest)

@@ -4067,10 +4745,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Search(IEnumerable<String>, FilterCriteria, SearchMatchSettings, PaginationSettings)

@@ -4098,21 +4776,850 @@
Parameters
- FilterCriteria - query -

The search query. A result must satisfy all of these criteria

+ FilterCriteria + query +

The search query. A result must satisfy all of these criteria

+ + + + SearchMatchSettings + settings +

The settings for this search request

+ + + + PaginationSettings + pagination +

Pagination settings. If not specified the default will be used

+ + + + +
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SearchResponse>
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurs

+
+ + | + Improve this Doc + + + View Source + + +

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

+

Determines how closely related one set of skills is to another. The service defines closely related skills +such that knowing a skill either implies knowledge about another skill, or should make it considerably +easier to acquire knowledge about that skill.

+
+
+
Declaration
+
+
public async Task<SkillsSimilarityScoreResponse> SkillsSimilarityScore(IEnumerable<SkillScore> skillSetA, IEnumerable<SkillScore> skillSetB)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<SkillScore>skillSetA

A set of skills (and optionally, scores) to score against the other set of skills. +The list can contain up to 50 skills.

+
System.Collections.Generic.IEnumerable<SkillScore>skillSetB

A set of skills (and optionally, scores) to score against the other set of skills. +The list can contain up to 50 skills.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SkillsSimilarityScoreResponse>

A score from [0 - 1] representing how closely related skill set A and skill set B are, based on the relations between skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SkillsSimilarityScoreV2(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

+

Determines how closely related one set of skills is to another. The service defines closely related skills +such that knowing a skill either implies knowledge about another skill, or should make it considerably +easier to acquire knowledge about that skill.

+
+
+
Declaration
+
+
public async Task<SkillsSimilarityScoreResponse> SkillsSimilarityScoreV2(IEnumerable<SkillScore> skillSetA, IEnumerable<SkillScore> skillSetB)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<SkillScore>skillSetA

A set of skills (and optionally, scores) to score against the other set of skills. +The list can contain up to 50 skills.

+
System.Collections.Generic.IEnumerable<SkillScore>skillSetB

A set of skills (and optionally, scores) to score against the other set of skills. +The list can contain up to 50 skills.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SkillsSimilarityScoreResponse>

A score from [0 - 1] representing how closely related skill set A and skill set B are, based on the relations between skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

+

Suggest professions based on a given set of skill IDs.

+
+
+
Declaration
+
+
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(IEnumerable<SkillScore> skills, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<SkillScore>skills

The skill IDs (and optionally, scores) used to return the most relevant professions. The list can contain up to 50 skill IDs.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

+

Suggest professions based on the skills within a given job.

+
+
+
Declaration
+
+
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedJobjob

The professions are suggested based on the skills within this job.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given job, based on skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

+

Suggest professions based on the skills within a given resume.

+
+
+
Declaration
+
+
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(ParsedResume resume, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null, bool weightSkillsByExperience = true)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedResumeresume

The professions are suggested based on the skills within this resume.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given resume, based on skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore>, Int32, Boolean, String)

+

Suggest professions based on a given set of skill IDs.

+
+
+
Declaration
+
+
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore> skills, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Collections.Generic.IEnumerable<SkillScore>skills

The skill IDs (and optionally, scores) used to return the most relevant professions. The list can contain up to 50 skill IDs.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String)

+

Suggest professions based on the skills within a given job.

+
+
+
Declaration
+
+
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkillsV2(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedJobjob

The professions are suggested based on the skills within this job.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given job, based on skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean)

+

Suggest professions based on the skills within a given resume.

+
+
+
Declaration
+
+
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkillsV2(ParsedResume resume, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null, bool weightSkillsByExperience = true)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
ParsedResumeresume

The professions are suggested based on the skills within this resume.

+
System.Int32limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

+
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

+
System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given resume, based on skills.

+
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

+

Takes a job title and suggests relevant skills.

+
+
+
Declaration
+
+
public async Task<SuggestSkillsFromJobTitleResponse> SuggestSkillsFromJobTitle(string jobTitle, string language = "en", int? limit = null)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.StringjobTitle

The title of the job for which skills are being suggested.

+
System.Stringlanguage

Language of the suggested skills in ISO 639-1 code format.

+
System.Nullable<System.Int32>limit

Maximum number of skills to suggest. If not specified this parameter defaults to 10. This value cannot exceed 50.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Threading.Tasks.Task<SuggestSkillsFromJobTitleResponse>
+
Exceptions
+ + + + + + + + + + + + + +
TypeCondition
TxException

Thrown when an API error occurred

+
+ + | + Improve this Doc + + + View Source + + +

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

+

Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.

+
+
+
Declaration
+
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(IEnumerable<int> professionCodeIDs, int limit = 10, string outputLanguage = null)
+
+
Parameters
+ + + + + + + + + + + + + - - - + + - - - + + @@ -4127,8 +5634,9 @@
Returns
- - + +
TypeNameDescription
System.Collections.Generic.IEnumerable<System.Int32>professionCodeIDs

The code IDs of the professions to suggest skills for.

SearchMatchSettingssettings

The settings for this search request

+
System.Int32limit

The maximum amount of suggested skills returned. The default is 10.

PaginationSettingspagination

Pagination settings. If not specified the default will be used

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

System.Threading.Tasks.Task<SearchResponse>System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

+
@@ -4143,28 +5651,26 @@
Exceptions
TxException -

Thrown when an API error occurs

+

Thrown when an API error occurred

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

-

Determines how closely related one set of skills is to another. The service defines closely related skills -such that knowing a skill either implies knowledge about another skill, or should make it considerably -easier to acquire knowledge about that skill.

+ +

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

+

Suggests skills related to a job based on the profession title in the job.

Declaration
-
public async Task<SkillsSimilarityScoreResponse> SkillsSimilarityScore(IEnumerable<SkillScore> skillSetA, IEnumerable<SkillScore> skillSetB)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(ParsedJob job, int limit = 10, string outputLanguage = null)
Parameters
@@ -4177,17 +5683,22 @@
Parameters
- - - + + - - - + + + + + + + @@ -4202,8 +5713,8 @@
Returns
- - + @@ -4226,19 +5737,19 @@
Exceptions
System.Collections.Generic.IEnumerable<SkillScore>skillSetA

A set of skills (and optionally, scores) to score against the other set of skills. -The list can contain up to 50 skills.

+
ParsedJobjob

The job to suggest skills for (based on the profession in the job)

System.Collections.Generic.IEnumerable<SkillScore>skillSetB

A set of skills (and optionally, scores) to score against the other set of skills. -The list can contain up to 50 skills.

+
System.Int32limit

The maximum amount of suggested skills returned. The default is 10.

+
System.StringoutputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

System.Threading.Tasks.Task<SkillsSimilarityScoreResponse>

A score from [0 - 1] representing how closely related skill set A and skill set B are, based on the relations between skills.

+
System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

-

Suggest professions based on a given set of skill IDs.

+ +

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

+

Suggests skills related to a resume based on the recent professions in the resume.

Declaration
-
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(IEnumerable<SkillScore> skills, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(ParsedResume resume, int limit = 10, string outputLanguage = null)
Parameters
@@ -4251,21 +5762,15 @@
Parameters
- - - + + - - - - - - @@ -4287,8 +5792,8 @@
Returns
- - + @@ -4311,19 +5816,19 @@
Exceptions
System.Collections.Generic.IEnumerable<SkillScore>skills

The skill IDs (and optionally, scores) used to return the most relevant professions. The list can contain up to 50 skill IDs.

+
ParsedResumeresume

The resume to suggest skills for (based on the professions in the resume)

System.Int32 limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

-
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+

The maximum amount of suggested skills returned. The default is 10.

System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given skills.

+
System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

-

Suggest professions based on the skills within a given job.

+ +

SuggestSkillsFromProfessionsV2(IEnumerable<Int32>, Int32, String, IEnumerable<String>)

+

Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.

Declaration
-
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(ParsedJob job, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessionsV2(IEnumerable<int> professionCodeIDs, int limit = 10, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4336,21 +5841,15 @@
Parameters
- - - + + - - - - - - @@ -4358,6 +5857,12 @@
Parameters
+ + + + + @@ -4372,8 +5877,8 @@
Returns
- - + @@ -4396,19 +5901,19 @@
Exceptions
ParsedJobjob

The professions are suggested based on the skills within this job.

+
System.Collections.Generic.IEnumerable<System.Int32>professionCodeIDs

The code IDs of the professions to suggest skills for.

System.Int32 limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

-
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+

The maximum amount of suggested skills returned. The default is 10.

outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported ISO codes.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given job, based on skills.

+
System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

-

Suggest professions based on the skills within a given resume.

+ +

SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable<String>)

+

Suggests skills related to a job based on the profession title in the job.

Declaration
-
public async Task<SuggestProfessionsResponse> SuggestProfessionsFromSkills(ParsedResume resume, int limit = 10, bool returnMissingSkills = false, string outputLanguage = null, bool weightSkillsByExperience = true)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessionsV2(ParsedJob job, int limit = 10, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4421,21 +5926,15 @@
Parameters
- - - + + - - - - - - @@ -4446,9 +5945,9 @@
Parameters
- - - + + @@ -4463,8 +5962,8 @@
Returns
- - + @@ -4487,19 +5986,19 @@
Exceptions
ParsedResumeresume

The professions are suggested based on the skills within this resume.

+
ParsedJobjob

The job to suggest skills for (based on the profession in the job)

System.Int32 limit

The maximum amount of professions returned. If not specified this parameter defaults to 10.

-
System.BooleanreturnMissingSkills

Flag to enable returning a list of missing skills per suggested profession.

+

The maximum amount of suggested skills returned. The default is 10.

System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

System.Threading.Tasks.Task<SuggestProfessionsResponse>

A list of professions most relevant to the given resume, based on skills.

+
System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

-

Takes a job title and suggests relevant skills.

+ +

SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable<String>)

+

Suggests skills related to a resume based on the recent professions in the resume.

Declaration
-
public async Task<SuggestSkillsFromJobTitleResponse> SuggestSkillsFromJobTitle(string jobTitle, string language = "en", int? limit = null)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessionsV2(ParsedResume resume, int limit = 10, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4512,21 +6011,28 @@
Parameters
- - - + + + + + + + - - + - - - + + @@ -4541,8 +6047,9 @@
Returns
- - + +
System.StringjobTitle

The title of the job for which skills are being suggested.

+
ParsedResumeresume

The resume to suggest skills for (based on the professions in the resume)

+
System.Int32limit

The maximum amount of suggested skills returned. The default is 10.

System.Stringlanguage

Language of the suggested skills in ISO 639-1 code format.

+
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported +ISO codes.

System.Nullable<System.Int32>limit

Maximum number of skills to suggest. If not specified this parameter defaults to 10. This value cannot exceed 50.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

System.Threading.Tasks.Task<SuggestSkillsFromJobTitleResponse>System.Threading.Tasks.Task<SuggestSkillsResponse>

A list of suggested skills.

+
@@ -4564,19 +6071,21 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

-

Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.

+ +

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

+

Returns skills related to a given skill or set of skills. The service returns closely related skills +in a sense that knowing the provided skills either implies knowledge about the returned related skills, +or should make it considerably easier to acquire knowledge about them.

Declaration
-
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(IEnumerable<int> professionCodeIDs, int limit = 10, string outputLanguage = null)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkills(IEnumerable<SkillScore> skills, int limit = 25, string outputLanguage = null)
Parameters
@@ -4589,15 +6098,16 @@
Parameters
- - - + + - @@ -4643,19 +6153,21 @@
Exceptions
System.Collections.Generic.IEnumerable<System.Int32>professionCodeIDs

The code IDs of the professions to suggest skills for.

+
System.Collections.Generic.IEnumerable<SkillScore>skills

The skills (and optionally, scores) for which the service should return related skills. +The list can contain up to 50 skills.

System.Int32 limit

The maximum amount of suggested skills returned. The default is 10.

+

The maximum amount of suggested skills returned. The maximum and default is 25.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

-

Suggests skills related to a job based on the profession title in the job.

+ +

SuggestSkillsFromSkills(ParsedJob, Int32, String)

+

Suggests skills related to a job (but not in the job) based on the skills in the job. The service returns +closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, +or should make it considerably easier to acquire knowledge about them.

Declaration
-
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(ParsedJob job, int limit = 10, string outputLanguage = null)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkills(ParsedJob job, int limit = 10, string outputLanguage = null)
Parameters
@@ -4670,13 +6182,13 @@
Parameters
- - @@ -4722,19 +6234,21 @@
Exceptions
ParsedJob job

The job to suggest skills for (based on the profession in the job)

+

The job to suggest skills for (based on the skills in the job)

System.Int32 limit

The maximum amount of suggested skills returned. The default is 10.

+

The maximum amount of suggested skills returned. The maximum and default is 25.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

-

Suggests skills related to a resume based on the recent professions in the resume.

+ +

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

+

Suggests skills related to a resume (but not in the resume) based on the skills in the resume. The service +returns closely related skills in a sense that knowing the provided skills either implies knowledge about +the returned related skills, or should make it considerably easier to acquire knowledge about them.

Declaration
-
public async Task<SuggestSkillsResponse> SuggestSkillsFromProfessions(ParsedResume resume, int limit = 10, string outputLanguage = null)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkills(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true)
Parameters
@@ -4749,13 +6263,13 @@
Parameters
- - @@ -4763,6 +6277,12 @@
Parameters
+ + + + + @@ -4801,13 +6321,13 @@
Exceptions
ParsedResume resume

The resume to suggest skills for (based on the professions in the resume)

+

The resume to suggest skills for (based on the skills in the resume)

System.Int32 limit

The maximum amount of suggested skills returned. The default is 10.

+

The maximum amount of suggested skills returned. The maximum and default is 10.

outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported ISO codes.

+
System.BooleanweightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

+ +

SuggestSkillsFromSkillsV2(IEnumerable<SkillScore>, Int32, String, IEnumerable<String>)

Returns skills related to a given skill or set of skills. The service returns closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably easier to acquire knowledge about them.

@@ -4815,7 +6335,7 @@

Declaration
-
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkills(IEnumerable<SkillScore> skills, int limit = 25, string outputLanguage = null)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkillsV2(IEnumerable<SkillScore> skills, int limit = 25, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4845,6 +6365,12 @@
Parameters
+ + + + + @@ -4883,13 +6409,13 @@
Exceptions
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported ISO codes.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromSkills(ParsedJob, Int32, String)

+ +

SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable<String>)

Suggests skills related to a job (but not in the job) based on the skills in the job. The service returns closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably easier to acquire knowledge about them.

@@ -4897,7 +6423,7 @@

Declaration
-
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkills(ParsedJob job, int limit = 10, string outputLanguage = null)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkillsV2(ParsedJob job, int limit = 10, string outputLanguage = null, IEnumerable<string> types = null)
Parameters
@@ -4926,6 +6452,12 @@
Parameters
+ + + + + @@ -4964,13 +6496,13 @@
Exceptions
outputLanguage

The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported ISO codes.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

| - Improve this Doc + Improve this Doc - View Source + View Source - -

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

+ +

SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable<String>)

Suggests skills related to a resume (but not in the resume) based on the skills in the resume. The service returns closely related skills in a sense that knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably easier to acquire knowledge about them.

@@ -4978,7 +6510,7 @@

Declaration
-
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkills(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true)
+
public async Task<SuggestSkillsResponse> SuggestSkillsFromSkillsV2(ParsedResume resume, int limit = 10, string outputLanguage = null, bool weightSkillsByExperience = true, IEnumerable<string> types = null)
Parameters
@@ -5013,6 +6545,12 @@
Parameters
+ + + + + @@ -5051,10 +6589,10 @@
Exceptions
System.Boolean weightSkillsByExperience

Whether or not to give a higher weight to skills that the candidate has more experience with. Default is true.

+
System.Collections.Generic.IEnumerable<System.String>types

If specified, only these types of skills will be returned. The following values are acceptable: Professional, IT, Language, Soft, Certfication, All.

| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateJobUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -5134,10 +6672,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateResumeUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -5230,10 +6768,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxClientSettings.html b/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html similarity index 91% rename from docs/sdk/Textkernel.Tx.TxClientSettings.html rename to docs/site-/sdk/Textkernel.Tx.TxClientSettings.html index c0a8acee..c9f84bea 100644 --- a/docs/sdk/Textkernel.Tx.TxClientSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AccountId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DataCenter

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ServiceKey

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TrackingTags

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/sdk/Textkernel.Tx.TxException.html b/docs/site-/sdk/Textkernel.Tx.TxException.html similarity index 91% rename from docs/sdk/Textkernel.Tx.TxException.html rename to docs/site-/sdk/Textkernel.Tx.TxException.html index 8bd2d962..e3f8c846 100644 --- a/docs/sdk/Textkernel.Tx.TxException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxException.html @@ -166,10 +166,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

HttpStatusCode

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequestBody

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResponseMessage

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionId

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TxErrorCode

@@ -331,10 +331,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxGeocodeJobException.html b/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html similarity index 96% rename from docs/sdk/Textkernel.Tx.TxGeocodeJobException.html rename to docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html index ff8a2054..f4650a43 100644 --- a/docs/sdk/Textkernel.Tx.TxGeocodeJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxGeocodeResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html similarity index 97% rename from docs/sdk/Textkernel.Tx.TxGeocodeResumeException.html rename to docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html index 750b0b40..17bec7a7 100644 --- a/docs/sdk/Textkernel.Tx.TxGeocodeResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxIndexJobException.html b/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html similarity index 96% rename from docs/sdk/Textkernel.Tx.TxIndexJobException.html rename to docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html index b6478345..3d084a63 100644 --- a/docs/sdk/Textkernel.Tx.TxIndexJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxIndexResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html similarity index 96% rename from docs/sdk/Textkernel.Tx.TxIndexResumeException.html rename to docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html index 81fde109..03c34564 100644 --- a/docs/sdk/Textkernel.Tx.TxIndexResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html similarity index 97% rename from docs/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html rename to docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html index d0988538..b63b178d 100644 --- a/docs/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html similarity index 97% rename from docs/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html rename to docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html index 7042a04e..31cf118c 100644 --- a/docs/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxUsableJobException.html b/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html similarity index 95% rename from docs/sdk/Textkernel.Tx.TxUsableJobException.html rename to docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html index cf141cc8..b25694cf 100644 --- a/docs/sdk/Textkernel.Tx.TxUsableJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html @@ -183,10 +183,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -224,10 +224,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.TxUsableResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html similarity index 95% rename from docs/sdk/Textkernel.Tx.TxUsableResumeException.html rename to docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html index d1078609..2a1ae25e 100644 --- a/docs/sdk/Textkernel.Tx.TxUsableResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html @@ -183,10 +183,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -224,10 +224,10 @@

Implements

diff --git a/docs/sdk/Textkernel.Tx.html b/docs/site-/sdk/Textkernel.Tx.html similarity index 100% rename from docs/sdk/Textkernel.Tx.html rename to docs/site-/sdk/Textkernel.Tx.html diff --git a/docs/sdk/index.html b/docs/site-/sdk/index.html similarity index 98% rename from docs/sdk/index.html rename to docs/site-/sdk/index.html index 2e4baa37..80b05faa 100644 --- a/docs/sdk/index.html +++ b/docs/site-/sdk/index.html @@ -133,7 +133,7 @@

Matching/Searching/Bimetric Scoring

diff --git a/docs/sdk/toc.html b/docs/site-/sdk/toc.html similarity index 100% rename from docs/sdk/toc.html rename to docs/site-/sdk/toc.html diff --git a/docs/search-stopwords.json b/docs/site-/search-stopwords.json similarity index 100% rename from docs/search-stopwords.json rename to docs/site-/search-stopwords.json diff --git a/docs/styles/docfx.css b/docs/site-/styles/docfx.css similarity index 100% rename from docs/styles/docfx.css rename to docs/site-/styles/docfx.css diff --git a/docs/styles/docfx.js b/docs/site-/styles/docfx.js similarity index 100% rename from docs/styles/docfx.js rename to docs/site-/styles/docfx.js diff --git a/docs/styles/docfx.vendor.css b/docs/site-/styles/docfx.vendor.css similarity index 100% rename from docs/styles/docfx.vendor.css rename to docs/site-/styles/docfx.vendor.css diff --git a/docs/styles/docfx.vendor.js b/docs/site-/styles/docfx.vendor.js similarity index 100% rename from docs/styles/docfx.vendor.js rename to docs/site-/styles/docfx.vendor.js diff --git a/docs/styles/lunr.js b/docs/site-/styles/lunr.js similarity index 100% rename from docs/styles/lunr.js rename to docs/site-/styles/lunr.js diff --git a/docs/styles/lunr.min.js b/docs/site-/styles/lunr.min.js similarity index 100% rename from docs/styles/lunr.min.js rename to docs/site-/styles/lunr.min.js diff --git a/docs/styles/main.css b/docs/site-/styles/main.css similarity index 100% rename from docs/styles/main.css rename to docs/site-/styles/main.css diff --git a/docs/styles/main.js b/docs/site-/styles/main.js similarity index 100% rename from docs/styles/main.js rename to docs/site-/styles/main.js diff --git a/docs/styles/search-worker.js b/docs/site-/styles/search-worker.js similarity index 100% rename from docs/styles/search-worker.js rename to docs/site-/styles/search-worker.js diff --git a/docs/styles/toggle-theme.js b/docs/site-/styles/toggle-theme.js similarity index 100% rename from docs/styles/toggle-theme.js rename to docs/site-/styles/toggle-theme.js diff --git a/docs/toc.html b/docs/site-/toc.html similarity index 100% rename from docs/toc.html rename to docs/site-/toc.html diff --git a/docs/xrefmap.yml b/docs/site-/xrefmap.yml similarity index 94% rename from docs/xrefmap.yml rename to docs/site-/xrefmap.yml index 69339d1d..9d36663a 100644 --- a/docs/xrefmap.yml +++ b/docs/site-/xrefmap.yml @@ -339,6 +339,22 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.AutocompleteSkill nameWithType: ITxClient.AutocompleteSkill +- uid: Textkernel.Tx.ITxClient.AutocompleteSkillV2(System.String,System.Collections.Generic.IEnumerable{System.String},System.String,System.Collections.Generic.IEnumerable{System.String},System.Int32) + name: AutocompleteSkillV2(String, IEnumerable, String, IEnumerable, Int32) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_AutocompleteSkillV2_System_String_System_Collections_Generic_IEnumerable_System_String__System_String_System_Collections_Generic_IEnumerable_System_String__System_Int32_ + commentId: M:Textkernel.Tx.ITxClient.AutocompleteSkillV2(System.String,System.Collections.Generic.IEnumerable{System.String},System.String,System.Collections.Generic.IEnumerable{System.String},System.Int32) + name.vb: AutocompleteSkillV2(String, IEnumerable(Of String), String, IEnumerable(Of String), Int32) + fullName: Textkernel.Tx.ITxClient.AutocompleteSkillV2(System.String, System.Collections.Generic.IEnumerable, System.String, System.Collections.Generic.IEnumerable, System.Int32) + fullName.vb: Textkernel.Tx.ITxClient.AutocompleteSkillV2(System.String, System.Collections.Generic.IEnumerable(Of System.String), System.String, System.Collections.Generic.IEnumerable(Of System.String), System.Int32) + nameWithType: ITxClient.AutocompleteSkillV2(String, IEnumerable, String, IEnumerable, Int32) + nameWithType.vb: ITxClient.AutocompleteSkillV2(String, IEnumerable(Of String), String, IEnumerable(Of String), Int32) +- uid: Textkernel.Tx.ITxClient.AutocompleteSkillV2* + name: AutocompleteSkillV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_AutocompleteSkillV2_ + commentId: Overload:Textkernel.Tx.ITxClient.AutocompleteSkillV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.AutocompleteSkillV2 + nameWithType: ITxClient.AutocompleteSkillV2 - uid: Textkernel.Tx.ITxClient.BimetricScore* name: BimetricScore href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_BimetricScore_ @@ -377,6 +393,19 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.CompareProfessions nameWithType: ITxClient.CompareProfessions +- uid: Textkernel.Tx.ITxClient.CompareProfessionsV2(System.Int32,System.Int32,System.String) + name: CompareProfessionsV2(Int32, Int32, String) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_CompareProfessionsV2_System_Int32_System_Int32_System_String_ + commentId: M:Textkernel.Tx.ITxClient.CompareProfessionsV2(System.Int32,System.Int32,System.String) + fullName: Textkernel.Tx.ITxClient.CompareProfessionsV2(System.Int32, System.Int32, System.String) + nameWithType: ITxClient.CompareProfessionsV2(Int32, Int32, String) +- uid: Textkernel.Tx.ITxClient.CompareProfessionsV2* + name: CompareProfessionsV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_CompareProfessionsV2_ + commentId: Overload:Textkernel.Tx.ITxClient.CompareProfessionsV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.CompareProfessionsV2 + nameWithType: ITxClient.CompareProfessionsV2 - uid: Textkernel.Tx.ITxClient.CompareSkillsToProfession(System.Int32,System.String,Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore[]) name: CompareSkillsToProfession(Int32, String, SkillScore[]) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_CompareSkillsToProfession_System_Int32_System_String_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore___ @@ -399,6 +428,28 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.CompareSkillsToProfession nameWithType: ITxClient.CompareSkillsToProfession +- uid: Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2(System.Int32,System.String,Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore[]) + name: CompareSkillsToProfessionV2(Int32, String, SkillScore[]) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_CompareSkillsToProfessionV2_System_Int32_System_String_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore___ + commentId: M:Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2(System.Int32,System.String,Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore[]) + name.vb: CompareSkillsToProfessionV2(Int32, String, SkillScore()) + fullName: Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2(System.Int32, System.String, Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore[]) + fullName.vb: Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2(System.Int32, System.String, Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore()) + nameWithType: ITxClient.CompareSkillsToProfessionV2(Int32, String, SkillScore[]) + nameWithType.vb: ITxClient.CompareSkillsToProfessionV2(Int32, String, SkillScore()) +- uid: Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Boolean) + name: CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_CompareSkillsToProfessionV2_Textkernel_Tx_Models_Resume_ParsedResume_System_Int32_System_String_System_Boolean_ + commentId: M:Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Boolean) + fullName: Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Boolean) + nameWithType: ITxClient.CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean) +- uid: Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2* + name: CompareSkillsToProfessionV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_CompareSkillsToProfessionV2_ + commentId: Overload:Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.CompareSkillsToProfessionV2 + nameWithType: ITxClient.CompareSkillsToProfessionV2 - uid: Textkernel.Tx.ITxClient.CreateIndex(Textkernel.Tx.Models.Matching.IndexType,System.String) name: CreateIndex(IndexType, String) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_CreateIndex_Textkernel_Tx_Models_Matching_IndexType_System_String_ @@ -467,6 +518,19 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.ExtractSkills nameWithType: ITxClient.ExtractSkills +- uid: Textkernel.Tx.ITxClient.ExtractSkillsV2(System.String,System.String,System.String,System.Single) + name: ExtractSkillsV2(String, String, String, Single) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_ExtractSkillsV2_System_String_System_String_System_String_System_Single_ + commentId: M:Textkernel.Tx.ITxClient.ExtractSkillsV2(System.String,System.String,System.String,System.Single) + fullName: Textkernel.Tx.ITxClient.ExtractSkillsV2(System.String, System.String, System.String, System.Single) + nameWithType: ITxClient.ExtractSkillsV2(String, String, String, Single) +- uid: Textkernel.Tx.ITxClient.ExtractSkillsV2* + name: ExtractSkillsV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_ExtractSkillsV2_ + commentId: Overload:Textkernel.Tx.ITxClient.ExtractSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.ExtractSkillsV2 + nameWithType: ITxClient.ExtractSkillsV2 - uid: Textkernel.Tx.ITxClient.FormatResume(Textkernel.Tx.Models.API.Formatter.FormatResumeRequest) name: FormatResume(FormatResumeRequest) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_FormatResume_Textkernel_Tx_Models_API_Formatter_FormatResumeRequest_ @@ -696,6 +760,32 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.GetSkillsTaxonomyMetadata nameWithType: ITxClient.GetSkillsTaxonomyMetadata +- uid: Textkernel.Tx.ITxClient.GetSkillsTaxonomyMetadataV2 + name: GetSkillsTaxonomyMetadataV2() + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_GetSkillsTaxonomyMetadataV2 + commentId: M:Textkernel.Tx.ITxClient.GetSkillsTaxonomyMetadataV2 + fullName: Textkernel.Tx.ITxClient.GetSkillsTaxonomyMetadataV2() + nameWithType: ITxClient.GetSkillsTaxonomyMetadataV2() +- uid: Textkernel.Tx.ITxClient.GetSkillsTaxonomyMetadataV2* + name: GetSkillsTaxonomyMetadataV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_GetSkillsTaxonomyMetadataV2_ + commentId: Overload:Textkernel.Tx.ITxClient.GetSkillsTaxonomyMetadataV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.GetSkillsTaxonomyMetadataV2 + nameWithType: ITxClient.GetSkillsTaxonomyMetadataV2 +- uid: Textkernel.Tx.ITxClient.GetSkillsTaxonomyV2(Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat) + name: GetSkillsTaxonomyV2(TaxonomyFormat) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_GetSkillsTaxonomyV2_Textkernel_Tx_Models_API_DataEnrichment_TaxonomyFormat_ + commentId: M:Textkernel.Tx.ITxClient.GetSkillsTaxonomyV2(Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat) + fullName: Textkernel.Tx.ITxClient.GetSkillsTaxonomyV2(Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat) + nameWithType: ITxClient.GetSkillsTaxonomyV2(TaxonomyFormat) +- uid: Textkernel.Tx.ITxClient.GetSkillsTaxonomyV2* + name: GetSkillsTaxonomyV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_GetSkillsTaxonomyV2_ + commentId: Overload:Textkernel.Tx.ITxClient.GetSkillsTaxonomyV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.GetSkillsTaxonomyV2 + nameWithType: ITxClient.GetSkillsTaxonomyV2 - uid: Textkernel.Tx.ITxClient.IndexDocument(Textkernel.Tx.Models.Job.ParsedJob,System.String,System.String,System.Collections.Generic.IEnumerable{System.String}) name: IndexDocument(ParsedJob, String, String, IEnumerable) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_IndexDocument_Textkernel_Tx_Models_Job_ParsedJob_System_String_System_String_System_Collections_Generic_IEnumerable_System_String__ @@ -778,6 +868,22 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.LookupSkills nameWithType: ITxClient.LookupSkills +- uid: Textkernel.Tx.ITxClient.LookupSkillsV2(System.Collections.Generic.IEnumerable{System.String},System.String) + name: LookupSkillsV2(IEnumerable, String) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_LookupSkillsV2_System_Collections_Generic_IEnumerable_System_String__System_String_ + commentId: M:Textkernel.Tx.ITxClient.LookupSkillsV2(System.Collections.Generic.IEnumerable{System.String},System.String) + name.vb: LookupSkillsV2(IEnumerable(Of String), String) + fullName: Textkernel.Tx.ITxClient.LookupSkillsV2(System.Collections.Generic.IEnumerable, System.String) + fullName.vb: Textkernel.Tx.ITxClient.LookupSkillsV2(System.Collections.Generic.IEnumerable(Of System.String), System.String) + nameWithType: ITxClient.LookupSkillsV2(IEnumerable, String) + nameWithType.vb: ITxClient.LookupSkillsV2(IEnumerable(Of String), String) +- uid: Textkernel.Tx.ITxClient.LookupSkillsV2* + name: LookupSkillsV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_LookupSkillsV2_ + commentId: Overload:Textkernel.Tx.ITxClient.LookupSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.LookupSkillsV2 + nameWithType: ITxClient.LookupSkillsV2 - uid: Textkernel.Tx.ITxClient.Match(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Textkernel.Tx.Models.API.Matching.CategoryWeights,Textkernel.Tx.Models.API.Matching.Request.FilterCriteria,Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings,System.Int32) name: Match(String, String, IEnumerable, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_Match_System_String_System_String_System_Collections_Generic_IEnumerable_System_String__Textkernel_Tx_Models_API_Matching_CategoryWeights_Textkernel_Tx_Models_API_Matching_Request_FilterCriteria_Textkernel_Tx_Models_API_Matching_Request_SearchMatchSettings_System_Int32_ @@ -902,6 +1008,22 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.SkillsSimilarityScore nameWithType: ITxClient.SkillsSimilarityScore +- uid: Textkernel.Tx.ITxClient.SkillsSimilarityScoreV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore}) + name: SkillsSimilarityScoreV2(IEnumerable, IEnumerable) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SkillsSimilarityScoreV2_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__ + commentId: M:Textkernel.Tx.ITxClient.SkillsSimilarityScoreV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore}) + name.vb: SkillsSimilarityScoreV2(IEnumerable(Of SkillScore), IEnumerable(Of SkillScore)) + fullName: Textkernel.Tx.ITxClient.SkillsSimilarityScoreV2(System.Collections.Generic.IEnumerable, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.ITxClient.SkillsSimilarityScoreV2(System.Collections.Generic.IEnumerable(Of Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore), System.Collections.Generic.IEnumerable(Of Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore)) + nameWithType: ITxClient.SkillsSimilarityScoreV2(IEnumerable, IEnumerable) + nameWithType.vb: ITxClient.SkillsSimilarityScoreV2(IEnumerable(Of SkillScore), IEnumerable(Of SkillScore)) +- uid: Textkernel.Tx.ITxClient.SkillsSimilarityScoreV2* + name: SkillsSimilarityScoreV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SkillsSimilarityScoreV2_ + commentId: Overload:Textkernel.Tx.ITxClient.SkillsSimilarityScoreV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.SkillsSimilarityScoreV2 + nameWithType: ITxClient.SkillsSimilarityScoreV2 - uid: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkills(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.Boolean,System.String) name: SuggestProfessionsFromSkills(IEnumerable, Int32, Boolean, String) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestProfessionsFromSkills_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Int32_System_Boolean_System_String_ @@ -930,6 +1052,34 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkills nameWithType: ITxClient.SuggestProfessionsFromSkills +- uid: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.Boolean,System.String) + name: SuggestProfessionsFromSkillsV2(IEnumerable, Int32, Boolean, String) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestProfessionsFromSkillsV2_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Int32_System_Boolean_System_String_ + commentId: M:Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.Boolean,System.String) + name.vb: SuggestProfessionsFromSkillsV2(IEnumerable(Of SkillScore), Int32, Boolean, String) + fullName: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(System.Collections.Generic.IEnumerable, System.Int32, System.Boolean, System.String) + fullName.vb: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(System.Collections.Generic.IEnumerable(Of Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore), System.Int32, System.Boolean, System.String) + nameWithType: ITxClient.SuggestProfessionsFromSkillsV2(IEnumerable, Int32, Boolean, String) + nameWithType.vb: ITxClient.SuggestProfessionsFromSkillsV2(IEnumerable(Of SkillScore), Int32, Boolean, String) +- uid: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.Boolean,System.String) + name: SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestProfessionsFromSkillsV2_Textkernel_Tx_Models_Job_ParsedJob_System_Int32_System_Boolean_System_String_ + commentId: M:Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.Boolean,System.String) + fullName: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.Boolean, System.String) + nameWithType: ITxClient.SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String) +- uid: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.Boolean,System.String,System.Boolean) + name: SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestProfessionsFromSkillsV2_Textkernel_Tx_Models_Resume_ParsedResume_System_Int32_System_Boolean_System_String_System_Boolean_ + commentId: M:Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.Boolean,System.String,System.Boolean) + fullName: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.Boolean, System.String, System.Boolean) + nameWithType: ITxClient.SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean) +- uid: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2* + name: SuggestProfessionsFromSkillsV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestProfessionsFromSkillsV2_ + commentId: Overload:Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.SuggestProfessionsFromSkillsV2 + nameWithType: ITxClient.SuggestProfessionsFromSkillsV2 - uid: Textkernel.Tx.ITxClient.SuggestSkillsFromJobTitle(System.String,System.String,System.Nullable{System.Int32}) name: SuggestSkillsFromJobTitle(String, String, Nullable) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromJobTitle_System_String_System_String_System_Nullable_System_Int32__ @@ -974,6 +1124,40 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessions nameWithType: ITxClient.SuggestSkillsFromProfessions +- uid: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(System.Collections.Generic.IEnumerable{System.Int32},System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromProfessionsV2(IEnumerable, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromProfessionsV2_System_Collections_Generic_IEnumerable_System_Int32__System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(System.Collections.Generic.IEnumerable{System.Int32},System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromProfessionsV2(IEnumerable(Of Int32), Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(System.Collections.Generic.IEnumerable, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(System.Collections.Generic.IEnumerable(Of System.Int32), System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: ITxClient.SuggestSkillsFromProfessionsV2(IEnumerable, Int32, String, IEnumerable) + nameWithType.vb: ITxClient.SuggestSkillsFromProfessionsV2(IEnumerable(Of Int32), Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromProfessionsV2_Textkernel_Tx_Models_Job_ParsedJob_System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: ITxClient.SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable) + nameWithType.vb: ITxClient.SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromProfessionsV2_Textkernel_Tx_Models_Resume_ParsedResume_System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: ITxClient.SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable) + nameWithType.vb: ITxClient.SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2* + name: SuggestSkillsFromProfessionsV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromProfessionsV2_ + commentId: Overload:Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromProfessionsV2 + nameWithType: ITxClient.SuggestSkillsFromProfessionsV2 - uid: Textkernel.Tx.ITxClient.SuggestSkillsFromSkills(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.String) name: SuggestSkillsFromSkills(IEnumerable, Int32, String) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromSkills_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Int32_System_String_ @@ -1002,6 +1186,40 @@ references: isSpec: "True" fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromSkills nameWithType: ITxClient.SuggestSkillsFromSkills +- uid: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromSkillsV2(IEnumerable, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromSkillsV2_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromSkillsV2(IEnumerable(Of SkillScore), Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(System.Collections.Generic.IEnumerable, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(System.Collections.Generic.IEnumerable(Of Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore), System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: ITxClient.SuggestSkillsFromSkillsV2(IEnumerable, Int32, String, IEnumerable) + nameWithType.vb: ITxClient.SuggestSkillsFromSkillsV2(IEnumerable(Of SkillScore), Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromSkillsV2_Textkernel_Tx_Models_Job_ParsedJob_System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: ITxClient.SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable) + nameWithType.vb: ITxClient.SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Boolean,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable) + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromSkillsV2_Textkernel_Tx_Models_Resume_ParsedResume_System_Int32_System_String_System_Boolean_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Boolean,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable(Of String)) + fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Boolean, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Boolean, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: ITxClient.SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable) + nameWithType.vb: ITxClient.SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable(Of String)) +- uid: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2* + name: SuggestSkillsFromSkillsV2 + href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_SuggestSkillsFromSkillsV2_ + commentId: Overload:Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.ITxClient.SuggestSkillsFromSkillsV2 + nameWithType: ITxClient.SuggestSkillsFromSkillsV2 - uid: Textkernel.Tx.ITxClient.UpdateJobUserDefinedTags(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod) name: UpdateJobUserDefinedTags(String, String, IEnumerable, UserDefinedTagsMethod) href: sdk/Textkernel.Tx.ITxClient.html#Textkernel_Tx_ITxClient_UpdateJobUserDefinedTags_System_String_System_String_System_Collections_Generic_IEnumerable_System_String__Textkernel_Tx_Models_API_Indexes_UserDefinedTagsMethod_ @@ -1909,6 +2127,19 @@ references: isSpec: "True" fullName: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.ProfessionCodeIds nameWithType: SuggestSkillsFromProfessionsRequest.ProfessionCodeIds +- uid: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.Types + name: Types + href: sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html#Textkernel_Tx_Models_API_DataEnrichment_Ontology_Request_SuggestSkillsFromProfessionsRequest_Types + commentId: P:Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.Types + fullName: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.Types + nameWithType: SuggestSkillsFromProfessionsRequest.Types +- uid: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.Types* + name: Types + href: sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html#Textkernel_Tx_Models_API_DataEnrichment_Ontology_Request_SuggestSkillsFromProfessionsRequest_Types_ + commentId: Overload:Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.Types + isSpec: "True" + fullName: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.Types + nameWithType: SuggestSkillsFromProfessionsRequest.Types - uid: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest name: SuggestSkillsFromSkillsRequest href: sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html @@ -1954,6 +2185,19 @@ references: isSpec: "True" fullName: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.Skills nameWithType: SuggestSkillsFromSkillsRequest.Skills +- uid: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.Types + name: Types + href: sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html#Textkernel_Tx_Models_API_DataEnrichment_Ontology_Request_SuggestSkillsFromSkillsRequest_Types + commentId: P:Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.Types + fullName: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.Types + nameWithType: SuggestSkillsFromSkillsRequest.Types +- uid: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.Types* + name: Types + href: sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html#Textkernel_Tx_Models_API_DataEnrichment_Ontology_Request_SuggestSkillsFromSkillsRequest_Types_ + commentId: Overload:Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.Types + isSpec: "True" + fullName: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.Types + nameWithType: SuggestSkillsFromSkillsRequest.Types - uid: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response name: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response href: sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.html @@ -14728,6 +14972,22 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.AutocompleteSkill nameWithType: TxClient.AutocompleteSkill +- uid: Textkernel.Tx.TxClient.AutocompleteSkillV2(System.String,System.Collections.Generic.IEnumerable{System.String},System.String,System.Collections.Generic.IEnumerable{System.String},System.Int32) + name: AutocompleteSkillV2(String, IEnumerable, String, IEnumerable, Int32) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_AutocompleteSkillV2_System_String_System_Collections_Generic_IEnumerable_System_String__System_String_System_Collections_Generic_IEnumerable_System_String__System_Int32_ + commentId: M:Textkernel.Tx.TxClient.AutocompleteSkillV2(System.String,System.Collections.Generic.IEnumerable{System.String},System.String,System.Collections.Generic.IEnumerable{System.String},System.Int32) + name.vb: AutocompleteSkillV2(String, IEnumerable(Of String), String, IEnumerable(Of String), Int32) + fullName: Textkernel.Tx.TxClient.AutocompleteSkillV2(System.String, System.Collections.Generic.IEnumerable, System.String, System.Collections.Generic.IEnumerable, System.Int32) + fullName.vb: Textkernel.Tx.TxClient.AutocompleteSkillV2(System.String, System.Collections.Generic.IEnumerable(Of System.String), System.String, System.Collections.Generic.IEnumerable(Of System.String), System.Int32) + nameWithType: TxClient.AutocompleteSkillV2(String, IEnumerable, String, IEnumerable, Int32) + nameWithType.vb: TxClient.AutocompleteSkillV2(String, IEnumerable(Of String), String, IEnumerable(Of String), Int32) +- uid: Textkernel.Tx.TxClient.AutocompleteSkillV2* + name: AutocompleteSkillV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_AutocompleteSkillV2_ + commentId: Overload:Textkernel.Tx.TxClient.AutocompleteSkillV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.AutocompleteSkillV2 + nameWithType: TxClient.AutocompleteSkillV2 - uid: Textkernel.Tx.TxClient.BimetricScore* name: BimetricScore href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_BimetricScore_ @@ -14766,6 +15026,19 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.CompareProfessions nameWithType: TxClient.CompareProfessions +- uid: Textkernel.Tx.TxClient.CompareProfessionsV2(System.Int32,System.Int32,System.String) + name: CompareProfessionsV2(Int32, Int32, String) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_CompareProfessionsV2_System_Int32_System_Int32_System_String_ + commentId: M:Textkernel.Tx.TxClient.CompareProfessionsV2(System.Int32,System.Int32,System.String) + fullName: Textkernel.Tx.TxClient.CompareProfessionsV2(System.Int32, System.Int32, System.String) + nameWithType: TxClient.CompareProfessionsV2(Int32, Int32, String) +- uid: Textkernel.Tx.TxClient.CompareProfessionsV2* + name: CompareProfessionsV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_CompareProfessionsV2_ + commentId: Overload:Textkernel.Tx.TxClient.CompareProfessionsV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.CompareProfessionsV2 + nameWithType: TxClient.CompareProfessionsV2 - uid: Textkernel.Tx.TxClient.CompareSkillsToProfession(System.Int32,System.String,Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore[]) name: CompareSkillsToProfession(Int32, String, SkillScore[]) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_CompareSkillsToProfession_System_Int32_System_String_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore___ @@ -14788,6 +15061,28 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.CompareSkillsToProfession nameWithType: TxClient.CompareSkillsToProfession +- uid: Textkernel.Tx.TxClient.CompareSkillsToProfessionV2(System.Int32,System.String,Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore[]) + name: CompareSkillsToProfessionV2(Int32, String, SkillScore[]) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_CompareSkillsToProfessionV2_System_Int32_System_String_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore___ + commentId: M:Textkernel.Tx.TxClient.CompareSkillsToProfessionV2(System.Int32,System.String,Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore[]) + name.vb: CompareSkillsToProfessionV2(Int32, String, SkillScore()) + fullName: Textkernel.Tx.TxClient.CompareSkillsToProfessionV2(System.Int32, System.String, Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore[]) + fullName.vb: Textkernel.Tx.TxClient.CompareSkillsToProfessionV2(System.Int32, System.String, Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore()) + nameWithType: TxClient.CompareSkillsToProfessionV2(Int32, String, SkillScore[]) + nameWithType.vb: TxClient.CompareSkillsToProfessionV2(Int32, String, SkillScore()) +- uid: Textkernel.Tx.TxClient.CompareSkillsToProfessionV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Boolean) + name: CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_CompareSkillsToProfessionV2_Textkernel_Tx_Models_Resume_ParsedResume_System_Int32_System_String_System_Boolean_ + commentId: M:Textkernel.Tx.TxClient.CompareSkillsToProfessionV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Boolean) + fullName: Textkernel.Tx.TxClient.CompareSkillsToProfessionV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Boolean) + nameWithType: TxClient.CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean) +- uid: Textkernel.Tx.TxClient.CompareSkillsToProfessionV2* + name: CompareSkillsToProfessionV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_CompareSkillsToProfessionV2_ + commentId: Overload:Textkernel.Tx.TxClient.CompareSkillsToProfessionV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.CompareSkillsToProfessionV2 + nameWithType: TxClient.CompareSkillsToProfessionV2 - uid: Textkernel.Tx.TxClient.CreateIndex(Textkernel.Tx.Models.Matching.IndexType,System.String) name: CreateIndex(IndexType, String) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_CreateIndex_Textkernel_Tx_Models_Matching_IndexType_System_String_ @@ -14869,6 +15164,19 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.ExtractSkills nameWithType: TxClient.ExtractSkills +- uid: Textkernel.Tx.TxClient.ExtractSkillsV2(System.String,System.String,System.String,System.Single) + name: ExtractSkillsV2(String, String, String, Single) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_ExtractSkillsV2_System_String_System_String_System_String_System_Single_ + commentId: M:Textkernel.Tx.TxClient.ExtractSkillsV2(System.String,System.String,System.String,System.Single) + fullName: Textkernel.Tx.TxClient.ExtractSkillsV2(System.String, System.String, System.String, System.Single) + nameWithType: TxClient.ExtractSkillsV2(String, String, String, Single) +- uid: Textkernel.Tx.TxClient.ExtractSkillsV2* + name: ExtractSkillsV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_ExtractSkillsV2_ + commentId: Overload:Textkernel.Tx.TxClient.ExtractSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.ExtractSkillsV2 + nameWithType: TxClient.ExtractSkillsV2 - uid: Textkernel.Tx.TxClient.FormatResume(Textkernel.Tx.Models.API.Formatter.FormatResumeRequest) name: FormatResume(FormatResumeRequest) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_FormatResume_Textkernel_Tx_Models_API_Formatter_FormatResumeRequest_ @@ -15098,6 +15406,32 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.GetSkillsTaxonomyMetadata nameWithType: TxClient.GetSkillsTaxonomyMetadata +- uid: Textkernel.Tx.TxClient.GetSkillsTaxonomyMetadataV2 + name: GetSkillsTaxonomyMetadataV2() + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_GetSkillsTaxonomyMetadataV2 + commentId: M:Textkernel.Tx.TxClient.GetSkillsTaxonomyMetadataV2 + fullName: Textkernel.Tx.TxClient.GetSkillsTaxonomyMetadataV2() + nameWithType: TxClient.GetSkillsTaxonomyMetadataV2() +- uid: Textkernel.Tx.TxClient.GetSkillsTaxonomyMetadataV2* + name: GetSkillsTaxonomyMetadataV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_GetSkillsTaxonomyMetadataV2_ + commentId: Overload:Textkernel.Tx.TxClient.GetSkillsTaxonomyMetadataV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.GetSkillsTaxonomyMetadataV2 + nameWithType: TxClient.GetSkillsTaxonomyMetadataV2 +- uid: Textkernel.Tx.TxClient.GetSkillsTaxonomyV2(Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat) + name: GetSkillsTaxonomyV2(TaxonomyFormat) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_GetSkillsTaxonomyV2_Textkernel_Tx_Models_API_DataEnrichment_TaxonomyFormat_ + commentId: M:Textkernel.Tx.TxClient.GetSkillsTaxonomyV2(Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat) + fullName: Textkernel.Tx.TxClient.GetSkillsTaxonomyV2(Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat) + nameWithType: TxClient.GetSkillsTaxonomyV2(TaxonomyFormat) +- uid: Textkernel.Tx.TxClient.GetSkillsTaxonomyV2* + name: GetSkillsTaxonomyV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_GetSkillsTaxonomyV2_ + commentId: Overload:Textkernel.Tx.TxClient.GetSkillsTaxonomyV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.GetSkillsTaxonomyV2 + nameWithType: TxClient.GetSkillsTaxonomyV2 - uid: Textkernel.Tx.TxClient.IndexDocument(Textkernel.Tx.Models.Job.ParsedJob,System.String,System.String,System.Collections.Generic.IEnumerable{System.String}) name: IndexDocument(ParsedJob, String, String, IEnumerable) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_IndexDocument_Textkernel_Tx_Models_Job_ParsedJob_System_String_System_String_System_Collections_Generic_IEnumerable_System_String__ @@ -15180,6 +15514,22 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.LookupSkills nameWithType: TxClient.LookupSkills +- uid: Textkernel.Tx.TxClient.LookupSkillsV2(System.Collections.Generic.IEnumerable{System.String},System.String) + name: LookupSkillsV2(IEnumerable, String) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_LookupSkillsV2_System_Collections_Generic_IEnumerable_System_String__System_String_ + commentId: M:Textkernel.Tx.TxClient.LookupSkillsV2(System.Collections.Generic.IEnumerable{System.String},System.String) + name.vb: LookupSkillsV2(IEnumerable(Of String), String) + fullName: Textkernel.Tx.TxClient.LookupSkillsV2(System.Collections.Generic.IEnumerable, System.String) + fullName.vb: Textkernel.Tx.TxClient.LookupSkillsV2(System.Collections.Generic.IEnumerable(Of System.String), System.String) + nameWithType: TxClient.LookupSkillsV2(IEnumerable, String) + nameWithType.vb: TxClient.LookupSkillsV2(IEnumerable(Of String), String) +- uid: Textkernel.Tx.TxClient.LookupSkillsV2* + name: LookupSkillsV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_LookupSkillsV2_ + commentId: Overload:Textkernel.Tx.TxClient.LookupSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.LookupSkillsV2 + nameWithType: TxClient.LookupSkillsV2 - uid: Textkernel.Tx.TxClient.Match(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Textkernel.Tx.Models.API.Matching.CategoryWeights,Textkernel.Tx.Models.API.Matching.Request.FilterCriteria,Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings,System.Int32) name: Match(String, String, IEnumerable, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_Match_System_String_System_String_System_Collections_Generic_IEnumerable_System_String__Textkernel_Tx_Models_API_Matching_CategoryWeights_Textkernel_Tx_Models_API_Matching_Request_FilterCriteria_Textkernel_Tx_Models_API_Matching_Request_SearchMatchSettings_System_Int32_ @@ -15246,6 +15596,22 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.NormalizeSkills nameWithType: TxClient.NormalizeSkills +- uid: Textkernel.Tx.TxClient.NormalizeSkillsV2(System.Collections.Generic.IEnumerable{System.String},System.String,System.String) + name: NormalizeSkillsV2(IEnumerable, String, String) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_NormalizeSkillsV2_System_Collections_Generic_IEnumerable_System_String__System_String_System_String_ + commentId: M:Textkernel.Tx.TxClient.NormalizeSkillsV2(System.Collections.Generic.IEnumerable{System.String},System.String,System.String) + name.vb: NormalizeSkillsV2(IEnumerable(Of String), String, String) + fullName: Textkernel.Tx.TxClient.NormalizeSkillsV2(System.Collections.Generic.IEnumerable, System.String, System.String) + fullName.vb: Textkernel.Tx.TxClient.NormalizeSkillsV2(System.Collections.Generic.IEnumerable(Of System.String), System.String, System.String) + nameWithType: TxClient.NormalizeSkillsV2(IEnumerable, String, String) + nameWithType.vb: TxClient.NormalizeSkillsV2(IEnumerable(Of String), String, String) +- uid: Textkernel.Tx.TxClient.NormalizeSkillsV2* + name: NormalizeSkillsV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_NormalizeSkillsV2_ + commentId: Overload:Textkernel.Tx.TxClient.NormalizeSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.NormalizeSkillsV2 + nameWithType: TxClient.NormalizeSkillsV2 - uid: Textkernel.Tx.TxClient.ParseJob(Textkernel.Tx.Models.API.Parsing.ParseRequest) name: ParseJob(ParseRequest) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_ParseJob_Textkernel_Tx_Models_API_Parsing_ParseRequest_ @@ -15317,6 +15683,22 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.SkillsSimilarityScore nameWithType: TxClient.SkillsSimilarityScore +- uid: Textkernel.Tx.TxClient.SkillsSimilarityScoreV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore}) + name: SkillsSimilarityScoreV2(IEnumerable, IEnumerable) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SkillsSimilarityScoreV2_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__ + commentId: M:Textkernel.Tx.TxClient.SkillsSimilarityScoreV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore}) + name.vb: SkillsSimilarityScoreV2(IEnumerable(Of SkillScore), IEnumerable(Of SkillScore)) + fullName: Textkernel.Tx.TxClient.SkillsSimilarityScoreV2(System.Collections.Generic.IEnumerable, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.TxClient.SkillsSimilarityScoreV2(System.Collections.Generic.IEnumerable(Of Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore), System.Collections.Generic.IEnumerable(Of Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore)) + nameWithType: TxClient.SkillsSimilarityScoreV2(IEnumerable, IEnumerable) + nameWithType.vb: TxClient.SkillsSimilarityScoreV2(IEnumerable(Of SkillScore), IEnumerable(Of SkillScore)) +- uid: Textkernel.Tx.TxClient.SkillsSimilarityScoreV2* + name: SkillsSimilarityScoreV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SkillsSimilarityScoreV2_ + commentId: Overload:Textkernel.Tx.TxClient.SkillsSimilarityScoreV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.SkillsSimilarityScoreV2 + nameWithType: TxClient.SkillsSimilarityScoreV2 - uid: Textkernel.Tx.TxClient.SuggestProfessionsFromSkills(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.Boolean,System.String) name: SuggestProfessionsFromSkills(IEnumerable, Int32, Boolean, String) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestProfessionsFromSkills_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Int32_System_Boolean_System_String_ @@ -15345,6 +15727,34 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.SuggestProfessionsFromSkills nameWithType: TxClient.SuggestProfessionsFromSkills +- uid: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.Boolean,System.String) + name: SuggestProfessionsFromSkillsV2(IEnumerable, Int32, Boolean, String) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestProfessionsFromSkillsV2_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Int32_System_Boolean_System_String_ + commentId: M:Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.Boolean,System.String) + name.vb: SuggestProfessionsFromSkillsV2(IEnumerable(Of SkillScore), Int32, Boolean, String) + fullName: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(System.Collections.Generic.IEnumerable, System.Int32, System.Boolean, System.String) + fullName.vb: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(System.Collections.Generic.IEnumerable(Of Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore), System.Int32, System.Boolean, System.String) + nameWithType: TxClient.SuggestProfessionsFromSkillsV2(IEnumerable, Int32, Boolean, String) + nameWithType.vb: TxClient.SuggestProfessionsFromSkillsV2(IEnumerable(Of SkillScore), Int32, Boolean, String) +- uid: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.Boolean,System.String) + name: SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestProfessionsFromSkillsV2_Textkernel_Tx_Models_Job_ParsedJob_System_Int32_System_Boolean_System_String_ + commentId: M:Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.Boolean,System.String) + fullName: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.Boolean, System.String) + nameWithType: TxClient.SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String) +- uid: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.Boolean,System.String,System.Boolean) + name: SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestProfessionsFromSkillsV2_Textkernel_Tx_Models_Resume_ParsedResume_System_Int32_System_Boolean_System_String_System_Boolean_ + commentId: M:Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.Boolean,System.String,System.Boolean) + fullName: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.Boolean, System.String, System.Boolean) + nameWithType: TxClient.SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean) +- uid: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2* + name: SuggestProfessionsFromSkillsV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestProfessionsFromSkillsV2_ + commentId: Overload:Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.SuggestProfessionsFromSkillsV2 + nameWithType: TxClient.SuggestProfessionsFromSkillsV2 - uid: Textkernel.Tx.TxClient.SuggestSkillsFromJobTitle(System.String,System.String,System.Nullable{System.Int32}) name: SuggestSkillsFromJobTitle(String, String, Nullable) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromJobTitle_System_String_System_String_System_Nullable_System_Int32__ @@ -15389,6 +15799,40 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.SuggestSkillsFromProfessions nameWithType: TxClient.SuggestSkillsFromProfessions +- uid: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(System.Collections.Generic.IEnumerable{System.Int32},System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromProfessionsV2(IEnumerable, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromProfessionsV2_System_Collections_Generic_IEnumerable_System_Int32__System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(System.Collections.Generic.IEnumerable{System.Int32},System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromProfessionsV2(IEnumerable(Of Int32), Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(System.Collections.Generic.IEnumerable, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(System.Collections.Generic.IEnumerable(Of System.Int32), System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: TxClient.SuggestSkillsFromProfessionsV2(IEnumerable, Int32, String, IEnumerable) + nameWithType.vb: TxClient.SuggestSkillsFromProfessionsV2(IEnumerable(Of Int32), Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromProfessionsV2_Textkernel_Tx_Models_Job_ParsedJob_System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: TxClient.SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable) + nameWithType.vb: TxClient.SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromProfessionsV2_Textkernel_Tx_Models_Resume_ParsedResume_System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: TxClient.SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable) + nameWithType.vb: TxClient.SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2* + name: SuggestSkillsFromProfessionsV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromProfessionsV2_ + commentId: Overload:Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.SuggestSkillsFromProfessionsV2 + nameWithType: TxClient.SuggestSkillsFromProfessionsV2 - uid: Textkernel.Tx.TxClient.SuggestSkillsFromSkills(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.String) name: SuggestSkillsFromSkills(IEnumerable, Int32, String) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromSkills_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Int32_System_String_ @@ -15417,6 +15861,40 @@ references: isSpec: "True" fullName: Textkernel.Tx.TxClient.SuggestSkillsFromSkills nameWithType: TxClient.SuggestSkillsFromSkills +- uid: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromSkillsV2(IEnumerable, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromSkillsV2_System_Collections_Generic_IEnumerable_Textkernel_Tx_Models_API_DataEnrichment_Ontology_Response_SkillScore__System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(System.Collections.Generic.IEnumerable{Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore},System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromSkillsV2(IEnumerable(Of SkillScore), Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(System.Collections.Generic.IEnumerable, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(System.Collections.Generic.IEnumerable(Of Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore), System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: TxClient.SuggestSkillsFromSkillsV2(IEnumerable, Int32, String, IEnumerable) + nameWithType.vb: TxClient.SuggestSkillsFromSkillsV2(IEnumerable(Of SkillScore), Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromSkillsV2_Textkernel_Tx_Models_Job_ParsedJob_System_Int32_System_String_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob,System.Int32,System.String,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable(Of String)) + fullName: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.String, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Job.ParsedJob, System.Int32, System.String, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: TxClient.SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable) + nameWithType.vb: TxClient.SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable(Of String)) +- uid: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Boolean,System.Collections.Generic.IEnumerable{System.String}) + name: SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable) + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromSkillsV2_Textkernel_Tx_Models_Resume_ParsedResume_System_Int32_System_String_System_Boolean_System_Collections_Generic_IEnumerable_System_String__ + commentId: M:Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume,System.Int32,System.String,System.Boolean,System.Collections.Generic.IEnumerable{System.String}) + name.vb: SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable(Of String)) + fullName: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Boolean, System.Collections.Generic.IEnumerable) + fullName.vb: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2(Textkernel.Tx.Models.Resume.ParsedResume, System.Int32, System.String, System.Boolean, System.Collections.Generic.IEnumerable(Of System.String)) + nameWithType: TxClient.SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable) + nameWithType.vb: TxClient.SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable(Of String)) +- uid: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2* + name: SuggestSkillsFromSkillsV2 + href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_SuggestSkillsFromSkillsV2_ + commentId: Overload:Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2 + isSpec: "True" + fullName: Textkernel.Tx.TxClient.SuggestSkillsFromSkillsV2 + nameWithType: TxClient.SuggestSkillsFromSkillsV2 - uid: Textkernel.Tx.TxClient.UpdateJobUserDefinedTags(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod) name: UpdateJobUserDefinedTags(String, String, IEnumerable, UserDefinedTagsMethod) href: sdk/Textkernel.Tx.TxClient.html#Textkernel_Tx_TxClient_UpdateJobUserDefinedTags_System_String_System_String_System_Collections_Generic_IEnumerable_System_String__Textkernel_Tx_Models_API_Indexes_UserDefinedTagsMethod_ From 689e6c0cf49745e748faf87764e628a809027889 Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 15:54:37 -0600 Subject: [PATCH 09/14] add ICU deps --- .github/workflows/build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1ebc9c4..b55f6153 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,7 +94,10 @@ jobs: with: dotnet-version: 3.1.x - name: Install dependencies - run: dotnet restore + run: | + sudo apt-get update + sudo apt-get -y install libicu-dev + dotnet restore working-directory: src/Textkernel.Tx.SDK - name: Build run: dotnet build --configuration Release --no-restore @@ -117,7 +120,10 @@ jobs: env: CREDENTIALS_FILE: ${{secrets.TEST_CREDENTIALS}} - name: Install dependencies - run: dotnet restore + run: | + sudo apt-get update + sudo apt-get -y install libicu-dev + dotnet restore working-directory: src/Textkernel.Tx.SDK.Tests - name: Build run: dotnet build From 0b4aefd0f019002cd71ced386de1238da99fcef9 Mon Sep 17 00:00:00 2001 From: Continuous Integration Date: Fri, 27 Dec 2024 21:57:28 +0000 Subject: [PATCH 10/14] --- auto-generation of docfx documentation --- --- docs/site-/index.html | 2 +- docs/site-/manifest.json | 694 +++++++++--------- ...extkernel.Tx.Batches.BatchErrorResult.html | 8 +- .../Textkernel.Tx.Batches.BatchParser.html | 12 +- ...xtkernel.Tx.Batches.BatchParsingRules.html | 28 +- .../Textkernel.Tx.Batches.BatchResult.html | 12 +- ....Batches.JobBatchPartialSuccessResult.html | 8 +- ...rnel.Tx.Batches.JobBatchSuccessResult.html | 8 +- ...tches.ResumeBatchPartialSuccessResult.html | 8 +- ...l.Tx.Batches.ResumeBatchSuccessResult.html | 8 +- ...el.Tx.Batches.TxInvalidBatchException.html | 4 +- docs/site-/sdk/Textkernel.Tx.DataCenter.html | 20 +- docs/site-/sdk/Textkernel.Tx.ITxClient.html | 324 ++++---- ...ls.API.Account.GetAccountInfoResponse.html | 4 +- .../Textkernel.Tx.Models.API.AccountInfo.html | 36 +- ...extkernel.Tx.Models.API.ApiResponse-1.html | 12 +- ...tkernel.Tx.Models.API.ApiResponseInfo.html | 28 +- ...nel.Tx.Models.API.ApiResponseInfoLite.html | 12 +- ...metricScoring.BimetricScoreJobRequest.html | 8 +- ....BimetricScoring.BimetricScoreRequest.html | 20 +- ...BimetricScoring.BimetricScoreResponse.html | 4 +- ...ricScoring.BimetricScoreResponseValue.html | 4 +- ...I.BimetricScoring.BimetricScoreResult.html | 28 +- ...ricScoring.BimetricScoreResumeRequest.html | 8 +- ....API.BimetricScoring.IParsedDocWithId.html | 8 +- ...s.API.BimetricScoring.ParsedJobWithId.html | 12 +- ...PI.BimetricScoring.ParsedResumeWithId.html | 12 +- ...PI.DataEnrichment.AutocompleteRequest.html | 20 +- ...PI.DataEnrichment.GetMetadataResponse.html | 4 +- ...ogy.Request.CompareProfessionsRequest.html | 16 +- ...uest.CompareSkillsToProfessionRequest.html | 16 +- ....Request.SkillsSimilarityScoreRequest.html | 12 +- ...ogy.Request.SuggestProfessionsRequest.html | 20 +- ...t.SuggestSkillsFromProfessionsRequest.html | 20 +- ...equest.SuggestSkillsFromSkillsRequest.html | 20 +- ...y.Response.CompareProfessionsResponse.html | 4 +- ...ponse.CompareProfessionsResponseValue.html | 16 +- ...nse.CompareSkillsToProfessionResponse.html | 4 +- ...ompareSkillsToProfessionResponseValue.html | 20 +- ...gy.Response.ProfessionExclusiveSkills.html | 12 +- ...richment.Ontology.Response.SkillScore.html | 16 +- ...esponse.SkillsSimilarityScoreResponse.html | 4 +- ...se.SkillsSimilarityScoreResponseValue.html | 8 +- ...y.Response.SuggestProfessionsResponse.html | 4 +- ...ponse.SuggestProfessionsResponseValue.html | 12 +- ...y.Response.SuggestProfessionsWarnings.html | 12 +- ...tology.Response.SuggestSkillsResponse.html | 4 +- ...y.Response.SuggestSkillsResponseValue.html | 8 +- ...Ontology.Response.SuggestedProfession.html | 20 +- ...ataEnrichment.Professions.ONETVersion.html | 4 +- ...sions.ProfessionNormalizationVersions.html | 8 +- ....Request.LookupProfessionCodesRequest.html | 12 +- ...s.Request.NormalizeProfessionsRequest.html | 16 +- ...ponse.AutoCompleteProfessionsResponse.html | 4 +- ....AutoCompleteProfessionsResponseValue.html | 8 +- ...sponse.GetProfessionsTaxonomyResponse.html | 4 +- ...e.GetTaxonomyProfessionsResponseValue.html | 8 +- ...esponse.LookupProfessionCodesResponse.html | 4 +- ...se.LookupProfessionCodesResponseValue.html | 8 +- ...Response.NormalizeProfessionsResponse.html | 4 +- ...nse.NormalizeProfessionsResponseValue.html | 8 +- ...t.Skills.Request.ExtractSkillsRequest.html | 20 +- ...nt.Skills.Request.LookupSkillsRequest.html | 12 +- ...Skills.Request.NormalizeSkillsRequest.html | 16 +- ...lls.Request.SkillsAutoCompleteRequest.html | 8 +- ...s.Response.AutoCompleteSkillsResponse.html | 4 +- ...ponse.AutocompleteSkillsResponseValue.html | 8 +- ...Skills.Response.ExtractSkillsResponse.html | 4 +- ...s.Response.ExtractSkillsResponseValue.html | 12 +- ...ls.Response.GetSkillsTaxonomyResponse.html | 4 +- ...sponse.GetSkillsTaxonomyResponseValue.html | 8 +- ...lls.Response.LookupSkillCodesResponse.html | 4 +- ...esponse.LookupSkillCodesResponseValue.html | 8 +- ...ills.Response.NormalizeSkillsResponse.html | 4 +- ...Response.NormalizeSkillsResponseValue.html | 8 +- ...els.API.DataEnrichment.TaxonomyFormat.html | 4 +- ...l.Tx.Models.API.Formatter.CompanyInfo.html | 32 +- ...ls.API.Formatter.CompanyInfoPlacement.html | 4 +- ...els.API.Formatter.EmployerNameOptions.html | 4 +- ...els.API.Formatter.FormatResumeOptions.html | 20 +- ...els.API.Formatter.FormatResumeRequest.html | 16 +- ...ls.API.Formatter.FormatResumeResponse.html | 4 +- ...I.Formatter.FormatResumeResponseValue.html | 8 +- ...atter.FormatResumeWithTemplateRequest.html | 28 +- ....Models.API.Formatter.MetadataOptions.html | 12 +- ...el.Tx.Models.API.Formatter.ResumeLogo.html | 28 +- ...el.Tx.Models.API.Formatter.ResumeType.html | 4 +- ...dels.API.Formatter.WorkHistoryOptions.html | 16 +- ...ernel.Tx.Models.API.Geocoding.Address.html | 24 +- ...I.Geocoding.GeocodeAndIndexJobRequest.html | 8 +- ....Geocoding.GeocodeAndIndexJobResponse.html | 4 +- ...oding.GeocodeAndIndexJobResponseValue.html | 8 +- ....API.Geocoding.GeocodeAndIndexRequest.html | 16 +- ...eocoding.GeocodeAndIndexResponseValue.html | 12 +- ...eocoding.GeocodeAndIndexResumeRequest.html | 8 +- ...ocoding.GeocodeAndIndexResumeResponse.html | 4 +- ...ng.GeocodeAndIndexResumeResponseValue.html | 8 +- ...dels.API.Geocoding.GeocodeCredentials.html | 12 +- ...odels.API.Geocoding.GeocodeJobRequest.html | 8 +- ...dels.API.Geocoding.GeocodeJobResponse.html | 4 +- ...API.Geocoding.GeocodeJobResponseValue.html | 8 +- ...x.Models.API.Geocoding.GeocodeOptions.html | 8 +- ...dels.API.Geocoding.GeocodeOptionsBase.html | 12 +- ....Models.API.Geocoding.GeocodeProvider.html | 4 +- ...ls.API.Geocoding.GeocodeResumeRequest.html | 8 +- ...s.API.Geocoding.GeocodeResumeResponse.html | 4 +- ....Geocoding.GeocodeResumeResponseValue.html | 8 +- .../Textkernel.Tx.Models.API.ITxResponse.html | 8 +- ...Models.API.Indexes.CreateIndexRequest.html | 8 +- ...odels.API.Indexes.CreateIndexResponse.html | 4 +- ...ls.API.Indexes.DeleteDocumentResponse.html | 4 +- ...odels.API.Indexes.DeleteIndexResponse.html | 4 +- ...dexes.DeleteMultipleDocumentsResponse.html | 4 +- ...els.API.Indexes.GetAllIndexesResponse.html | 4 +- ...x.Models.API.Indexes.GetIndexResponse.html | 4 +- ....Tx.Models.API.Indexes.GetJobResponse.html | 4 +- ....Models.API.Indexes.GetResumeResponse.html | 4 +- ...dels.API.Indexes.IndexDocumentRequest.html | 8 +- ...els.API.Indexes.IndexDocumentResponse.html | 4 +- ...el.Tx.Models.API.Indexes.IndexJobInfo.html | 8 +- ...Tx.Models.API.Indexes.IndexJobRequest.html | 8 +- ...API.Indexes.IndexMultipleDocumentInfo.html | 12 +- ...ndexes.IndexMultipleDocumentsResponse.html | 4 +- ...s.IndexMultipleDocumentsResponseValue.html | 8 +- ....API.Indexes.IndexMultipleJobsRequest.html | 8 +- ...I.Indexes.IndexMultipleResumesRequest.html | 8 +- ...Tx.Models.API.Indexes.IndexResumeInfo.html | 8 +- ...Models.API.Indexes.IndexResumeRequest.html | 8 +- ...s.API.Indexes.IndexSingleDocumentInfo.html | 8 +- ....Indexes.UpdateUserDefinedTagsRequest.html | 12 +- ...Indexes.UpdateUserDefinedTagsResponse.html | 4 +- ...els.API.Indexes.UserDefinedTagsMethod.html | 4 +- ...API.JobDescription.GenerateJobRequest.html | 28 +- ...PI.JobDescription.GenerateJobResponse.html | 4 +- ...bDescription.GenerateJobResponseValue.html | 8 +- ...s.API.JobDescription.GenerateJobSkill.html | 12 +- ....Tx.Models.API.JobDescription.JobTone.html | 4 +- ...dels.API.JobDescription.SkillPriority.html | 4 +- ...tion.SuggestSkillsFromJobTitleRequest.html | 16 +- ...ion.SuggestSkillsFromJobTitleResponse.html | 4 +- ...uggestSkillsFromJobTitleResponseValue.html | 8 +- ...PI.Matching.BaseScoredResponseValue-1.html | 12 +- ...tching.BaseSearchMatchResponseValue-1.html | 16 +- ...x.Models.API.Matching.CategoryWeights.html | 68 +- ...x.Models.API.Matching.MatchJobRequest.html | 8 +- ....Tx.Models.API.Matching.MatchResponse.html | 4 +- ...odels.API.Matching.MatchResponseValue.html | 4 +- ...odels.API.Matching.MatchResumeRequest.html | 8 +- ...els.API.Matching.Request.DistanceUnit.html | 4 +- ...s.API.Matching.Request.FilterCriteria.html | 140 ++-- ...s.API.Matching.Request.FilterLocation.html | 24 +- ...els.API.Matching.Request.IntegerRange.html | 12 +- ...s.API.Matching.Request.JobTitleFilter.html | 12 +- ...API.Matching.Request.LocationCriteria.html | 24 +- ...hing.Request.MatchByDocumentIdOptions.html | 4 +- ...els.API.Matching.Request.MatchRequest.html | 12 +- ...I.Matching.Request.PaginationSettings.html | 12 +- ...PI.Matching.Request.RevisionDateRange.html | 12 +- ...tching.Request.SearchMatchRequestBase.html | 16 +- ....Matching.Request.SearchMatchSettings.html | 16 +- ...Matching.Request.SkillExperienceLevel.html | 4 +- ...dels.API.Matching.Request.SkillFilter.html | 16 +- ...I.Matching.Response.CategoryScoreData.html | 12 +- ...tching.Response.CategoryScoreEvidence.html | 12 +- ....Matching.Response.DocumentTaxonomies.html | 12 +- ....Matching.Response.EducationScoreData.html | 16 +- ...I.Matching.Response.EnrichedScoreData.html | 36 +- ...s.API.Matching.Response.FoundJobTitle.html | 16 +- ...dels.API.Matching.Response.FoundSkill.html | 12 +- ...tching.Response.IBimetricScoredResult.html | 24 +- ....Matching.Response.JobTitlesScoreData.html | 12 +- ...ing.Response.ManagementLevelScoreData.html | 16 +- ...els.API.Matching.Response.MatchResult.html | 24 +- ...ls.API.Matching.Response.SearchResult.html | 12 +- ...hing.Response.SimpleCategoryScoreData.html | 12 +- ...API.Matching.Response.SkillsScoreData.html | 12 +- ...Matching.Response.TaxonomiesScoreData.html | 12 +- ...PI.Matching.Response.TaxonomyEvidence.html | 12 +- ...ls.API.Matching.Response.TaxonomyInfo.html | 16 +- ....Tx.Models.API.Matching.SearchRequest.html | 8 +- ...Tx.Models.API.Matching.SearchResponse.html | 4 +- ...dels.API.Matching.SearchResponseValue.html | 4 +- ...Models.API.Matching.UI.AIMatchDetails.html | 8 +- ...Models.API.Matching.UI.BasicUIOptions.html | 16 +- ....API.Matching.UI.BimetricScoreDetails.html | 8 +- ...I.Matching.UI.BimetricScoreJobDetails.html | 8 +- ...atching.UI.BimetricScoreResumeDetails.html | 8 +- ...atching.UI.GenerateUIDetailsRequest-1.html | 12 +- ...s.API.Matching.UI.GenerateUIRequest-1.html | 8 +- ...ls.API.Matching.UI.GenerateUIResponse.html | 12 +- ....Matching.UI.Hooks.BulkHookPostBody-1.html | 8 +- ....API.Matching.UI.Hooks.ClientSideHook.html | 12 +- ....Matching.UI.Hooks.DocumentIdentifier.html | 12 +- ....API.Matching.UI.Hooks.HookPostBody-1.html | 12 +- ...Models.API.Matching.UI.Hooks.JsAction.html | 16 +- ...ching.UI.Hooks.OnUpdateHookPostBody-1.html | 12 +- ...s.API.Matching.UI.Hooks.OnUpdateHooks.html | 12 +- ...ching.UI.Hooks.OnUpdateServerSideHook.html | 12 +- ....API.Matching.UI.Hooks.ServerSideHook.html | 12 +- ...ls.API.Matching.UI.Hooks.SourcingHook.html | 8 +- ...ching.UI.Hooks.SourcingHookPostBody-1.html | 20 +- ...odels.API.Matching.UI.Hooks.UrlAction.html | 12 +- ....API.Matching.UI.Hooks.UserActionHook.html | 12 +- ...ing.UI.Hooks.UserActionHookCollection.html | 20 +- ...ing.UI.Hooks.UserActionHookPostBody-1.html | 12 +- ...x.Models.API.Matching.UI.MatchDetails.html | 16 +- ...odels.API.Matching.UI.MatchUISettings.html | 16 +- ...x.Models.API.Matching.UI.StyleOptions.html | 24 +- ...g.UI.UIBimetricScoreJobDetailsRequest.html | 4 +- ...Matching.UI.UIBimetricScoreJobRequest.html | 4 +- ...I.UIBimetricScoreResumeDetailsRequest.html | 4 +- ...ching.UI.UIBimetricScoreResumeRequest.html | 4 +- ...atching.UI.UIMatchByDocumentIdOptions.html | 4 +- ...API.Matching.UI.UIMatchDetailsRequest.html | 4 +- ...els.API.Matching.UI.UIMatchJobRequest.html | 4 +- ....API.Matching.UI.UIMatchResumeRequest.html | 4 +- ...l.Tx.Models.API.Matching.UI.UIOptions.html | 52 +- ...odels.API.Matching.UI.UISearchRequest.html | 4 +- ....API.Matching.UI.UserDefinedTagOption.html | 12 +- ...I.Matching.UI.UserDefinedTagsPicklist.html | 12 +- ...ls.API.Parsing.BaseParseResponseValue.html | 24 +- ....Models.API.Parsing.BasicParseOptions.html | 24 +- ...Models.API.Parsing.ConversionMetadata.html | 24 +- ...nel.Tx.Models.API.Parsing.Conversions.html | 24 +- ...nel.Tx.Models.API.Parsing.FlexRequest.html | 20 +- ...odels.API.Parsing.FlexRequestDataType.html | 4 +- ...el.Tx.Models.API.Parsing.FlexResponse.html | 16 +- ...x.Models.API.Parsing.FlexResponseItem.html | 16 +- ...x.Models.API.Parsing.ParseJobResponse.html | 4 +- ...els.API.Parsing.ParseJobResponseValue.html | 8 +- ...el.Tx.Models.API.Parsing.ParseOptions.html | 36 +- ...el.Tx.Models.API.Parsing.ParseRequest.html | 16 +- ...odels.API.Parsing.ParseResumeResponse.html | 4 +- ....API.Parsing.ParseResumeResponseValue.html | 20 +- ...Tx.Models.API.Parsing.ParsingMetadata.html | 20 +- ...odels.API.Parsing.ProfessionsSettings.html | 12 +- ....Tx.Models.API.Parsing.SkillsSettings.html | 12 +- ...Models.DataEnrichment.BasicProfession.html | 12 +- ....Models.DataEnrichment.ExtractedSkill.html | 8 +- ...Models.DataEnrichment.LangDescription.html | 12 +- ...s.DataEnrichment.NormalizedProfession.html | 8 +- ...Models.DataEnrichment.NormalizedSkill.html | 8 +- ...l.Tx.Models.DataEnrichment.Profession.html | 36 +- ...Enrichment.ProfessionClassification-1.html | 12 +- ...chment.ProfessionMultipleDescriptions.html | 12 +- ...kernel.Tx.Models.DataEnrichment.Skill.html | 20 +- ...els.DataEnrichment.SkillAndConfidence.html | 8 +- ...l.Tx.Models.DataEnrichment.SkillMatch.html | 20 +- ...aEnrichment.SkillMultipleDescriptions.html | 12 +- ...nel.Tx.Models.DataEnrichment.Taxonomy.html | 8 +- ...odels.DataEnrichment.TaxonomyMetadata.html | 12 +- ...t.VersionedProfessionClassification-1.html | 8 +- .../sdk/Textkernel.Tx.Models.Document.html | 20 +- .../Textkernel.Tx.Models.GeoCoordinates.html | 12 +- ...tkernel.Tx.Models.GeocodedCoordinates.html | 8 +- ...rnel.Tx.Models.Job.ApplicationDetails.html | 36 +- ...extkernel.Tx.Models.Job.EmployerNames.html | 12 +- .../Textkernel.Tx.Models.Job.JobDegree.html | 20 +- .../Textkernel.Tx.Models.Job.JobMetadata.html | 4 +- .../Textkernel.Tx.Models.Job.JobTitles.html | 16 +- .../Textkernel.Tx.Models.Job.ParsedJob.html | 168 ++--- .../Textkernel.Tx.Models.Job.PayRange.html | 28 +- ....Models.Job.Skills.JobNormalizedSkill.html | 8 +- ...rnel.Tx.Models.Job.Skills.JobRawSkill.html | 8 +- ...tkernel.Tx.Models.Job.Skills.JobSkill.html | 8 +- ...x.Models.Job.Skills.JobSkillVariation.html | 8 +- ...l.Tx.Models.Job.Skills.JobSubTaxonomy.html | 8 +- ...rnel.Tx.Models.Job.Skills.JobTaxonomy.html | 4 +- ....Tx.Models.Job.Skills.JobTaxonomyRoot.html | 12 +- ...rnel.Tx.Models.Job.Skills.JobV2Skills.html | 16 +- .../sdk/Textkernel.Tx.Models.Location.html | 28 +- .../Textkernel.Tx.Models.Matching.Index.html | 16 +- ...xtkernel.Tx.Models.Matching.IndexType.html | 4 +- .../Textkernel.Tx.Models.ParsedDocument.html | 16 +- ...rnel.Tx.Models.ParsedDocumentMetadata.html | 24 +- ...xtkernel.Tx.Models.Resume.Association.html | 16 +- ...l.Tx.Models.Resume.CandidateReference.html | 36 +- ...kernel.Tx.Models.Resume.Certification.html | 16 +- ...Resume.ContactInfo.ContactInformation.html | 24 +- ....Models.Resume.ContactInfo.PersonName.html | 32 +- ...x.Models.Resume.ContactInfo.Telephone.html | 16 +- ....Models.Resume.ContactInfo.WebAddress.html | 12 +- ...els.Resume.ContactInfo.WebAddressType.html | 96 +-- ...nel.Tx.Models.Resume.Education.Degree.html | 20 +- ...els.Resume.Education.EducationDetails.html | 56 +- ...els.Resume.Education.EducationHistory.html | 12 +- ...ls.Resume.Education.GradePointAverage.html | 24 +- ...els.Resume.Education.NormalizedDegree.html | 12 +- ...el.Tx.Models.Resume.Employment.Bullet.html | 12 +- ...Employment.CompanyNameWithProbability.html | 8 +- ....Tx.Models.Resume.Employment.Employer.html | 16 +- ...s.Resume.Employment.EmploymentHistory.html | 12 +- ...s.Resume.Employment.ExperienceSummary.html | 44 +- ....Tx.Models.Resume.Employment.JobTitle.html | 20 +- ...mployment.ParsingNormalizedProfession.html | 28 +- ....Tx.Models.Resume.Employment.Position.html | 76 +- ...dNormalizedProfessionClassification-1.html | 8 +- ...l.Tx.Models.Resume.LanguageCompetency.html | 16 +- ...ernel.Tx.Models.Resume.LicenseDetails.html | 12 +- ...x.Models.Resume.Metadata.ReservedData.html | 24 +- ...Models.Resume.Metadata.ResumeMetadata.html | 16 +- ...sume.Metadata.ResumeQualityAssessment.html | 12 +- ....Resume.Metadata.ResumeQualityFinding.html | 16 +- ...ls.Resume.Metadata.ResumeQualityLevel.html | 28 +- ....Models.Resume.Metadata.ResumeSection.html | 20 +- ...odels.Resume.Military.MilitaryDetails.html | 24 +- ...odels.Resume.Military.MilitaryService.html | 16 +- ...ls.Resume.Military.SecurityCredential.html | 12 +- ...nel.Tx.Models.Resume.NationalIdentity.html | 12 +- ...nel.Tx.Models.Resume.NormalizedString.html | 12 +- ...tkernel.Tx.Models.Resume.ParsedResume.html | 120 +-- ...l.Tx.Models.Resume.PersonalAttributes.html | 88 +-- .../Textkernel.Tx.Models.Resume.Salary.html | 12 +- ...el.Tx.Models.Resume.SectionIdentifier.html | 12 +- ...s.Resume.Skills.ResumeNormalizedSkill.html | 16 +- ...x.Models.Resume.Skills.ResumeRawSkill.html | 16 +- ...l.Tx.Models.Resume.Skills.ResumeSkill.html | 16 +- ...ls.Resume.Skills.ResumeSkillVariation.html | 16 +- ...odels.Resume.Skills.ResumeSubTaxonomy.html | 8 +- ...x.Models.Resume.Skills.ResumeTaxonomy.html | 4 +- ...dels.Resume.Skills.ResumeTaxonomyRoot.html | 12 +- ...x.Models.Resume.Skills.ResumeV2Skills.html | 16 +- ...rnel.Tx.Models.Resume.TrainingDetails.html | 24 +- ...rnel.Tx.Models.Resume.TrainingHistory.html | 12 +- ...nel.Tx.Models.Skills.FoundSubTaxonomy.html | 12 +- ...rnel.Tx.Models.Skills.FoundTaxonomy-1.html | 20 +- ...xtkernel.Tx.Models.Skills.ITaxonomy-1.html | 16 +- ...rnel.Tx.Models.Skills.NormalizedSkill.html | 20 +- ...rnel.Tx.Models.Skills.ProfessionClass.html | 20 +- ...rnel.Tx.Models.Skills.ProfessionGroup.html | 20 +- .../Textkernel.Tx.Models.Skills.RawSkill.html | 8 +- .../Textkernel.Tx.Models.Skills.Skill.html | 16 +- ...xtkernel.Tx.Models.Skills.SubTaxonomy.html | 12 +- .../Textkernel.Tx.Models.Skills.Taxonomy.html | 20 +- .../sdk/Textkernel.Tx.Models.TxDate.html | 24 +- .../Textkernel.Tx.Models.TxPrimitive-1.html | 8 +- docs/site-/sdk/Textkernel.Tx.TxClient.html | 344 ++++----- .../sdk/Textkernel.Tx.TxClientSettings.html | 20 +- docs/site-/sdk/Textkernel.Tx.TxException.html | 24 +- .../Textkernel.Tx.TxGeocodeJobException.html | 4 +- ...extkernel.Tx.TxGeocodeResumeException.html | 4 +- .../Textkernel.Tx.TxIndexJobException.html | 4 +- .../Textkernel.Tx.TxIndexResumeException.html | 4 +- ...TxProfessionNormalizationJobException.html | 4 +- ...rofessionNormalizationResumeException.html | 4 +- .../Textkernel.Tx.TxUsableJobException.html | 8 +- ...Textkernel.Tx.TxUsableResumeException.html | 8 +- docs/site-/sdk/index.html | 2 +- 348 files changed, 3169 insertions(+), 3169 deletions(-) diff --git a/docs/site-/index.html b/docs/site-/index.html index c9554680..a668079b 100644 --- a/docs/site-/index.html +++ b/docs/site-/index.html @@ -82,7 +82,7 @@

tx-dotnet

diff --git a/docs/site-/manifest.json b/docs/site-/manifest.json index a8403435..c936ead2 100644 --- a/docs/site-/manifest.json +++ b/docs/site-/manifest.json @@ -20,7 +20,7 @@ "output": { ".html": { "relative_path": "index.html", - "hash": "3hFRwS0u5ml6718c3luf4iL9TNOASufK98t1YHjiPG8=" + "hash": "mb2uFc7qXowHYKVCnKLZhKsyq8lMAeRRWOHa7LIbAkg=" } }, "is_incremental": false, @@ -32,7 +32,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchErrorResult.html", - "hash": "UqDquR3h3sKkQGOLOZ+d4Jrt3ZBw9eeM2Jb25Tz0Abo=" + "hash": "qAapptoOSVBUxISdqyLmF1S1DJwV1ClAVCZCnpApWgc=" } }, "is_incremental": false, @@ -44,7 +44,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchParser.html", - "hash": "kBMSaJbT8aXj8qB1IYGM9KNjAte6H87Yd6D/2DklSNc=" + "hash": "Na6UMfNbsB5bxikZZUCZrt8jc7JsnhApivJisiN7arY=" } }, "is_incremental": false, @@ -56,7 +56,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchParsingRules.html", - "hash": "lRRABVi9i6z+IgqiapFQt1Npi+Kqo1DMjTfvlONYBPE=" + "hash": "cwrBanqZt3sGIPvMpCChkkU9FARnw/U0pwBoxf3o9Pg=" } }, "is_incremental": false, @@ -68,7 +68,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchResult.html", - "hash": "WSr6MFwiDgHLCFTA59Ei6T/RV6ElGI9iHa77gBrnpUo=" + "hash": "Gy5RX6107J8S11jkLc93TGq+rV4vbm8AAV3QY3KVVlQ=" } }, "is_incremental": false, @@ -80,7 +80,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html", - "hash": "0eGVnDsgdw4no7QGbxKfiw4G3vU2JNvHw1U0ELtGZqM=" + "hash": "aebyoosTFhg8bd5xjCp8pa4GSs6+S1iulaGOf18O9RA=" } }, "is_incremental": false, @@ -92,7 +92,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html", - "hash": "M4bsQ/4+ICFZb2hjv6MuFlcw4EOsiqb5aJWNBDYaPr4=" + "hash": "Xze9ocvrjs1cfyGO8Kx6/7DnGK5BucpbypMs+vAydPk=" } }, "is_incremental": false, @@ -104,7 +104,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html", - "hash": "/g1YrZtBDKCWXowOrdFCZqLRO3iVLl9J3FtOBlUKyd8=" + "hash": "WspYC7kwZOa3bddjLWJ4uBT+cMMlWxsVBbpEJ/+Glqw=" } }, "is_incremental": false, @@ -116,7 +116,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html", - "hash": "9zKRu1ibYXSFBII0P83MrUVwOJKvsO4YCRA3HGii6Bo=" + "hash": "ZlmeDdkZcZfLS5g2pd1XAkl+FQmfEv+hKuEqOZaoAzk=" } }, "is_incremental": false, @@ -128,7 +128,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html", - "hash": "rij3f1WD4WHczG6t5JyZLEag4VsTaoj0Ld3xPctfNLI=" + "hash": "NEGA1o3Tp4YZgypcdyuTxG9ssKxXDasstBlGx1d5EpM=" } }, "is_incremental": false, @@ -152,7 +152,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.DataCenter.html", - "hash": "KSmykzob2oOB8NWDaVIL+yAzcwXlqLcx50xxgm+YpdM=" + "hash": "xy3YsNTYTZpK8SLTSx5iwNBh1mbHfd/4WfcfUte/EKE=" } }, "is_incremental": false, @@ -164,7 +164,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.ITxClient.html", - "hash": "5qoszPfixEN7D1h35zF3OZj7WkikRghI6tbk0lKQVYM=" + "hash": "JHnzcynUCi5Ok9InDQd8mAsbVQCGxTtdd3eZZtVJwAo=" } }, "is_incremental": false, @@ -176,7 +176,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html", - "hash": "a3fY+hJW2yJjuJ5M3ZjpsyHqp+nIXqdPUjp/cjdbmvw=" + "hash": "JKE++ZSFjLqPvJxwWXee+FeYySrH9db4WOSpwP8J8QM=" } }, "is_incremental": false, @@ -200,7 +200,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.AccountInfo.html", - "hash": "g1atWMDRhVIL6GAfjfucnDDILE2FKtUG74ak4KA071g=" + "hash": "qP3vCKMHP0kr96H0DFYZsxM+YMRmVVPxg/u5Rm1SOIs=" } }, "is_incremental": false, @@ -212,7 +212,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponse-1.html", - "hash": "FulBKYhzF84J9gXU7mJDYAP4seRB80tKVVeJHoQwtaQ=" + "hash": "NMqDkXRpNObU09V+OtkqHaW4WByyXpJbGPqFrLxxAKA=" } }, "is_incremental": false, @@ -224,7 +224,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html", - "hash": "fJ/pRt/P5GujoRByc5jHJF0CPy7IGauVVnxjJ8xurp8=" + "hash": "90lIfAWA47zb//deyarKVfEi+3QFyMYlYg6jL38/HFE=" } }, "is_incremental": false, @@ -236,7 +236,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html", - "hash": "RNryXEVy+lRzq+ofmRI7KzXm3STz7dQ4mqBbIZBm87o=" + "hash": "zfOF6vP+KwtT36NwRLbJZZpGVNS+Vl0Gfvx1xBwqP48=" } }, "is_incremental": false, @@ -248,7 +248,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html", - "hash": "8/uLIT8LfingpFU56n4MQ+0kVHAHWCffZH7pqYwtZ4M=" + "hash": "Q0/ljI6VjGGjzZS+NPB3gjjE1QTHYheU9DIrThTj5OA=" } }, "is_incremental": false, @@ -260,7 +260,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html", - "hash": "MWZOUacYWO9ZivlONGW+TQk8yMrNWx5BfRcqR2C4WwY=" + "hash": "Nx7oTlnrJcVRXkx7RYAnrXJmd1DFmnAer69DPwgGFIU=" } }, "is_incremental": false, @@ -272,7 +272,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html", - "hash": "BSr4cOwj0N8JR6P3v3plqI52sGzr7r5K3hbCDOkK8SM=" + "hash": "Znl8kksJ36OGLhLZLUFXc0wqLK+qajjiWc/vqwJXeZI=" } }, "is_incremental": false, @@ -284,7 +284,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html", - "hash": "eLVDwzl7hUuoGWBQHglbh5aiTCcUcAf/8VG/rF3eJT4=" + "hash": "PgySGPQzW0U9n7fVm1h5iixNuhihKpKAeCq/CcoKQok=" } }, "is_incremental": false, @@ -296,7 +296,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html", - "hash": "H/AlQLkkUiDP8Haq6slvvntcItaonMLkav3eSDIqMs8=" + "hash": "w/Myz1Jqm1J7WLS6lt5fJ2VZzk4ZgvOqr8P+MttkeOs=" } }, "is_incremental": false, @@ -308,7 +308,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html", - "hash": "w7i+SY3okbta3VgAYAPjVGUz/Z9cXLq15JVroAbMyuY=" + "hash": "OHnui0614ECI0FqdoxJcFQ8IKiDVUZkEB1Ndi0cR2l0=" } }, "is_incremental": false, @@ -320,7 +320,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html", - "hash": "6dIc1b6305iqRInvDPUd2EPVWJO4K3Pzlu3xhockwco=" + "hash": "T1qT9G0M91X2hjxY+Z5aL8+eiCJzJmrvAleo7/eE1/8=" } }, "is_incremental": false, @@ -332,7 +332,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html", - "hash": "lYMDBJDEKsulMIsO92kB/8EBvoSmUCUHj5sJozDQ+Tw=" + "hash": "NWwMBPHy92koPTnk6XQp8LQKhMRMkx9fhqjVSN0HBPw=" } }, "is_incremental": false, @@ -344,7 +344,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html", - "hash": "KsjE4YBhkNoPVKSKKZcM8PxQxVeeKVuYr8YsWx61RcM=" + "hash": "hduqld6AgevWhpqej/HEoy/W6FSV3VtT6329+ACSNRk=" } }, "is_incremental": false, @@ -368,7 +368,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html", - "hash": "Qf880Vn071A1O2mkhlqVvhkLeWLfvRKGRI+LbUYP6sk=" + "hash": "Y15FuzD0KgZlS4tBU8h6XqFdg8wOXFZUXk4bD9NNkLs=" } }, "is_incremental": false, @@ -380,7 +380,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html", - "hash": "1hP6JzjJSy4MTt34Eyx3w+8oCcCduYtPjE7vHFaZ3aM=" + "hash": "jotCGtyEouvXWDIqSg2TecnqPx+UqurN5/C4ajT86To=" } }, "is_incremental": false, @@ -392,7 +392,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html", - "hash": "iGAqmZovLy9BqCQIsEqTMp152Ab5SuXvAIH2JXQww9Y=" + "hash": "VrtMAhS1FsRS4gGgiK4TKvU65TQKKx/07h64FOd42Jk=" } }, "is_incremental": false, @@ -404,7 +404,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html", - "hash": "9tDDUIjzXbL2bYrgfTVa4Y0FX0HSeBI2EolI1ZVdMLs=" + "hash": "vGv4rxZOjX7Ed+y9yTYt5Ka05b22vVxM6ARJrbkwchk=" } }, "is_incremental": false, @@ -416,7 +416,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html", - "hash": "U+/ByJ2RvCsD1W+xCZbtu+dwM8XoajSml8ZoIkL2+3o=" + "hash": "EqPcsWQWJGQcqzYcEW9qJqnIrNUEkmr00EFsmkqEK+8=" } }, "is_incremental": false, @@ -428,7 +428,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html", - "hash": "PLQEQ/D0KJi70vYqHaSoN2/89znJ/RzTjjdpgDzQowQ=" + "hash": "gak9CWjDZauRSeGBeIPQB9ZbYb6wjuxLBVKjG+hZpNY=" } }, "is_incremental": false, @@ -440,7 +440,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html", - "hash": "eCobezuvd40cQilktP60wUewydQPoOHKmtbWbTU6btE=" + "hash": "wvHCjxbOw5izcSrISYmiCEnMyfuW+cvxNfuxaiMdG/w=" } }, "is_incremental": false, @@ -452,7 +452,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html", - "hash": "ONR/g/NOqF5HjtmoSb/n5+myigsbWJOe4TKFZ2g+gaM=" + "hash": "0AOMC9KCBHGjYFJ7RqF1JPxmrs8RwHwDELbxeQ58sDg=" } }, "is_incremental": false, @@ -476,7 +476,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html", - "hash": "LVUli0EYytCE14Vyo3phJYk5hrkzyozEwem/C0ssYh4=" + "hash": "iU2gQjJWMJoiE7vkoNeUrkCREBNPm/IlEolZde6KLyI=" } }, "is_incremental": false, @@ -488,7 +488,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html", - "hash": "gQ3bfKuBeiL/IeGNGGhOiJhIHA6ItG4EAmd3QVA706U=" + "hash": "R0QowHknFbIgCfax+ttjpX4j3RGXou148PfFdr/uYs4=" } }, "is_incremental": false, @@ -500,7 +500,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html", - "hash": "1eQZq6P+mbpNBb8/VZMABomWd2p5xMHgYPTslz42Dco=" + "hash": "qhdkGJEoeY5krwr/EMSCaG41J4X+c4SOWoGLcZPyHIY=" } }, "is_incremental": false, @@ -512,7 +512,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html", - "hash": "wrEV9N3QdusYGfxMdeN5GmXNxOgTr91eBqDg26oJHY8=" + "hash": "v+tgRHrudyFrmXE6qFvXnirdZUWBpZq69cpjF9ELYYQ=" } }, "is_incremental": false, @@ -524,7 +524,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html", - "hash": "7ezAKnrSTiZ5XLCu1AKlYEtWFoSMRLi/1s1WKqDkryg=" + "hash": "SUMjNfW3dHksx0hhZyWK77vO7gVypijpyg9QnLdUeIU=" } }, "is_incremental": false, @@ -536,7 +536,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html", - "hash": "GiBQMw1IaPKjm0GcgYzE795KrO8GCKbMi5OMB2/653Q=" + "hash": "WyjJmao1LdM+SJT7YdHBnGt2T03l9o7BjAfWUVBtGWo=" } }, "is_incremental": false, @@ -548,7 +548,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html", - "hash": "N9nGYC6GK6VoiZocAOWH4L261btSz4fFdQa9GiZ7TNk=" + "hash": "jTVSmCdiHATCrnAP+HbrWew5fT6E6Gd4Ru3jhegz2/o=" } }, "is_incremental": false, @@ -560,7 +560,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html", - "hash": "b0i+6KbQjCT/mRp18REVt13XHFNd4PAv8GVC+KWOaJ4=" + "hash": "NxApvocSgTaOza0P1oq6Xi9LLKourt98B2xfQnJumdQ=" } }, "is_incremental": false, @@ -572,7 +572,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html", - "hash": "jz/ht35ndJ+/Dh4Nc2Ooz2YXDLAl99cnDrpIk65KHgk=" + "hash": "kGDsB3BU86hy9LzjG257l2oBgyUNV6eTz58QeX2xGF0=" } }, "is_incremental": false, @@ -584,7 +584,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html", - "hash": "oHfJQ/pZdXdQ8vHQ/YMW4/7RTweD5/SxkhhpM8sHcS4=" + "hash": "1jKXDBQj8ercBvngXAsKeRItt8X2Bpd8/fIptSTdjWo=" } }, "is_incremental": false, @@ -596,7 +596,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html", - "hash": "045QQakcVIbVAcjUE61jk6eoXos7GH+hjAk9xZ3POP4=" + "hash": "8gtk5usN6PXyfGk14XFMQ2TkudE2P5fvwV7t3gEyJTU=" } }, "is_incremental": false, @@ -608,7 +608,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html", - "hash": "7i4JfQmp7yGtEWzizeN5B8iS9KqY2AaN5JGqRAOUN+Y=" + "hash": "OqvLOR4VNHpAGlPssLICf8WM8FHShepiItr2eQ5tWmk=" } }, "is_incremental": false, @@ -620,7 +620,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html", - "hash": "FC+e1AhaDEM1pb99EFAEZMfN6LRZb7eNxW1tGR5xGa4=" + "hash": "UqBDvdQH0cw96pbbbNlcycVaBe46ND8hUi/r8ID4bHc=" } }, "is_incremental": false, @@ -632,7 +632,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html", - "hash": "e4Ct+F6dL1DyjhSO7yxJcMFQGqG5JTtsFMMOtAe0rco=" + "hash": "drQc06gURbuCp4fhGbCR8/+f4KzSwpnyEBLiIj0sqBw=" } }, "is_incremental": false, @@ -656,7 +656,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html", - "hash": "A7AVbNWnab7uapSLdpJfvLHsbAvOyVotgQ1ZokZkBgk=" + "hash": "lV5ouFH+fzVs9gcOco8o3NBkmnBlqax9Dp+IhYfiVYA=" } }, "is_incremental": false, @@ -668,7 +668,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html", - "hash": "147e706Qdv/tpUvwWdVSX3U6iZYIlxZvbDZeCF9f1l8=" + "hash": "TU6TknvPqEIjJwzRLqDzCWuceiwA6eWYahfINgE5wA0=" } }, "is_incremental": false, @@ -680,7 +680,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html", - "hash": "ZWpWX31F0qWFB9qpGhMVoKtmIO849w5P0jtCeZfkZTE=" + "hash": "BbfFJx7ttkJAmjMVYGYgK+x5q9cOT8FcVootWWtrkWY=" } }, "is_incremental": false, @@ -692,7 +692,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html", - "hash": "wpmu66XjK3kflmjkrpnx5U+s/USiRtsoj9f7HUX8WPo=" + "hash": "APUIqN+4FR6Jh0bjK2adpGN4gWy94NFSAwtRqWScmHA=" } }, "is_incremental": false, @@ -716,7 +716,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html", - "hash": "pGgWQcGDuxEIUum5yhqT+SSIu8lHMVg7fSb/eVNi88U=" + "hash": "xzQ3uQxN1gvlEwvjw5tfPHydQwZ+0eKowuZRtrndhZc=" } }, "is_incremental": false, @@ -728,7 +728,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html", - "hash": "GnTRZD02gks6LYquTQXCoipy8DnE+GB73E7df70RCCI=" + "hash": "qFC+Aj1F07YtoAHM/E94Y9YrLmCVWd/ek6oaWedBK7M=" } }, "is_incremental": false, @@ -740,7 +740,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html", - "hash": "swkXbrkmWhHNLAxl94TWjKUPiiiHQ+LvJ3eYn4Ree8k=" + "hash": "a0OEaRZe8lhGPiKXsmvZpUH+xuofLFIXVgraZdNH7D4=" } }, "is_incremental": false, @@ -752,7 +752,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html", - "hash": "OBVbuc6DkRVDaKw11BAIdbs1Yn7ttE5V+HwcFM5RcI4=" + "hash": "+jz3ccG5t3rUcQJFCgKFquEDo4Xouc9UBURcdV33CTo=" } }, "is_incremental": false, @@ -764,7 +764,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html", - "hash": "PqNUfidrvW38Pj9lMeF2whd5gnjUSHsFtk6xXiCaqX0=" + "hash": "QdPtoHW0c90TawcftEYCiokpBb5ezwneJ811nad+THA=" } }, "is_incremental": false, @@ -776,7 +776,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html", - "hash": "H14O27GbQrE8buRzXH3ZPyffyptzaBRslx4T+KHRlYE=" + "hash": "JAfkCVcyZiCcxCvnVy2WQQSYAQSzKKF3k1vhglaiAgg=" } }, "is_incremental": false, @@ -788,7 +788,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html", - "hash": "+MWdcd9I+Ffhd+vmHmeSHUGSe4w/2uzuIm4E0AgZslk=" + "hash": "aLUhbjUfaOhafs6/0RufHytHU8oAeVPfg+TN1hSnjvg=" } }, "is_incremental": false, @@ -800,7 +800,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html", - "hash": "1cFErDltf/BpCuXh7iaEax4o23i6W268083Nymokytg=" + "hash": "ocfI7CQgEtIGIsAFtE7RwB6EM0lJsqxKOSBrTytpfF4=" } }, "is_incremental": false, @@ -836,7 +836,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html", - "hash": "i5Y0Ulv4SFDsDlvuPgbHd7LvFK+Xsp5iD57I+C6oVQI=" + "hash": "EW9jNDred4ZR3prWkA8EremxVAThXElvpJCHzR1F24s=" } }, "is_incremental": false, @@ -848,7 +848,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html", - "hash": "Zg70MOCAMCUM/PeCbxOXahvYqGYepl9e9GVs0aov4mU=" + "hash": "bqo1QZXlh6toa9ROb2+tUaTgCPVyP3Aa7sxXi8flp5o=" } }, "is_incremental": false, @@ -860,7 +860,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html", - "hash": "rr3jcMckRnMuFWfdvW2EKy6moD7tkRnOkzzzujC+Xio=" + "hash": "sHYBVPxZDmNEBle8QFnOFwnA/hxzrVJ5UrHbT1Uw+Fg=" } }, "is_incremental": false, @@ -872,7 +872,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html", - "hash": "iHGgvLcvtT2mchj/cWFPwE54pMu42KHYHhgtRsX5uxQ=" + "hash": "XXseApEdK8MghRMI1s4ngbV9y/M9+Oy6vahs93CSF18=" } }, "is_incremental": false, @@ -896,7 +896,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html", - "hash": "05SSPxDLGmz6r7szJFHmb6PK6ojM6vsd0n4RdCuPY4I=" + "hash": "jGFQbghU97q8u/HfmjYVRvGMPPOGhP9Ev7ez4AtGNac=" } }, "is_incremental": false, @@ -908,7 +908,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html", - "hash": "hGTFQDY7QanGlF2TJ4z1pGj5T6/bOpB655sXihWVd3E=" + "hash": "YYJgvm3wYkf2sfbsp1oD1Tk8Uw1chtDeg6grXFb+WuY=" } }, "is_incremental": false, @@ -920,7 +920,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html", - "hash": "ZJOsuM1Wiyh9h1mEwl3yYYExp10heBQ8tUN2VQJqVc8=" + "hash": "CQlbu9Z3gmdTlHjtOI0uAfHLGuxql9ud0iF80UkRa30=" } }, "is_incremental": false, @@ -932,7 +932,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html", - "hash": "cW/yh0gHGdTgg2IePoN+7hoCMhSquopX3BmbUg3WcS0=" + "hash": "3qZP8ukYU/MeipfisSM6uJXctySHwvBcaF+KozKMQ68=" } }, "is_incremental": false, @@ -944,7 +944,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html", - "hash": "446DitUeK7admQvp+OTr5VNRTA9LwO5OD40RbVCHA40=" + "hash": "RPQQ1CVmRWnwQweCn2OSMZFJ2/21dIyaEd2W3RQ11ww=" } }, "is_incremental": false, @@ -956,7 +956,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html", - "hash": "F3v7dpR+SRKbkJk+uscO4of6GibzS7jvICfwks0u/K8=" + "hash": "CQY/kxZnrf+m4++hMSEsMqtkDK99IhVp9ZgCX9/H8Rg=" } }, "is_incremental": false, @@ -968,7 +968,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html", - "hash": "Db4Qqr2g3d82Ecm1U+22ZhY/lUxgwXXDI/TSW2BNCl4=" + "hash": "70VyA8+hlIQQ4JwRBwkjdrRVYPDbvMoJ87YGdUalpbU=" } }, "is_incremental": false, @@ -980,7 +980,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html", - "hash": "/bXWjRVCPcp6fa2xgsKXQNYT6BtiBTTsKAaU2JGsL70=" + "hash": "CDD8KLFkrW4b/a264f9nHTDp/bgfzuZl5mPK+VZsrsY=" } }, "is_incremental": false, @@ -992,7 +992,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html", - "hash": "bqFF+nPbAyhIrf+ZsUqYwj/b1bwRWQRSQjSNH5wcQfo=" + "hash": "Q8B24K9yIxoWkUPaipT2AkmzWxghKa5ROJ59hVry/ao=" } }, "is_incremental": false, @@ -1004,7 +1004,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html", - "hash": "lSF/rczYj+mUoiHcOgRoe4AV0gWIXPZKCwzqJadlLvo=" + "hash": "4Ta9OmWNyBqa7qbnj9QPQd1u0s9PGOM3qXzqashp7C0=" } }, "is_incremental": false, @@ -1028,7 +1028,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html", - "hash": "DAfXUlKUw7XX3tkz5gIll7RkYHI65XVsNORRGVLcBzE=" + "hash": "0FG6xoW/5d2q9qIl/pCJg1zV0TG0Kqr283JPMIOes/8=" } }, "is_incremental": false, @@ -1052,7 +1052,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html", - "hash": "qc+vKyX9hiObq2FcEfHUYCaI711BGBBDq9PORrboQ9o=" + "hash": "UpNiCRtEvGlth1YFRiOQuZnz0UbGtSCkNz57TDQ7Ks4=" } }, "is_incremental": false, @@ -1064,7 +1064,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html", - "hash": "VfAvKLpSvcb2WSq8C+uGRLPKmMhmIzccxcYz9eUU6lE=" + "hash": "jwKu7bGSaJ5FZvsrCVXRh808KUxi6SdxFw4ofgxptkg=" } }, "is_incremental": false, @@ -1076,7 +1076,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html", - "hash": "D8lCrGvkmhNAdMtnRImmrigsuZgoqOcsDJM/5tWIuwg=" + "hash": "kxFpki8vAhyA9RWohzCRwWRmmYWGqYxugI43nSc8wpQ=" } }, "is_incremental": false, @@ -1088,7 +1088,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html", - "hash": "OyW+mxKRupkLD6MklIcYxBqCjrqfNc5VYncpXUAC834=" + "hash": "w7r08mQ7YowqaEeG6OEIeHMHpjwH/CcTRq/zsl4rH0c=" } }, "is_incremental": false, @@ -1100,7 +1100,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html", - "hash": "aCNkPu491MwlRjYo9LaYkB/KStO9VKN+Ti3nBkQUeC4=" + "hash": "0nGyq/lByIqvodVysvxNQPRQXSqRXtUBM4hCohf7Z8o=" } }, "is_incremental": false, @@ -1112,7 +1112,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html", - "hash": "TSZFv0+GiCvjPghPuwRIUlpO4QBVrLIYJk79is0KHh4=" + "hash": "4MzbNkMVmzQu0QAsUDQvs3GOgle+9besEC0pApQ4LxQ=" } }, "is_incremental": false, @@ -1124,7 +1124,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html", - "hash": "tTY8CIGY1IloLQWoTcdHHbo7Di1Z/xaGc/iVHqdrkS0=" + "hash": "Bab6MmHXlp2K5ZZ1AAGOjI+VJ0Dphvp3io1+mvkfOWo=" } }, "is_incremental": false, @@ -1136,7 +1136,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html", - "hash": "NjwZ/HKDUnJkm4qaz2jHhlYfBzwvBn2dA+OnuQqTknQ=" + "hash": "kd680jjuDTuTumWc+v9b7ktynbzdmYgPbBAU4+TGSus=" } }, "is_incremental": false, @@ -1148,7 +1148,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html", - "hash": "8M89x0aSVeEJFHoGYVu2zp6cr6YK22ubiT60qlJNyxc=" + "hash": "Bh5YBUVlMKqsMG9hiaF7e6YbUnxIYkQmMZrhNj1PGXo=" } }, "is_incremental": false, @@ -1160,7 +1160,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html", - "hash": "kesC2nDfqXFMmYpZEgMOdFqxqXbbwhqPpK4PJd6tB/Y=" + "hash": "E0vF0hnKmaDQ3xa0o5IhgMc7kEJpzXqg9xcyH62qndM=" } }, "is_incremental": false, @@ -1172,7 +1172,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html", - "hash": "KAVDZUbB2YbOi5pXqcC15IgvadhOm6OfAv8yL3f4/Vo=" + "hash": "LU/X1NdKem/QIXcNCinnHI71DI/DSux+bNHwe8nJ3cc=" } }, "is_incremental": false, @@ -1184,7 +1184,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html", - "hash": "ftxwOvQy0DfefT2ZmVT9pqW5OkzXrNEjidMZ11kI+pQ=" + "hash": "8nB8gPRkh9Dy62hBbYuNLbvwvpQprgvb93m0fAtXRNU=" } }, "is_incremental": false, @@ -1208,7 +1208,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.Address.html", - "hash": "frFshOJinjcqZlWT/C/RBK8Lku8nJsuyKBD7790pMXo=" + "hash": "/0zBQjHGjGbzPv2HA2iddIK0AjJdU7hLDvSYlorux8c=" } }, "is_incremental": false, @@ -1220,7 +1220,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html", - "hash": "cVAjinlYWDmuKZwm1rPknXh4I02IeX/9uPuZjO6Qxbk=" + "hash": "hKzD89+s74ysGmKh8szKAQGvZCpVcLzCXHx0KwTTUVk=" } }, "is_incremental": false, @@ -1232,7 +1232,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html", - "hash": "/1ssDMZcTMgzPYny760yPenPdpUHAkZWl2vsD83g9oA=" + "hash": "gVAUYwVjuT1Bx9BIvo910tkq20Nvt5wQo/1qmePsMgo=" } }, "is_incremental": false, @@ -1244,7 +1244,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html", - "hash": "MupRynhw+Sl0NaWemiFaiKs3/R5dA8L4T3pnzojTGnk=" + "hash": "87XF9Ab1bJYFPFXSbWEIT/6YTcSDS3a0hTjr1LhVpyk=" } }, "is_incremental": false, @@ -1256,7 +1256,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html", - "hash": "+2hDJe3ka4jQ8K0+kWgbhrNj8EqiD6M58837V1jaths=" + "hash": "5Wk7iklGB2yWLzYJLLkwboElqDhXJFBQ40LCSen+rWM=" } }, "is_incremental": false, @@ -1268,7 +1268,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html", - "hash": "dHhgg8B6wvyaJddvJBe71e/JNpH1nqq5essNJBtTQpU=" + "hash": "vEX1QtHjarZCSQXUHTdnjkaZONi/HPIsUQk1yjHlrQ0=" } }, "is_incremental": false, @@ -1280,7 +1280,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html", - "hash": "lj6kPmjudPucIrcBDaTtM5mDetCLet0woaagqxu/WlI=" + "hash": "sFLCEGBu0zqqM4kut2BfDJbBS+gz2cbAttWjlac9tIo=" } }, "is_incremental": false, @@ -1292,7 +1292,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html", - "hash": "AItekCtxwUjODd86CoRQyx2+8PJ9IL++notWxJK1Vjk=" + "hash": "EHHX6BfGEhCEYIbWFfrlIbvUfOQYXu6qGmwQrr9I51w=" } }, "is_incremental": false, @@ -1304,7 +1304,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html", - "hash": "PPRw1oGoyZFyDkbeehf1EvS4P/2tGIVOIJ30z9sjfyk=" + "hash": "gns+vFe115gia0wiHl6tgHgIHNb3tFY+54kMlHSnx4A=" } }, "is_incremental": false, @@ -1316,7 +1316,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html", - "hash": "Du2LphYVkoT+qkyRXSYsRIcI4jwNwNHiRQ9KLnKst40=" + "hash": "hVC1JZMLYcYFQ6qfPHBnF7YJ0GfKzesSY0iH81N2/QY=" } }, "is_incremental": false, @@ -1328,7 +1328,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html", - "hash": "/H9vBhKwy0Zq+DA7YjCAOy4PDBpvDe6fcJRgLu1sG9w=" + "hash": "p4dggDb7JqUgnNG5EMRBF/4tfgZPPMBTc+v51E8wbxo=" } }, "is_incremental": false, @@ -1340,7 +1340,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html", - "hash": "XWX3QiGEWn4y2awS4uAujdzPa1UWPv75fwWtU0cq1pY=" + "hash": "uUQpQSG1Ue+d/au5GSGY9M2KFkz2Db2TEpbtxEx2ei0=" } }, "is_incremental": false, @@ -1352,7 +1352,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html", - "hash": "671q9UBOq2Mkl4QCMDHxNrmC1YeM1yB97zDIQTprAnI=" + "hash": "gpXe1ViAYJ+jin4HkFNqdEgNwhpdAAy76qsvt66p00E=" } }, "is_incremental": false, @@ -1364,7 +1364,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html", - "hash": "N0dmgL0dtwZCqlfmllsYVdbT7pTbejwFzWvgjxCrsww=" + "hash": "TJSqziCUupL145wvYmrWOobrv7zidkl5q3n1tbMCM7w=" } }, "is_incremental": false, @@ -1376,7 +1376,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html", - "hash": "YbFZuS6oMPhdyxwqpvGe4A11Jj06TG1wJu3NuYfNgo4=" + "hash": "NCVf1tF3UUf42PjA3yV2ELmFWUg3bSJns3wnF/rCBTY=" } }, "is_incremental": false, @@ -1388,7 +1388,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html", - "hash": "27PhRzm7E3sI7XivcNhJbBCDkGLC4q79KDKwDJ8B57I=" + "hash": "FT4LOi+vuRBA26rQmQ30XLtcZWZRroZERMpJOo+S+XE=" } }, "is_incremental": false, @@ -1400,7 +1400,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html", - "hash": "m5SULv9AfzSwybk2h9KEQjH4WuGrFXjxdm2P2RtU3AU=" + "hash": "xhTDDZP1BG7G7wNKIoXTV7QlAJp7mFlZorUdZHtqGpg=" } }, "is_incremental": false, @@ -1412,7 +1412,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html", - "hash": "SnhOdGBJ8ZgVZ4UnkByXUtv5DpFUCvaMthBkyDXFhbo=" + "hash": "ozJfoO+dMNLyC1+UXcTlV19czivgIyFvIpcssC63p0o=" } }, "is_incremental": false, @@ -1424,7 +1424,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html", - "hash": "ukbewo7ivtjSD/zmuYIpqtT4AU8tOleFoMxDPAqjuVI=" + "hash": "WZeZb1Yk1UpmWsrXwTeRqg0Frg6/vhCesj8YUJYblHw=" } }, "is_incremental": false, @@ -1448,7 +1448,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ITxResponse.html", - "hash": "l6g22NjILpNDQlIaiF/9KZrEjDdPYI/lZr64yl8Fwl0=" + "hash": "Q1BNfltQs9bzqSMJHlgXPrUrc5ZAWuKJYURpQz1xCII=" } }, "is_incremental": false, @@ -1460,7 +1460,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html", - "hash": "CgwNgctFY8m8SnYWwVgpuGKE2aSkGaccGfVuovqWAks=" + "hash": "rUPrjUOHdqI3wSzCTEoZZrrizMgZnjzeDi7Lj+iUKuU=" } }, "is_incremental": false, @@ -1472,7 +1472,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html", - "hash": "GRTzja/R7M3BnCRYrxDornUD4yFEuVkXRiY7EW/1Y/k=" + "hash": "GZLYPIVYboq1KDYS+MnMx+F64QhAHH+SWyKKJUhIR64=" } }, "is_incremental": false, @@ -1484,7 +1484,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html", - "hash": "bkFdi10yZBj1fpNbg3s4zegsGSITRUfvPgLvEIJZugI=" + "hash": "MmWbCiag+0vKsKl23+6+sCKrVAbcTw5U7fv91AmOZzg=" } }, "is_incremental": false, @@ -1496,7 +1496,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html", - "hash": "mdlxqcEHs1bPc68Jfzb/RgK+xr5ocKdzwPa75Zfp2Lc=" + "hash": "j0TC7rBJjwjXMeN6sJeRZdGuh5OPiWWkYMCG2k0jxIA=" } }, "is_incremental": false, @@ -1508,7 +1508,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html", - "hash": "2hjyJkJs2CqjwwI5CTGNXN9EPE4WmMQqbH6VqVxddsc=" + "hash": "2YWE5KVlt0CO52wIwpZsGKKztopfocjeQsLkVtwaiPM=" } }, "is_incremental": false, @@ -1520,7 +1520,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html", - "hash": "RH43fq54OL0l/g0LdHyNF5fB2YLa6/Y4yB9UoS73LCE=" + "hash": "8RQveZW4aYfH4Z6slVT289yQ8vYUlKnY8mGT7kHq5qo=" } }, "is_incremental": false, @@ -1532,7 +1532,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html", - "hash": "Crv0TtSEgr2Qh8+Q37NBPeZusFq5MKiXaSIeh+EU/lg=" + "hash": "9+EvyWLDMYFM19kik/J81pMHc4yNRLekwYespY4Z61g=" } }, "is_incremental": false, @@ -1544,7 +1544,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html", - "hash": "fzmN5jPfZ1DgZP6ulFrkFPismsRY8+YzIwAEFzw10lw=" + "hash": "gXJaD3Z0mRBRmTbWniqORvgn2GoLTTd7JU19Tb9BelQ=" } }, "is_incremental": false, @@ -1556,7 +1556,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html", - "hash": "dEULhQpwNmuB33AVaf0pYGEWrfSIB0TSzshk0ndVc5o=" + "hash": "sSkVjfUvAjwLfASkCtU/UCE8lC/+fDkJs+WQXDVLVFo=" } }, "is_incremental": false, @@ -1568,7 +1568,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html", - "hash": "1yKBMyy/o/9sWRHXZiaVnZrC+z8KzAKqjTJfdMh0iF8=" + "hash": "W+mI/gCbknBAFf/4f02rYAIVkE45UvImhESbwcuyH5U=" } }, "is_incremental": false, @@ -1580,7 +1580,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html", - "hash": "Ap18VUArZq8T2ZprULK5b89Zr0KZnX0SQLmyV+rfjr4=" + "hash": "0vFQUwSwU4bDq0ApU1H7b1KcUa3CASYJbqB3m/YCMUY=" } }, "is_incremental": false, @@ -1592,7 +1592,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html", - "hash": "GEdYNJcPeTfyleMvPzhcdWxfeHJ4mCC0GApH0HA/NSg=" + "hash": "e2N/zFhCa6+720J+iZ/NKgWXN7DrwSqUEdzvmdWKcQY=" } }, "is_incremental": false, @@ -1604,7 +1604,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html", - "hash": "lcMLO7H4bGUn0UoEgUOh4R1Cypt7auL/PdZNAh6wBZc=" + "hash": "2WuZ7DiwWURe/p5ii1y1VtOVRrbOu65KRqFpxnqmKdw=" } }, "is_incremental": false, @@ -1616,7 +1616,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html", - "hash": "7ErMiwtiNdEsyxqOyV5IiVJLBZjB7RIOeGwEl8T4IvE=" + "hash": "hFRJ8VvaQYuT8XeUvdLxhaoFETuGk/43tAQu2lcEjT8=" } }, "is_incremental": false, @@ -1628,7 +1628,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html", - "hash": "llRR/JV2m0nfq/F2Hcig9Bwg3KupeZ6XhhBnsjqswp4=" + "hash": "y+ouLKznZxd6+XJUrAOr5BCBxlTQMWhUndyrK7uUbSY=" } }, "is_incremental": false, @@ -1640,7 +1640,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html", - "hash": "OD+55Cifpx+ztA/FKY9d4LwatJEWIQGoA/TozJg2994=" + "hash": "y2b0Zm+KRnIE/wVZ+LVMlEGcviOL3bIrxVlF3rpOI6U=" } }, "is_incremental": false, @@ -1652,7 +1652,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html", - "hash": "xAEKVBpxYNUWkj1iqKfEJuKdmSP4dXerRL9UYzM+VwA=" + "hash": "o3To7UFi84HsgI/bf2vYJ2pafTd/szPBkd9xANlTnVQ=" } }, "is_incremental": false, @@ -1664,7 +1664,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html", - "hash": "+8+YDH2wH0/ebxsvDEZuXRbAko8k/ECMYZIPzVJG0oI=" + "hash": "wJIJBJiGPaZupZljEXOccocWB1gCe6WO7r6zlR8S7+4=" } }, "is_incremental": false, @@ -1676,7 +1676,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html", - "hash": "fguXvJr2XHwkIbNHTvntmaBzCaVXCRzkZ6+47vxqFTw=" + "hash": "LejsEOuhdfo2OCnau42nKaBR9ExTsomaZqox6gtTJp4=" } }, "is_incremental": false, @@ -1688,7 +1688,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html", - "hash": "9IF24WGGZGGL9ERO4wklH3vhbhdwDvNRpi8GH5Bi8+4=" + "hash": "GA49Vqy/BqK5z8zWuMCk3gy7YmT7kB/MIeBWwYKE6NM=" } }, "is_incremental": false, @@ -1700,7 +1700,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html", - "hash": "3Iowsq5SCKXgfGQHwjHXxli4Uid3c3X/7gD0k4UlCkQ=" + "hash": "OBGE6Hs6da5fviP99406wJ9SJDeo3RGbZ6PB6VGCVmk=" } }, "is_incremental": false, @@ -1712,7 +1712,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html", - "hash": "3KfcqClJhrZ8YXT6stKNCgY1dvsLlR6TzWY0ZJTlENg=" + "hash": "kCB/UbjjmTy71/1z1Ap7XnmB5LxhOW+gVdTIXL1LM80=" } }, "is_incremental": false, @@ -1724,7 +1724,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html", - "hash": "C6vklVif1jSIQ3SaJnskz+ygT3f4ov56wHaaueFYqN0=" + "hash": "iNO+2dF4pAY7vp8bk4PmM4gooMVY/vEiJGpNvtIq8LE=" } }, "is_incremental": false, @@ -1736,7 +1736,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html", - "hash": "GiPEhr3TfhLhq7VlU7/aWmj/W/ztFOv7bBofmZYA6yU=" + "hash": "fNPHpKcsyvqOBIwNECWD5gEHLC12q8Xwzy6sTE9byto=" } }, "is_incremental": false, @@ -1760,7 +1760,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html", - "hash": "AuI0A2bEAkXSTf80LmRKo4kULtjyDg14M4mPshzhNS0=" + "hash": "8OHdhXchpZyVAJ9h5SE34MrVbBxFkT2xkRzFlBa1fQg=" } }, "is_incremental": false, @@ -1772,7 +1772,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html", - "hash": "GZg3bDGLbhiK4Bkcxn/u6f8mYUn3O7wxBDwkIaU5iJo=" + "hash": "C/lGrSQ2gOai6cXvZwI2agPqQbG6m8ueNbonWkJhmMQ=" } }, "is_incremental": false, @@ -1784,7 +1784,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html", - "hash": "+JTaqLpSX4Q4VNP8NPhHcvnO1P8xv/doGTwP6v3K1yc=" + "hash": "O90N+/py8zDL8M0io/fdXWEo0OC/byLMTl78STxU+Sw=" } }, "is_incremental": false, @@ -1796,7 +1796,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html", - "hash": "KNuey1qErrFVWU+fEEbpkd2V/V/EwLW2/PzvLWwRHoc=" + "hash": "/q1Ig9aAh8ff91fNdsdIhJZ6nabV3i8fd7wbTYlQ/NE=" } }, "is_incremental": false, @@ -1808,7 +1808,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html", - "hash": "ZFN8KxnGjTFyxClaq7yOXGcBUfJovzKu5MnyH6eQ79A=" + "hash": "WrjMqRzYF2BDUOtOrd2qz/hMIrliSAcA8H7pC3etp+8=" } }, "is_incremental": false, @@ -1820,7 +1820,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html", - "hash": "IiVgjFY0lgN9vYvrwRCi1yIgrMsbIndmz8levgdAl4c=" + "hash": "tfEoirTP8gwH6g1hic0SeNKoMvU+Fm8gMfzyHL6ATQY=" } }, "is_incremental": false, @@ -1832,7 +1832,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html", - "hash": "ucZi6gfnmhgrKZSQ9euc4CNCTIadoEeOZYBQ1uNpBHs=" + "hash": "DuxMq/GZ1bCaIZ0i5Q6vh7LIvLOgc9GwaPniyjWkqew=" } }, "is_incremental": false, @@ -1844,7 +1844,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html", - "hash": "ORF/SYthV+icNO4Jc2s5d7nh2Mil1qAWxIMa2se0NeY=" + "hash": "QTujlUDAin+PVb0ts5ezLAddnqYh8cq+vaftHU2lxFs=" } }, "is_incremental": false, @@ -1856,7 +1856,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html", - "hash": "7FfCC/H7U9krJnfANf6yEn/IHJ54N3LXREJ5YWqATOc=" + "hash": "CqlmTMbbsimm3hwVIqeX7r2u3P0PiwaNxjBo0ZqNdPA=" } }, "is_incremental": false, @@ -1880,7 +1880,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html", - "hash": "56svVHN5jyaJ4m/Atd27NRPHxKYh3MahV/q7cnITUlU=" + "hash": "TI1CWzRAomCEh/aZkQAkB3/00CTEsulJBbqNyA+H8ow=" } }, "is_incremental": false, @@ -1892,7 +1892,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html", - "hash": "HvMJTS+ym1EmnRKJb9wvvF1gLlX4H2Z8atGNOBIpyrM=" + "hash": "Ezn2lNzRlALkcq9bpG6CF36ythpAz2Uuh8n06KV69UI=" } }, "is_incremental": false, @@ -1904,7 +1904,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html", - "hash": "+qSEVCDob/7rTkSaAHn+SzH6fAPVvmy7CaLJ46cLZnY=" + "hash": "QxbavbXQ79ZN3OK3/ll96YeomPzkHMjJRUIY4RVOEdc=" } }, "is_incremental": false, @@ -1916,7 +1916,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html", - "hash": "uT35QbNnBNJP8H1Ik77AcbPXNyjSqOYoQGIQKlBm2zs=" + "hash": "ixuk9XjbOFQFy6rO/5f688G6gMGlvnpFvBzRt2moKXA=" } }, "is_incremental": false, @@ -1928,7 +1928,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html", - "hash": "a/nG3CNHRJHlTjMnHxsiTYLrvucvxWcLgGcJ1WDswfM=" + "hash": "bERu/3eBf52b2XqKF+jO0+18tkXbaUuh4LTITYpYvHw=" } }, "is_incremental": false, @@ -1940,7 +1940,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html", - "hash": "A3tltobAvXGiWfkGy9D+oz2e4kzf6J6T8zFq+pw7DmU=" + "hash": "VChEA+aWSP/vv+RAQ6WsKI+/n6zKilkOSgETGD3N3Cg=" } }, "is_incremental": false, @@ -1952,7 +1952,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html", - "hash": "YVYVgG0DiNyTRTR0WQSiyl1K3Vo/pDX6SXMmfL/oFco=" + "hash": "pCDeICSiLKGDOjV3u6vaIeaeo0ezqfQDJPUaI2xTPI4=" } }, "is_incremental": false, @@ -1964,7 +1964,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html", - "hash": "NRPMnMlZeG8IgJ+GAl3y/guP9Xe0zMblfqTwn2EO7KA=" + "hash": "eQE5ud0skW6kx88NFaQ95CT88G+ACdjf2cxB+c8PL8c=" } }, "is_incremental": false, @@ -1976,7 +1976,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html", - "hash": "iY+FcfsiFCxAClYmWAX/280NqLEN172TJY+0dD3IUz4=" + "hash": "4r4VjUU6L4NW6dtYErIivYkfIw6HE4KLj/d1FKUzuKw=" } }, "is_incremental": false, @@ -1988,7 +1988,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html", - "hash": "alhXXDcBLg4v4TXcK4omM7POelH7BntsijkIQRKmcGk=" + "hash": "YLLRzd5wZOzyp1OgBu30iDQm6kjWmPPViKXiT671zb0=" } }, "is_incremental": false, @@ -2000,7 +2000,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html", - "hash": "v2nsG98MtlJwjzJ3NtGJmvbA7YfYiS5ms9lHNwGMqog=" + "hash": "5H8bydcYKBKLflPVDWvVjKS4zNHxh2Tcv9MfZtWN1VI=" } }, "is_incremental": false, @@ -2012,7 +2012,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html", - "hash": "oh9bg2x5RXIHVg4zQL4e9BmiY2aRutQIrrmPe0mCMmw=" + "hash": "G+Kpd41GwApLorjY4OS3E6kKZbn0ZOM/n6/n4NX4Ess=" } }, "is_incremental": false, @@ -2024,7 +2024,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html", - "hash": "Xjl1BeKrxGF533MpOY25J4JMcIwC4rBEaM0a8VdwLQA=" + "hash": "Xo9hmove3nPZ9oGqtEVWvkXQZT+Fkt8tH6HExXpV1tk=" } }, "is_incremental": false, @@ -2036,7 +2036,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html", - "hash": "La/q6yqtorjVkibwiNEfA4j0SBRLXym/Nt5TjFFIdOM=" + "hash": "ixYBwkZurhwm8ySf/X+iL9U9WjwvRf7D4+REcwVfiNA=" } }, "is_incremental": false, @@ -2048,7 +2048,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html", - "hash": "9YrqSQ9+JrAGUtkjr7disCrZVvhO6UANEnzLmW+NhKg=" + "hash": "wfCtmEedlHkr2apm9E6XdKvsLHSLubUx1d/RmP/O4Ho=" } }, "is_incremental": false, @@ -2060,7 +2060,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html", - "hash": "xannYUz7RQmMuqGsU+uK98y+po3tbhcp7pXwj3XkKyk=" + "hash": "nimQ0WUEjCnLPMHfNG/JGXoGpHI0racGXFT7NlK+sv8=" } }, "is_incremental": false, @@ -2072,7 +2072,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html", - "hash": "xUZzS7aEOfFexyccN7MmHtjszG9CLthvbmkFeX7/Qcg=" + "hash": "9SZTYggoOsb3Cx5TdvQ8Uk7CR1aj32edgsdd2YGYG6E=" } }, "is_incremental": false, @@ -2084,7 +2084,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html", - "hash": "MQg82F0Bdn+ECtkTjrh1ebajgn+nlVKiWMuVyR79Udw=" + "hash": "pqNjdijUkWlVCOUFj6ieJI2BeLDL/fmCV1auC8wIpp4=" } }, "is_incremental": false, @@ -2096,7 +2096,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html", - "hash": "TGYvrm3D70YluirjdYroY6OnqD6nCEF40X6xPQ9ZIuI=" + "hash": "8F+txsjUxcLbHowpqtARHivS4kCDzfGRE3Lggu8e7f8=" } }, "is_incremental": false, @@ -2108,7 +2108,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html", - "hash": "Ee6WTu5/+bMm1PhSKOtAsIlZMtVE3SdD5DhlJOH4H6c=" + "hash": "VUD0RqCpm2KeDoySmjzF0mi+8+JjvUPZfOkipMgPBxQ=" } }, "is_incremental": false, @@ -2120,7 +2120,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html", - "hash": "B4vIjPLqPohJI4F2hz5r5COJcs8h+O1sABxZrZ1OpBM=" + "hash": "8kp5n5GfQvLZ1nu6gahgtUPOsYIhNGFYBH8SpM01bEk=" } }, "is_incremental": false, @@ -2144,7 +2144,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html", - "hash": "9uZhxY8PFEVU/wVM1ofOboQdDbM5DvMfMpTuDI+tEPs=" + "hash": "Dmr5yd7JOvfvy7p/2DPUfB0/Q7fjPMkOt0knyg2X2L0=" } }, "is_incremental": false, @@ -2156,7 +2156,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html", - "hash": "c3b1ddvFC9Rb/5Gsp6jy16E5IY0Xlb8tKdPOiN+Irsw=" + "hash": "u03IBrClQ7jz8fViHOgiMQcy1y8nL+eQ1LwlcBSHpjI=" } }, "is_incremental": false, @@ -2168,7 +2168,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html", - "hash": "XbHrfcyMTy9bZl763GH7jbiFBzxiI+9ymIfcMZavUQ0=" + "hash": "z8INup0uOOhUQvCJ/Eyg4N+ZkOPCKE8k2vJiFg3WTEU=" } }, "is_incremental": false, @@ -2180,7 +2180,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html", - "hash": "wn08Wu2bbNxWM+quO/3aXs4HPOOAFp5Ge/WxQ5Nz41o=" + "hash": "WcWixLGoLvVcFaINhJxi1EyyXJ1tp6aggaWp8+iLSIY=" } }, "is_incremental": false, @@ -2192,7 +2192,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html", - "hash": "OPKVtYQ5bIBHmc3RMkmJWjoPmyPIik5C6ADeqgwRIQs=" + "hash": "NMXk2DxuCQCTpv5gLw6tVh5qtUv5ZhVPfs7cnzpBVKQ=" } }, "is_incremental": false, @@ -2204,7 +2204,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html", - "hash": "/th1mJXnw+j55fm4fxsIFbrzyDXbn0mLKTZPBbMRNFs=" + "hash": "PrJg1WzbcgOgix2OmD9uWkZvDX7/49RLgKxkfxz7GdM=" } }, "is_incremental": false, @@ -2216,7 +2216,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html", - "hash": "2EA3SgQXkmEdtDYYkEBMLQjpmVftbv+JUvCXEhvxULk=" + "hash": "R+692IkZbUU/lvdjry9r+3WcEe0+JiIITdZTw1Z8Cw0=" } }, "is_incremental": false, @@ -2228,7 +2228,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html", - "hash": "1/4WnDr1QPqbSChQA7tBcLNZi787pDzND/n2+Lw7gos=" + "hash": "FwILE0/mdfph52CVOeY8Y52/miidxm2UqWhQk9/h9Ik=" } }, "is_incremental": false, @@ -2240,7 +2240,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html", - "hash": "AyESwtNmBBjPX68PCLo8FemOUvU1LPv4OVKr93VSG5I=" + "hash": "3oFHA0WSpTPogmIRpkKlBlmyq0Hp+wHUTsTA5MZRoB8=" } }, "is_incremental": false, @@ -2252,7 +2252,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html", - "hash": "noP3BVSnEtILHWpUe3r96G3+UrVzDg+JzjCL+5STbWs=" + "hash": "xx2uzx91RdvG/VZ4dZemCubpFHRZUBeEOSLZ3pvoTT4=" } }, "is_incremental": false, @@ -2264,7 +2264,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html", - "hash": "l6V1Bkv9GuG84Tr13NmupznbX0UnirXUBy/zWAnBmo0=" + "hash": "4y4DvfRhg7WLyM2VEmvhDXfBHdGEd9TZDJcNyU1kDHo=" } }, "is_incremental": false, @@ -2276,7 +2276,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html", - "hash": "WS8QQNcFhuKd/Uq4RqhP55/n2/aMP8mpH+ELficnwGU=" + "hash": "jqbHnW0uiIPrECxXFV5o1h9PK2gtRjdbw4O9rDzYWk0=" } }, "is_incremental": false, @@ -2288,7 +2288,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html", - "hash": "ifnunYLunv0DN9UEvsRNB5P2tCpKg62zef4CioZF1sI=" + "hash": "b185o+0SUR40RK+m3jwfRtkXP55ggPS04lDaaNUzGwA=" } }, "is_incremental": false, @@ -2300,7 +2300,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html", - "hash": "XkJ+N3MDUvy3y7Hecc2deThwMh8NMYReFH+q9FYB5mI=" + "hash": "kwpvZF4YKJHXmyG2qW5vkbKufebiS37cpM9B92xlmrE=" } }, "is_incremental": false, @@ -2312,7 +2312,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html", - "hash": "WOFOoAEOGprfmau/PQ4eNDSSbLIu+DIamoTQpBQD5Vo=" + "hash": "bFVL6bb0v+/4xiSg8voDdG8deVzQqxrNLyGSCImb8C8=" } }, "is_incremental": false, @@ -2324,7 +2324,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html", - "hash": "Es7ClKFoHR3/zFcbclFHSQhxaHaOetP/+kxT4LAMdZ4=" + "hash": "0S3o3IZXsAEc5WLrle8SGdw3gZOoIWKIg2lE+EjbKfU=" } }, "is_incremental": false, @@ -2336,7 +2336,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html", - "hash": "k5arKoLqWL0yzWdG4pvswBLofAZ1AR5A0b4+FSm9V9I=" + "hash": "FYa7b1MCaXWunWPG6lARWGv85p0ZEnHTJi20zvhbZ0w=" } }, "is_incremental": false, @@ -2360,7 +2360,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html", - "hash": "Cpy5dQo+WriqPlf7YEqx/YwstdZPLwW7V6UhFw2JSEY=" + "hash": "9j8siLd057Aa+1Pf+UVYmocMIImZfkkKaOdX7KEq+h4=" } }, "is_incremental": false, @@ -2372,7 +2372,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html", - "hash": "F6dKjdTZHUub6W7+dCba9dF+6FntDjhJbSfgI7/jYxg=" + "hash": "H0807t215a/5zhAsIfxHC2TsDj9JKlylk3802cuQm64=" } }, "is_incremental": false, @@ -2384,7 +2384,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html", - "hash": "OMv+uURpwdIlbwbN1DMgMLI6tQwLfd8ons5zot5M5NE=" + "hash": "NICXOBvVmKEvubxTGG0WYpMafxYelQ+O8lAryO+aCUM=" } }, "is_incremental": false, @@ -2396,7 +2396,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html", - "hash": "rtfTYDEG1iQgxCTreLYZZWWbMsLS/dCorQHkj8CiVMI=" + "hash": "cBO8ip4TE9mg4C3DukGNfTXItEV8khWe+6cEEKpUlws=" } }, "is_incremental": false, @@ -2408,7 +2408,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html", - "hash": "Vgwim5Z9qe2lGq5Lytgjts/ModNNIFj71ajMCieHaWA=" + "hash": "PZBXgfty3xjvcN1ndjObO1N3I20ob13okoZLwClSvG0=" } }, "is_incremental": false, @@ -2420,7 +2420,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html", - "hash": "kYorsgLDkh/O30og4Z2TU5vhb2eqLepfbn+q4wfoye8=" + "hash": "GQ5/epAL47j/F/mY3Hj4U7A18k3gf7dhRbXALBvMy0Q=" } }, "is_incremental": false, @@ -2432,7 +2432,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html", - "hash": "G3R7IXUIf4MciS5Iag2b07nP76ynr0pM7eYMvXaaZrA=" + "hash": "Ig+kypSb0Ocvg9OMVwfdI9JXNaz199dH76Vp+opWZeE=" } }, "is_incremental": false, @@ -2444,7 +2444,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html", - "hash": "mOZ35RGadz5pk81kAn3Gojwm1xKk1K0eHwve0PKhPPY=" + "hash": "m8NL1DpNuZHGz4/AEwOlSV3qWUThi2EqbJ9EvbCamwU=" } }, "is_incremental": false, @@ -2456,7 +2456,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html", - "hash": "N6ZjR8U91ZlTYEaTx/47WU8X3heA9asCdrDTF9hld5Q=" + "hash": "TB3XrauL0Y3nhkeGgmLaVyIvQn1B5+F8mjXBP/jDhLk=" } }, "is_incremental": false, @@ -2468,7 +2468,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html", - "hash": "X5DENz/Ej7wSms2sgyx653f6TdHPHBfOhV9UnlsXd1Q=" + "hash": "/zmjwd9HdTzaphx+2UG8IGGBHXjC/XN4IWHyWFCkfGY=" } }, "is_incremental": false, @@ -2480,7 +2480,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html", - "hash": "2Gi4sdNTCUIXmglJ854u52Wqp/yN7Hp48wWfxcY+RZM=" + "hash": "XADNbmkEO8Oik+2qoOepJuPT5zMOuNaKUq9aBNaR9uc=" } }, "is_incremental": false, @@ -2492,7 +2492,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html", - "hash": "Sd73xH41Vqy+TOZWznORukHjq8Y1DyyHKiQVAyvQ1qc=" + "hash": "+0p8grzMF4GLdfssxgpvm7hR1gAunqSs4z99ZtHA1QY=" } }, "is_incremental": false, @@ -2504,7 +2504,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html", - "hash": "3XsqHj/ayNEBm6eCFMDKT4Z6qMWQjHc/mMhCZbyZts4=" + "hash": "vVnFCvLbMM2pJ/kpgDOZNTRHF/vGa90G5p5gHivAL84=" } }, "is_incremental": false, @@ -2516,7 +2516,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html", - "hash": "Hwjq/n39Uis5jMc7RHSe42gQoL99BDWAlmsJmupmR9Q=" + "hash": "s02xZWxMkWFScsInHyLHXhh62aQr/yizGTp4CjrMmTo=" } }, "is_incremental": false, @@ -2528,7 +2528,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html", - "hash": "1yB2oJbgckCV30jGeJq/uMj/CUxRg7SY3MCJOBod0Rc=" + "hash": "RbVPBlbA26vhniW+M112+sNowPaG9Z4IBuAMm0oejq0=" } }, "is_incremental": false, @@ -2540,7 +2540,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html", - "hash": "aafj2GnkQu+rRREv596Xt+s7qlEKfDvRDHhFXWifZo8=" + "hash": "ehnUhnOOwTAC7gxO7n2UenRnh4GXSzFlqJWtcSg5i3Y=" } }, "is_incremental": false, @@ -2552,7 +2552,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html", - "hash": "MlskEyxn29AnSKMxHUukjie67uO/h7WYzDkhVhTJS6g=" + "hash": "12FwadzIzl6KU9UnNwGMJdb969+jQB8D7EiorStBFNA=" } }, "is_incremental": false, @@ -2564,7 +2564,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html", - "hash": "twLXls4IQQZFGi9opSmBuKK2P6//hWQkG16qCdKTYrU=" + "hash": "XrbAeoNDyGfvmyvxBNXZ/1kvaTphSLPQtwGmAjCWAmg=" } }, "is_incremental": false, @@ -2576,7 +2576,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html", - "hash": "bNyJuGJ5lxOYerP5mvOXAvBzXMLQAkch5P6lQTUoDe4=" + "hash": "1R4/dUrquuhf8j4C8LdaARo+cZqkKFd9BPfAh5rC4cI=" } }, "is_incremental": false, @@ -2588,7 +2588,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html", - "hash": "pUYjoqgegvysUtGFidQt4C0/bmH+sL0sAGWVxllUFck=" + "hash": "AVIu44f6K3jjpSRc2dAkIjvTWuiM/5CiDaICpKLcB/8=" } }, "is_incremental": false, @@ -2600,7 +2600,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html", - "hash": "DisNMSZMydDr3iO1u1lWT1FJCb8rYjXIzPRi60WDTXY=" + "hash": "u+6/+LL0r4/2HZcMgjKXKewmTxSvV/MCEbPF2WUHIx4=" } }, "is_incremental": false, @@ -2612,7 +2612,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html", - "hash": "lBY59OizP5ulq0xhwb24J76lcX7tN2MCZkaNFTYBWhU=" + "hash": "ia9REtXLCLwbsnzVKr0zLhx4Tp47BvVxnMO24JdHY/0=" } }, "is_incremental": false, @@ -2624,7 +2624,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html", - "hash": "BkNgLE9TTQ0B3oQHBIv6I1FeyrJDwJ6B4m9n8LhxPwM=" + "hash": "WlhzMijWFsp2A5e2L55r+88YWJhyVDY9K4/4I+HnqBg=" } }, "is_incremental": false, @@ -2636,7 +2636,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html", - "hash": "+kz66e1rY7a6sRkSSy7mUFRpauTtU9U73VMbqM5xg4I=" + "hash": "tUOqzq5e+Ww8W4iEZ0i263KOfQQApIt+ci6rO7OmQ+A=" } }, "is_incremental": false, @@ -2648,7 +2648,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html", - "hash": "UGmrMv8eUtwbJnQZ9isWryYs12nUG0yDgO7LfXsZPpU=" + "hash": "OZt1c02pETNWJNf3GcHoTR3BJCEhfhxVy7AkE3V0OWo=" } }, "is_incremental": false, @@ -2660,7 +2660,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html", - "hash": "ylksVvyOlgdvD32I+qfeaLf/FSFvaFVTsbORu9krRn8=" + "hash": "X1whIQwTJxlu4yvz0/BrX6nDwgRKo8TFxs+tf3ZVZCM=" } }, "is_incremental": false, @@ -2684,7 +2684,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html", - "hash": "OKfXV78t5VOT5CbYRJU7H7/mYfhLZmsRiu9P4qaE/eE=" + "hash": "xi0Q9YLPP2tEIqxBwALA/VjCauSL0i6LC50E7UehRzk=" } }, "is_incremental": false, @@ -2696,7 +2696,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html", - "hash": "bkvX68THU9jV7E0OOJu2Xztz1jUMKMzqATl+yyYwyqw=" + "hash": "56YRfw7r+SXOlIMBlDr5bgLX+J7UG19znYM/sM/euRo=" } }, "is_incremental": false, @@ -2708,7 +2708,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html", - "hash": "hZrKCPciLLH/MiYnWXIcVcTN3jpKWx30lZkKgWCtnro=" + "hash": "iQBy5WDDtcQj1lqNK1gXP3abclPtex72Vr3LGmKjAcc=" } }, "is_incremental": false, @@ -2720,7 +2720,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html", - "hash": "WRwC+iJXKsXUe2n76Yg2VLf4xbFRqSwJ06bJti8bXQs=" + "hash": "oIWQ3u3STTyVlZTxKlhLfqQeZMEtnuOd08UPe5P/ljs=" } }, "is_incremental": false, @@ -2732,7 +2732,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html", - "hash": "d5q1AzG+8qHIATk2SShiw3WBhlnMiK/gbue1o+ersWQ=" + "hash": "h2tAP/FUQfsXS+nyztJPNFbce8biFBmNyHHZlJlbO/E=" } }, "is_incremental": false, @@ -2744,7 +2744,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html", - "hash": "vaxuAVaKzFyJ0/PbYuir9pJVBc7XpA0Gt2Ubc43mNKs=" + "hash": "mUHr2G2TpXJ8nu54plPFwwettzipttg///XclMkLhG4=" } }, "is_incremental": false, @@ -2756,7 +2756,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html", - "hash": "B5WFpAJ0N4oFXHZHNfmt9Ht3bnT7Rd46VHq61K5Thp8=" + "hash": "3+txRdeyKPpf2IdczzLCYSfPeeW2mMoVjyfZQMDkPvM=" } }, "is_incremental": false, @@ -2768,7 +2768,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html", - "hash": "fcsspzEM2FBuoHF8vF8HewW5spT5Lg0sK8AR/pSS+t0=" + "hash": "crRXzit7TaOWtToD8Z/k1W5nsffJjpW2sfQpsac39p4=" } }, "is_incremental": false, @@ -2780,7 +2780,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html", - "hash": "GiHI26dbs4TT5nCuwPJVWRisycvdPh9t/RfmmNHO+OQ=" + "hash": "GK6TX99BC8/qlcyaLwIl9F0ArVkaYd4qqZ74G2kJezY=" } }, "is_incremental": false, @@ -2792,7 +2792,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html", - "hash": "BLnBPrXiDqC9tB0RN3go+P3sPPFvDGDzti0vbRPoQN4=" + "hash": "J1XO6SPHrrdXTA1JTEpe4R4O6a7GZWTCviLASNhNk9s=" } }, "is_incremental": false, @@ -2804,7 +2804,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html", - "hash": "W9/9WPl4ENYik6Erxl9QIn8AtTvPPmh2LGqcQAnMsZ0=" + "hash": "jZqEfLA+NcrUNSQFxgukh/8FLTwxK/7tTeFcrKHJkyE=" } }, "is_incremental": false, @@ -2816,7 +2816,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html", - "hash": "rj/C5CLtlggMJM4bNQDGyvl1XQuGMMaZ3Bitr/Ttn38=" + "hash": "2Zx4jylOPScK5uxCBnERwpB0fL1UB1d60Cwm4zxZOZw=" } }, "is_incremental": false, @@ -2828,7 +2828,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html", - "hash": "uogs1jpfxh4iIKDiyj2fcy8LcTOqBbZXbyJuSxyqtJo=" + "hash": "T6h5vRc6plK2LSTsgR+YSTFxO/7Gvbtwck05EtmmsAo=" } }, "is_incremental": false, @@ -2840,7 +2840,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html", - "hash": "c8gItko/Nmt5FBgOM1igzwf4yFtlgb13ObQtLnJ8mvY=" + "hash": "Vq36dYmJFVDtlU9OCN4ExFnyFIWeESfvekPlnolufuk=" } }, "is_incremental": false, @@ -2852,7 +2852,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html", - "hash": "t8cWofJIfso7mdyqWSeR0m3n8TnODOo+lFXdAY3pO8U=" + "hash": "Rs6eXykeqRk8hw8orpFVEnrwWUi734fua12/PYFKKNU=" } }, "is_incremental": false, @@ -2888,7 +2888,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html", - "hash": "7k0xVKte/Tg5Xa13tO6ni9bdNxQvo22mI5wMNxGeBWk=" + "hash": "07HvlisvPvxBE4Er9C+3ZBBkoxzkHJC7vJ0avbpdJmc=" } }, "is_incremental": false, @@ -2900,7 +2900,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html", - "hash": "60f45k2iENwYms/EC501Nz+wsBmcaMXGLhBGaCS/9kk=" + "hash": "/9X7K8OEoOAzaYzVrFY6AyHxWyFFpiOiu12XDomvvwo=" } }, "is_incremental": false, @@ -2912,7 +2912,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html", - "hash": "TL2j0+BjlIUUxgD8QqKC/cGJbX5pi7/69oAE6qj7n/E=" + "hash": "f73UWFKVO2IH9b5je9l3DHed1XyEG3emsHF3LIS9U7Y=" } }, "is_incremental": false, @@ -2924,7 +2924,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html", - "hash": "wKWvT045q2TTkJ470OdAyraEj20HRJX3FFzVywQsWXY=" + "hash": "jVjAVcO19+aNzd2vTj1mG4NfAKmsF/kGUvfjsdbNO/8=" } }, "is_incremental": false, @@ -2936,7 +2936,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html", - "hash": "EhzRA2dWNOVqHQiMIq1P+Qf5gnVKzUtuPBqdk0N17Vc=" + "hash": "ApzXIFTn+QXPtEk674fZ7xOoFtXzVuDfKxWdMi9J418=" } }, "is_incremental": false, @@ -2948,7 +2948,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html", - "hash": "DSk+8KMUIlwEwn1d+d8OaNYdVnUN//y4jSVn9hPHsBY=" + "hash": "461xDiVtHplnzFpwg/hUcVZFQ4vOizyvEn0Mf+7YVnE=" } }, "is_incremental": false, @@ -2960,7 +2960,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html", - "hash": "M5EXf2Iiz9IlaYJn/ZEqiYKpxO4Nly7brgJyeaZC10M=" + "hash": "/PY/VUQLjKwAIWH2W4aBNwp+wRVdwauOU7p4275Gh0Y=" } }, "is_incremental": false, @@ -2972,7 +2972,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html", - "hash": "mPEdqiQewLXnxcqFdLCH3fV3qPt7d8uSI1xsOeYsZ5o=" + "hash": "PDvjPdA6CPZz/0taYrnwmTrxlOGLPRPctvrz2NBzcoE=" } }, "is_incremental": false, @@ -2984,7 +2984,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html", - "hash": "lGBmVtONZ2eih6Ygot6NaEnlODFz2v42wDPrWMANfig=" + "hash": "2+Sob/HGFXGZk2zDNwSEd5XOwkdfpX6BM3D5l9l5C7s=" } }, "is_incremental": false, @@ -2996,7 +2996,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html", - "hash": "3JoG6NYc+Suhaf34q2r0B+Rvc/udzlklZRjD+vHFGMw=" + "hash": "J0rbVE0jj3SgfdniEDfo7clf2WgF1vq8J4wPfNR1La0=" } }, "is_incremental": false, @@ -3008,7 +3008,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html", - "hash": "dcQALFWrS9usV88oCUCBnAMYXLnGAJFdN/xvDcKvznY=" + "hash": "o7v3RUdirREhcP+81pIUmTjcne5LOn53orEDcLUWcQw=" } }, "is_incremental": false, @@ -3020,7 +3020,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html", - "hash": "mUvJNi/YeB0KBIOgE54IbnudsX7iecXzI9dof+bbev8=" + "hash": "E7ca7LcsWiR6NX5blWw/wGNKWyLgglOCkRRvYj2obOg=" } }, "is_incremental": false, @@ -3032,7 +3032,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html", - "hash": "dR58Ew56gtKDsIRwc717GmI8P5toA135OoXxj30BePo=" + "hash": "uLOkbmAVM/FbZi6bKxSERPuWlxRgvCejCtFuXJB+CE0=" } }, "is_incremental": false, @@ -3044,7 +3044,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html", - "hash": "mS0+xkEz0QRCBf7VNYsnn8y5KF7SKjnBT3DeAaPQLbY=" + "hash": "YiYGQ2JL1U7xJ8gP4SjOhaek16K1cqCCJnLH77Zuh1g=" } }, "is_incremental": false, @@ -3056,7 +3056,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html", - "hash": "MeW6+hT4yM5iwuFatddpGDoETjWz5hpPIFAre0i2zCw=" + "hash": "jX8vcSeHnB2AEeAstMlV7+N+NpJCyFBwpJ7SIoYY73U=" } }, "is_incremental": false, @@ -3068,7 +3068,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html", - "hash": "UdALIqcTEcN95JpeetZrh9Nt3d4PNMkQjkfx9OkYgi8=" + "hash": "qpXwdrk+o97y6eDlOJB+WckHiCd1zwwjsg+WdpsGoKw=" } }, "is_incremental": false, @@ -3080,7 +3080,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html", - "hash": "1093WjI4IhTC6kIiITH3w/LZ5FmwDg2xNXRi0HHbEOo=" + "hash": "SoPDDysweK2k+j3gnE3i6zpt2iF3JEfAdmstpxx4NAk=" } }, "is_incremental": false, @@ -3116,7 +3116,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html", - "hash": "CMl2ZMRvmTTz8vforrDtEprC83PnmvqTtSIrW//a4fY=" + "hash": "2llOpyWyBdLGLkHLPtQBHmd6yd8gBOSRRpF1wCvXAwU=" } }, "is_incremental": false, @@ -3128,7 +3128,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html", - "hash": "QrhlvabeWHAnb0DhJIrP6f+bUFOose+po/lMMIBYeIA=" + "hash": "6xkPoVRMEGAafl1KCDQjOy6x+aRGMgtNCmnsr91qZSA=" } }, "is_incremental": false, @@ -3140,7 +3140,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html", - "hash": "ofRXCH3mlPBLNk5LeMBUqys9CC/xmMDgjusprrroUV4=" + "hash": "ymbgiUweckOEdg9u7gdpIzSl5ARLSoYXK2wJhfrp/PQ=" } }, "is_incremental": false, @@ -3152,7 +3152,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html", - "hash": "DWNEADlXi0hdXGLf8+7OfqL26cIadfcBY4XfOglxU+M=" + "hash": "I6bMpbc1LPKQYmDqGBwbP6tlrammcOXR+iYWuMl9UB4=" } }, "is_incremental": false, @@ -3164,7 +3164,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html", - "hash": "28ln2bvlJMPqteDkbGTNbIcxT8sDltIolz5DhS3wp9c=" + "hash": "1w1KeCymDeoX8uTi5oKpVP2p1E0OhmBCmFDLNmgl4XE=" } }, "is_incremental": false, @@ -3176,7 +3176,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html", - "hash": "3p8+XcKtsnwjo3zf7Li+G+K/5c5//X99j5qGCq/sMG0=" + "hash": "g+lDl/9hllgkXOe26M65TleO23sIlYNK6n2RlL0/cDw=" } }, "is_incremental": false, @@ -3188,7 +3188,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html", - "hash": "XaXSP+xNmt3agDIFMJjU2X34lY5BaESXlFauorZBL6M=" + "hash": "AaAXcz6B27EfhixYRlENoNWcQW9QPyiPPGcBH2eD/m0=" } }, "is_incremental": false, @@ -3200,7 +3200,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html", - "hash": "d76TN/vKHR3OQQ9hwjcvOCZbn/kSS2QOzzryzu98rRU=" + "hash": "fI5ECPgSip5WYC3RhJrFCuJf2kFR8QGGynauuSmZxWM=" } }, "is_incremental": false, @@ -3212,7 +3212,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html", - "hash": "hp8nddjxRyGuNyISZWPv2Oscin9wCCBf88wiLqc4lE4=" + "hash": "axmyqMnRUUhNlGUxWbVYWpVjw+1JlHJMs6azHrldIrQ=" } }, "is_incremental": false, @@ -3224,7 +3224,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html", - "hash": "aNCgxfT7wN5ezvNz+ssW2wfXqDUtBCWjIbNt7gM0fd0=" + "hash": "zNp3HKpvEoBpH/HI8EwrbYxq5GtOzSC4l/MNXo2khng=" } }, "is_incremental": false, @@ -3236,7 +3236,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html", - "hash": "wkQrDbjcnMx6Dy1dpf4McrcOln2kD8n0Qn/kmP998Ps=" + "hash": "XL7Tt+rbTnDzwQAqxU93LBEBF2SZmNsudsNPpL5VEcY=" } }, "is_incremental": false, @@ -3248,7 +3248,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html", - "hash": "gV0dTWGUCr07uU+/FMUrKrnxeeHElxmyo4Tt69ocF+U=" + "hash": "uQWNFUewSWUOAFTzfgEXLl5PP+vca3QJNr309rieO24=" } }, "is_incremental": false, @@ -3260,7 +3260,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html", - "hash": "OQ0d7KzhvccjrJn+IJbWk2VXI/gZ8v+oFahSzbCAiRM=" + "hash": "C1sQDIpLgQ2nTMMA7PjksXaUccj/xyehPFqaeR+MAJM=" } }, "is_incremental": false, @@ -3272,7 +3272,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html", - "hash": "V10WjKxBaqr6aQpDGZ0iYYArVqHC80PlchHyVopBu7s=" + "hash": "o4+cFSDVVW5667QtEZydPgobSK18kyh72ldyCFRQuEE=" } }, "is_incremental": false, @@ -3284,7 +3284,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html", - "hash": "TjHFrhoGMG1pBEh4sKC+Ttg6dRMSj1AqvcnyzGDh4rk=" + "hash": "/cQq6T0stH9D8s1e6AiMRXKvk1gtjwS6j1651tS3bUs=" } }, "is_incremental": false, @@ -3308,7 +3308,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Document.html", - "hash": "QDGU46f2Tjiu3W6Bmvwt3WIQwjVcygo+yNYskoQoy48=" + "hash": "HZlz9PaDfnd1zy2+n0sZLv7vkCgRQuDBl43FVHLTGYw=" } }, "is_incremental": false, @@ -3320,7 +3320,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.GeoCoordinates.html", - "hash": "vha2K6Qf8cZgc3I5EElK8jWaGdMzZd2jnArh47wEzPE=" + "hash": "cFBo4ZrdCCW95GYROTgycbRET9OQcruMCE1KmanbJck=" } }, "is_incremental": false, @@ -3332,7 +3332,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.GeocodedCoordinates.html", - "hash": "NVL3vn3pXraZcFr2YUDnQ6RURPbJQYXXXrwSfNH+Pkc=" + "hash": "GDCrxjjHInGqxvfRDAoJgWpLily51OKsFLTBeMOv74M=" } }, "is_incremental": false, @@ -3344,7 +3344,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html", - "hash": "Jmo1hRAebVq8WCSuNr5edwZxbaIsvm7xV+orzeoFrmA=" + "hash": "iE9RjKzqSpotskvjXrsw7NsDn1/JIqWY+wCPlY3Ug70=" } }, "is_incremental": false, @@ -3356,7 +3356,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.EmployerNames.html", - "hash": "fzrCKryzwHJ5Uq3YKgdEoMIunjO4gPXd2BMfUbjEUpc=" + "hash": "A59MEXuicbN1bLmfnsp/wNvg1SNsjHOw9qaulVrHGu4=" } }, "is_incremental": false, @@ -3368,7 +3368,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobDegree.html", - "hash": "JW5UJqSOATgiuA7t1UbLAtrS7+r817rxISLKqz2f0Bw=" + "hash": "XjfbqkbQVHul7M830vocta4MOqVJs37nRyMM2SREg3A=" } }, "is_incremental": false, @@ -3380,7 +3380,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobMetadata.html", - "hash": "paSYHxuyeQ6RNtCm6GlHcA1plarVw1hChL+j7mVUkwc=" + "hash": "m/Gw6ilrAug7HdaRXZH0JBTNTEhSDoyCEY//UuggdIY=" } }, "is_incremental": false, @@ -3392,7 +3392,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobTitles.html", - "hash": "tnNAX45r7x2+8A+m4Vh2axp0DUekrLlJUgEIceK3fVk=" + "hash": "jIRDivraXdidkhnSSP23ogWaeDQhZw7vrnQAPPnZN5Q=" } }, "is_incremental": false, @@ -3404,7 +3404,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.ParsedJob.html", - "hash": "PMFiRTrrJZ19lkMu0Qxn1MReuOsvw9IbEGBiXS/d5kY=" + "hash": "+8vm9KF/4NTFMcEkPQoL+3gM2EgkFIDDQj4dUcIAiIU=" } }, "is_incremental": false, @@ -3416,7 +3416,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.PayRange.html", - "hash": "xzPXxEmu9EhQ+qX4xO8l9HTRuceKVbLZx6vk1sm82A8=" + "hash": "BqDFNz65bxVCeu+EZuSP15khJ7GNsgQ+AAcOiFTzNKc=" } }, "is_incremental": false, @@ -3428,7 +3428,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html", - "hash": "NQ7nylGFYp6YsPTs5C/WHoLom5rWsZgpu0ZWGZpfIrg=" + "hash": "BAs2qKY2kos0eX4i3QzuO9BcozAW7Q/4t1OTGEG3GxM=" } }, "is_incremental": false, @@ -3440,7 +3440,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html", - "hash": "LZ1ZaWHUSg+rUkQZLfM4Jhc2y+ycVm/fgPKlBrjd0HE=" + "hash": "tbsM73az6Zr4XWJbhQMRLq6JI8+pxPCCH+Dg+vFNtmo=" } }, "is_incremental": false, @@ -3452,7 +3452,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html", - "hash": "wTo1df2MI/iIaklsK8vDOI9Z1uaiGJSCvx3fDSz+/jw=" + "hash": "Mk35fXcaexetXzv9ZDcJ55h/19kBlyT3gUHqqBvxwc4=" } }, "is_incremental": false, @@ -3464,7 +3464,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html", - "hash": "nrCyaf18U+lBMKNHEDtX3oo7fuq5WLWJHsli/6axfd4=" + "hash": "5VvikNxmqEV85hvtpXp1a/8bnx3/9Kkj2JD9tG3c2SA=" } }, "is_incremental": false, @@ -3476,7 +3476,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html", - "hash": "sGhcAZ/1hpOKjC/tZTyCRa5/5qznYB1unR9d3K+7FlM=" + "hash": "2itaypibEsLteOZW/9YlqxftnW/uHqoB6BhEs+MzYEc=" } }, "is_incremental": false, @@ -3488,7 +3488,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html", - "hash": "Zdd6eVagtKKdHBwlWNGpilVOOROwl04/TvRJIh6+lQQ=" + "hash": "RwvyxTnoH1JOUEaqhC2X1hgCtnOa7PWBPkTutld+Fx4=" } }, "is_incremental": false, @@ -3500,7 +3500,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html", - "hash": "uJI9Ml+taSqN4Q/7GAgO60F1nfkwJrJW8XWqCFLFmYQ=" + "hash": "fuZH2Dyz8f98GD5Xro6WCQKx4gQ36eFIztmkdMNmBBk=" } }, "is_incremental": false, @@ -3512,7 +3512,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html", - "hash": "fnvgwq0cR+BhmxO/wRUhqbI20k8Mq7bUhq2CAEjUc6s=" + "hash": "BGRxNJ9Z4qj6pj6liBoC7+hZ8stJr239BwRle9nMyp8=" } }, "is_incremental": false, @@ -3548,7 +3548,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Location.html", - "hash": "yH0fG1INn64c8d5sqOx+7tHRHap2knVJjt6WaW6NaNA=" + "hash": "2evwCmmH+S5gdA7CT94W/Irc83RjNtdGha/tGcEvwiU=" } }, "is_incremental": false, @@ -3560,7 +3560,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Matching.Index.html", - "hash": "IwAyBSP9v6SE0JX5cZf6ZJnUDxMpuFxrcgwMDs6lYlI=" + "hash": "JAhEbUbmMLzahPNka2SYLeRATMgpudPTdFkedlfX6qw=" } }, "is_incremental": false, @@ -3572,7 +3572,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Matching.IndexType.html", - "hash": "7QKN8Fk7pacotTmw87hO0B46uY0lHD7wdavXRsRDZUU=" + "hash": "qqiBpmx09+WUH6h76wMMkT5jKjPxYNhb2kSKkh+Gl8Q=" } }, "is_incremental": false, @@ -3596,7 +3596,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.ParsedDocument.html", - "hash": "vHjjoqZ5YQJ46OdtGORY95SOPDGpQABft2kxJBQQBLg=" + "hash": "E1vHl5vJs6y///BzR6Qv4510+Hhd13IYZ1+tGJCN1Tc=" } }, "is_incremental": false, @@ -3608,7 +3608,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html", - "hash": "O3NH5wWFTnZC4KPEheK5SStClvGasFUkKqUG5UChusA=" + "hash": "GOAh8TdRyGhlfWChgPE9h5hmGME/TswvkFLhb2H3NJc=" } }, "is_incremental": false, @@ -3620,7 +3620,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Association.html", - "hash": "NzStWQmeL4AbufPDSPYBoj4uhe9d89U7qFbo8Mr65kw=" + "hash": "Sk0P5NZthQ+kVax/AOSlWEyM0CNVzcS+5nCA/spwMz4=" } }, "is_incremental": false, @@ -3632,7 +3632,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.CandidateReference.html", - "hash": "MLezvMgDrMpoASJMl+rntwo4mk17A98nBUpqLC79USM=" + "hash": "bWoDfrzyA3e5M1eg57XRT+ca7YN0VHqDPzKqQzrFuKE=" } }, "is_incremental": false, @@ -3644,7 +3644,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Certification.html", - "hash": "tamcmy2bkY9ufkCmgznM8W0jMnvIJJPX0luzKPuoo/I=" + "hash": "gMLZBG15UlMQOHNDqfE+6mp3QG8z3gOgGnz1/WzecJ8=" } }, "is_incremental": false, @@ -3656,7 +3656,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html", - "hash": "8fWnPl3+aE4hDgY6y3K7TUXo79nMAz9aqDS+UwAgP7k=" + "hash": "U0uBwdetYR9RE24JP5NryzB5+l5aTauxPtFIezitrY8=" } }, "is_incremental": false, @@ -3668,7 +3668,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html", - "hash": "dhe6bYOyeSFcDpRkR1Q2F1hIQh7zyH7JibXLoiRox80=" + "hash": "B2EDNyWkXGocI8MBV54U9PF2s+LFIkumzXq/BBqYDgQ=" } }, "is_incremental": false, @@ -3680,7 +3680,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html", - "hash": "qTIhUmm0sxFCH0asutHUkO5tVJrTm+Fduocw41MuqjI=" + "hash": "gwKV6TLAqL43auMsE+4ng06GYsJ0N6LUG33LgdGxejU=" } }, "is_incremental": false, @@ -3692,7 +3692,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html", - "hash": "0rdIZxYgPvq2TMUX/XaEQk0g1sCsxz+iJirRf2cQIKk=" + "hash": "aTIHv44+UoENJ5KrtSihmNJFBhqZMqIT+16187y8/KI=" } }, "is_incremental": false, @@ -3704,7 +3704,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html", - "hash": "Olh0NaIDQqIFuEZnFcxpwEqKspIOp0RhkCD5LMgNfTA=" + "hash": "rveqW5zwNf5igHzYGdBu+gAa9Cpuz5Q0vum/sFObeNc=" } }, "is_incremental": false, @@ -3728,7 +3728,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.Degree.html", - "hash": "7HIcJTZcWEaLd9jmquVEfAMLFNeorUAf0TpN+PXOip8=" + "hash": "ZcYS93qB7lD4i9Adxt/+lH6635i+1JOldFgQMpbACcY=" } }, "is_incremental": false, @@ -3740,7 +3740,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html", - "hash": "Nxb3EKghKS4NqXdjMOjNockXKGKB2yxvYqHbPcFccrY=" + "hash": "2IXfWNKMqGSMF9KKF9n18/cN3L0xe/fgLmmezGG/75c=" } }, "is_incremental": false, @@ -3752,7 +3752,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html", - "hash": "yXsPJzUKKI97hCMQW+iFogHgrg3cOUmJmfQVKCU555w=" + "hash": "dEV9tWZRsjf98DXRsqk4nOW8fbBMy3Y55S5PCZJRrzU=" } }, "is_incremental": false, @@ -3764,7 +3764,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html", - "hash": "OytnIoeNdVFzoj5UFn5NUipp0n8KcFQy6uXGIrRQzSY=" + "hash": "mkV2gqoaBNWB0ZaWBkYmC6DLx0Jcivy3n+iIjWdYmPI=" } }, "is_incremental": false, @@ -3776,7 +3776,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html", - "hash": "mOd3u+kZo53mNU3dKLredLElTOhXsJjuvMNP/HQXQ10=" + "hash": "I1zdOvI1U5X5tR2ywFE5SdBjOLMD73e6E6soVaALq/8=" } }, "is_incremental": false, @@ -3800,7 +3800,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html", - "hash": "avaT3/wYru4ANKIxdd3jry25Mjr0cNpCe0FkLzgEnjo=" + "hash": "XSOPjXGaDmcLxUFhknK4cLq8E+Zcbjx9xtmK2laR3cs=" } }, "is_incremental": false, @@ -3812,7 +3812,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html", - "hash": "tZGRQQ8/Au6xziP3P6O8+8IWm13+2mQRyv6sSdxs8hM=" + "hash": "0rzVd3r6eS4nul5tdpCGXSU90viVcSpM8q954R+e0O0=" } }, "is_incremental": false, @@ -3824,7 +3824,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html", - "hash": "Uhb2GWxoy972AT/fbPXWSV5DgfVRJCH5m5qrorQrc7w=" + "hash": "2ID6xqjoG0OdU7c34eVlf3V/rfbZHq1xJfqSPJL+wcE=" } }, "is_incremental": false, @@ -3836,7 +3836,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html", - "hash": "vCBD3/c9ikQSQCfCvYuW7oP+QnC+K9JG1CootLYZfj8=" + "hash": "tUFR0npHGOYXJUgw0PmMZjZN2bkjD2hRd7avDBbdx78=" } }, "is_incremental": false, @@ -3848,7 +3848,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html", - "hash": "5mKlCvPwc4fBR9kJxANkyrV5Duhr94Cq3+0Cb7AF18U=" + "hash": "94PeemHWaAahRA0Qevwv0SkhsuPJx3a5mgSEAeo/w14=" } }, "is_incremental": false, @@ -3860,7 +3860,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html", - "hash": "k49oF/o0efObMOtJjRT7xt80QEVju9iXPUnb1RsI3sU=" + "hash": "MnTZlpWlhcgVSf1/Ob0O40+gAiJ4tX9XjmOAyHhJ4JA=" } }, "is_incremental": false, @@ -3872,7 +3872,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html", - "hash": "wVlTaaHNt+O/GA1J/P8FXPex/wNO8PEoQuf39+M61Hw=" + "hash": "7kVraGdFCtYn56EGQ2Rqry6zPjBwp7yEHMqIwR4N7W0=" } }, "is_incremental": false, @@ -3884,7 +3884,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Position.html", - "hash": "oBeG/j4ExNOQoZGV+eAzL7D03n6ElB3xQ3qeWnx8/Yc=" + "hash": "Lz4Er8CdBfozLBF0DEH7fzdhKILPG2Asa1rES/PbKMs=" } }, "is_incremental": false, @@ -3896,7 +3896,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html", - "hash": "RAVR1to80LFtmQUWPWmhx92jB6LZpF2i5m28duJo3gg=" + "hash": "Ce0Orwk5PfKJO3hHcNqP2uC67eYTje28ZgGwxgOv8cE=" } }, "is_incremental": false, @@ -3920,7 +3920,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html", - "hash": "UfMLzIhG5hSlmVIzVrLI8OEl9uUqqmYtAjcRFp7UHxw=" + "hash": "ZLJZF5ppWbuOMPylnTuJK6g/r3qprFmmVx7nR31HMco=" } }, "is_incremental": false, @@ -3932,7 +3932,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html", - "hash": "zUsZ0JSaQ36NLxtWNezvTMuY6nnxbbRDFk6Y3ER/bKU=" + "hash": "kQXt74JHYwumtW/dBiS/9/B1gcDm95o4fvbVrN0rAqo=" } }, "is_incremental": false, @@ -3944,7 +3944,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html", - "hash": "nZLQCnwe3tlVbGtiqkztceuTqgGldhOEn+eHjKjuH84=" + "hash": "Xf5by8DzsGkBonHdmHyH7h4kxs2c3VNEDugD66l/lB0=" } }, "is_incremental": false, @@ -3956,7 +3956,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html", - "hash": "TFQGlSgBNI8ZcDk1P/alyenfEGc16WL7Qhf0RQ/twJo=" + "hash": "LCT8eLWksamhxp/5V02qM9hIgZddVfuoC7ZjSlhnr10=" } }, "is_incremental": false, @@ -3968,7 +3968,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html", - "hash": "nHZI+aP8cvfpoxLeZPvXvxHMu1NtG/DcCEJYXAlaWi8=" + "hash": "FfNVnoatl4OqT7lP4N5Au11zy02hkOKvSv6pUpDvCV0=" } }, "is_incremental": false, @@ -3980,7 +3980,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html", - "hash": "c0pvHw5PcwMtk8Snkma90FJp1qabklue6a+H71qEhLI=" + "hash": "m4+/5TLpwLRI7qgAmSc3TVxLbwEDmUpxS5JlQ6+GRWI=" } }, "is_incremental": false, @@ -3992,7 +3992,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html", - "hash": "9/vi10QXffxflh3VqPR+OSrZ8nJ7rcWzJx5iojaGA74=" + "hash": "zsT0eEEeHZqhloepKFYMR5rq3eLGJ11K4VdHUujEZwQ=" } }, "is_incremental": false, @@ -4004,7 +4004,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html", - "hash": "dI7lwF8qjLzlEzYPWbbX3NLMoNLUDYULGb5rDUUFYTo=" + "hash": "2ZWoiN8Pm4ei6L0Cam4QGBjocr9sIHnZxV9ekyXLltk=" } }, "is_incremental": false, @@ -4028,7 +4028,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html", - "hash": "vJvbiRdh9nstHI+lGMjFY5wmxegOF/a99GORyt0ZeEc=" + "hash": "1V0/k99ZMSyJsXk/CLEuJfON1FQ+wJpFe8Szisw3GTA=" } }, "is_incremental": false, @@ -4040,7 +4040,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html", - "hash": "DdAsNq38kaLNWhBGjJzIVb9unu3jBjQNFOxRD35pM0s=" + "hash": "URLRoeu9GYqcgZW0NLFws/hIKZ/h39ifPkqSjk57Y1c=" } }, "is_incremental": false, @@ -4052,7 +4052,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html", - "hash": "NglSaYtsg5ZjNRByvCEqwrtQcdMsZDJyZhJ5wP//NwI=" + "hash": "JKqEozGRpPFd0wSv6p6WO7dpb7Dyr/Ha+u0IAwDpDww=" } }, "is_incremental": false, @@ -4076,7 +4076,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html", - "hash": "YW+W5tQgZBnmZE2Mhyx9CEHJkfCvrWyjlFAycK9Dyo4=" + "hash": "2d3MsToQFj9PO6gaN+x5swvKdN0mVf8tCZ/iETb7324=" } }, "is_incremental": false, @@ -4088,7 +4088,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.NormalizedString.html", - "hash": "qwZklgtdHok/ep35KN0xRZEeBSsVAjK6m57hxj8Ph20=" + "hash": "TFgjajXIWlCTAlga6Rj6nDb1KoI/15W4xXIJMWwGDQI=" } }, "is_incremental": false, @@ -4100,7 +4100,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ParsedResume.html", - "hash": "pGI7jC7h8nS1X4LI7cHo/U5NEd5dY2aRV7gQ0iKlG9A=" + "hash": "LVkjYRexRncmmJSpAUPv/pdaVYI6H2+4yQw39x7xzmQ=" } }, "is_incremental": false, @@ -4112,7 +4112,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html", - "hash": "LithaoJ/GLZ2fFXRVNxLcosdbtCfDj46XPXweOyNKgY=" + "hash": "BSpnNydVBcoGh7/nqFDovx+uLuQsN7/s0fosXeRa2vg=" } }, "is_incremental": false, @@ -4124,7 +4124,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Salary.html", - "hash": "OfKSg19T6GyaowyUi3y5RKmwBQjkoeuVKUi+D1o1wIs=" + "hash": "0qp/rHipv90kNv+CgJBPaQAfi28ALOjJHGX3E93VjHA=" } }, "is_incremental": false, @@ -4136,7 +4136,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html", - "hash": "hVKUQhGjGUDD1x8+XaseYvo9nz2/4COw+gVBg2m6Xzc=" + "hash": "WrqN5DKVx2wXcTJzq4kPoVfysNLTW36GIltADj0dBoE=" } }, "is_incremental": false, @@ -4148,7 +4148,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html", - "hash": "LIHGh9gSvncr4pieZbSSQSsmACV5bXKo1HfLaIC/txM=" + "hash": "y7xNgAcaI7F8dZHZts3mDYJZfvJQYOfoX5/rCE1kgdI=" } }, "is_incremental": false, @@ -4160,7 +4160,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html", - "hash": "rm2p2qkOHycC1DNy3xDuKEnTAksRN5jf5dLlonokgtA=" + "hash": "Lw2TckpK/JnH/XobJ/bawTUBq36b7F75rPkNbl7KRjM=" } }, "is_incremental": false, @@ -4172,7 +4172,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html", - "hash": "pWjXWFjg9+Rc2z5/JEPXFUnaaSbCK/bXoYQkK2mFqaU=" + "hash": "RnLzpgPKqGG8sdyN2/dBV4R67Zd5KUFxe2pTuvv1AIc=" } }, "is_incremental": false, @@ -4184,7 +4184,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html", - "hash": "lpbxhIpbXrH3mJ+c0DCZFpCoO7m+qVYFUnmkvYFL42I=" + "hash": "WaebYrTqVfLFq8TvBdrSY+ERk4dpWla/DU4kTKDKIBY=" } }, "is_incremental": false, @@ -4196,7 +4196,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html", - "hash": "QW/0XTjrciOBa9VpnSTRcmt3JekeDHvtX0T2bB8UpHQ=" + "hash": "VnE4rIFLnNxHj8pkqHkQg+Ohi9fpXNjfbRHukjmqijI=" } }, "is_incremental": false, @@ -4208,7 +4208,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html", - "hash": "kTsgwjCOJjsIumByfj4ZjH3x8+uYEVyB65XxlJSYtW4=" + "hash": "a7WQHporNIX4B9Q3ytu0F0ibxAlWXQ2/V6t1WM3Ry4s=" } }, "is_incremental": false, @@ -4220,7 +4220,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html", - "hash": "FAaoVc972wrq5cQ+UB705xlkZ835bUXih/6XB4wkLLQ=" + "hash": "ipWjQSEaf6zLUnd0VLNUbHlWyBQ4vk5BmP+QjKhOFCw=" } }, "is_incremental": false, @@ -4232,7 +4232,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html", - "hash": "hcdRBnj72pM/AfoORFYLKwSHyy4e4cy89r8tA3zQ2hY=" + "hash": "G9+80j9zTdFu0GIU8SPBaxjA5WoMh2IFiEiRHrMOHUs=" } }, "is_incremental": false, @@ -4256,7 +4256,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html", - "hash": "Z14WsTb4EhbYVOv3+Yo6eyPkyxn2jDR4mkMuwrlh85s=" + "hash": "EDst3tJhxkkxMd6VCEIYm7xaB5ZZEIhbKfGVv1yN6PE=" } }, "is_incremental": false, @@ -4268,7 +4268,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html", - "hash": "DjuDVXsV0L/RGytBURVmdWOWZx3MDTwy5qdg34jlcmg=" + "hash": "Yhx6mRGCJBwnQSt1D4t9lpnGDagERb3/gliK41r/t/4=" } }, "is_incremental": false, @@ -4292,7 +4292,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html", - "hash": "+5UfSX/faWitbuOzqMnkzJjMYSs2C368JG4zfvlU9Jc=" + "hash": "dLhz0ASdW3xEyLVj8VVP5JSLe2KcQNpDP7nZHNP9RRE=" } }, "is_incremental": false, @@ -4304,7 +4304,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html", - "hash": "tund/yYJnRnbKTGdAch1gPQwaLrknwDyq8iUCEkbEkw=" + "hash": "OSaLceay5FxutupFeRGwOIOkEUsyAK+kcHGu/bSr8aE=" } }, "is_incremental": false, @@ -4316,7 +4316,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html", - "hash": "q9NOFyGReADTP9UL6nTtN1pikq2LLVOOfB7WqZOYgFo=" + "hash": "JO+dfS38fvFBzqpHo2EUkpGxu6c3ESYLw85PtCuoq/k=" } }, "is_incremental": false, @@ -4328,7 +4328,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html", - "hash": "u3zVHIQFTX4rckWz7l2PFn3d1njAazpuLQr1PKljZ+w=" + "hash": "hJBIqjTJ4f8DJHXvP0XN5Q6n1aJY3GvKagF6I16Sxww=" } }, "is_incremental": false, @@ -4340,7 +4340,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html", - "hash": "kHP+nzc73ZjworEpMEqmWVUuO6NESd3za7dxMVorA7I=" + "hash": "fjuhtFkUQbTbDnldFYYvIBfJX0OneLs1s/iEud2tTvQ=" } }, "is_incremental": false, @@ -4352,7 +4352,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html", - "hash": "zfV5SfK1bM3fomYd6JQUHa9xVTLyUkRPR4Qrr34FERU=" + "hash": "YdMWXkM5Uc16pEc4N66vyGRjXecGu4xRraSL1lOwW9Q=" } }, "is_incremental": false, @@ -4364,7 +4364,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.RawSkill.html", - "hash": "KiEqZK/CH+pzjXA/DI9QxDabpV990ot3jjOvaw8NsWQ=" + "hash": "H1OGiwYQXYeEQ9WiR11NDuyZAOvJdw+BKOCrvW2RztY=" } }, "is_incremental": false, @@ -4376,7 +4376,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.Skill.html", - "hash": "7zQxFEbuafMyt9omhL3IbMOkZndYu3Q6yrZMj+pcBhM=" + "hash": "OKKQS8sQI18EV9xYCTgv4Eh7/LmmHTqfhUsS6gLCjrA=" } }, "is_incremental": false, @@ -4388,7 +4388,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html", - "hash": "7UHiKY40o/CgiK3qct1Ohm5Iap5BFaoAqhZzUEC8bo4=" + "hash": "KaZQi/lAmn2gJxb1LlP8M8HjMGg/OiN9kgX8Ah8HhoU=" } }, "is_incremental": false, @@ -4400,7 +4400,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.Taxonomy.html", - "hash": "Is39Np6zgKrA3VDgwN33fYERwY+zMwtH4u20KgewOJ4=" + "hash": "PlSN9eYoFJYuoCplSziUjZt3rv1EfgE/K3IWC+BwTLs=" } }, "is_incremental": false, @@ -4424,7 +4424,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.TxDate.html", - "hash": "0OV/HY2paLyQY7Ni6Ym5nlAoiEMSogouq4jw18vulXI=" + "hash": "5MV63AQmLhdC7Qe++ohQJKlWpmLcsCBVgRBbuSjGCMY=" } }, "is_incremental": false, @@ -4436,7 +4436,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.TxPrimitive-1.html", - "hash": "2BsUnh/nv93eHWcjG86E4HMbS3ejCAMtCrF2NT+R/S4=" + "hash": "f49mH4Ug0Zn2exf/lJMDowDGEa6EcODbXwA83OCm6qU=" } }, "is_incremental": false, @@ -4460,7 +4460,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxClient.html", - "hash": "N/knin2wIFma4xitBYR5hYnzQXDhJgP/PGzvwMvRSfk=" + "hash": "pJCGL08HiA26G0Ga6/vqU87Cht0WiB/bUWBN3XxhhWo=" } }, "is_incremental": false, @@ -4472,7 +4472,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxClientSettings.html", - "hash": "AWup/+8xpqmfTRDH6zJzhbiflsMo9AQ2NI22DcJ1oWc=" + "hash": "NVR/0aLDrRvwub1kD3Wn49lvr/ZY887EYC6fcwNINTg=" } }, "is_incremental": false, @@ -4484,7 +4484,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxException.html", - "hash": "otQfWSriyscg8eg7hb/+4l4VZlhh0+pRzvnYktXh7Vg=" + "hash": "Qk4vBPR1L81wUNh9EDMFN5h9U/k/9IIkqdzGepdfyUA=" } }, "is_incremental": false, @@ -4496,7 +4496,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxGeocodeJobException.html", - "hash": "o5rqiwWMnyR9NuRhIx1mobSlvrzdVSHDqQqmitDtVn4=" + "hash": "mheSX79phhEuw5/uI5pBJDLeVLuEtHhp8mhOwCHbkCg=" } }, "is_incremental": false, @@ -4508,7 +4508,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxGeocodeResumeException.html", - "hash": "t74Av/ktCQY3uzxb18LaKQpEH0CVz0UVgqd1ABHsw/g=" + "hash": "oFOQ38qQ4c2HvdV+UTrlH3gEaAfqZIV2gDCzmQrvf8Y=" } }, "is_incremental": false, @@ -4520,7 +4520,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxIndexJobException.html", - "hash": "0oCcjgsP8nN8R2oRTmWM7P9owBV4w6q8T/9Vlkq5hZU=" + "hash": "/pyOnTePUYGep9MHWwCMCEPb9ppdIUn4KEgcoxb6qaM=" } }, "is_incremental": false, @@ -4532,7 +4532,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxIndexResumeException.html", - "hash": "LsDrRu4mSjCh+as1fwEWjpwFcjbxKcrbJAM+Lp8ckXI=" + "hash": "AladOMq2/U7qigeCSZSq8m22ANUajeZZJUI/nPAauLI=" } }, "is_incremental": false, @@ -4544,7 +4544,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html", - "hash": "1Ojrw606f4jUXogepO2gXuwavy+1m34KmWr/xVzwlUk=" + "hash": "QT9o9jsGSf09x4t45LZOr3J37gTu7TNo6mJJ7wgj39k=" } }, "is_incremental": false, @@ -4556,7 +4556,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html", - "hash": "9dUowa9LY77Qqe0magstgytWgccPjWlbSfqSStwnSOM=" + "hash": "K/Grb1iapuPej7ZllkDGWscAnl7Payc0EINeKkCJLJc=" } }, "is_incremental": false, @@ -4568,7 +4568,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxUsableJobException.html", - "hash": "+YZ96PCdUJoOITGj00PGG/4eTB2LpEdW8tDNy8RINPs=" + "hash": "vduNYzKVdiQsCaL5NhuPh+rsZBIoWdf3UkM1nEBvFk8=" } }, "is_incremental": false, @@ -4580,7 +4580,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxUsableResumeException.html", - "hash": "yzoHzinEjoCoiSGFsOjsJgPKOU98i1AImgz4O9kQmVg=" + "hash": "N/jnVPgrDgJ4quiXWjNnmM7n9L4rtZiv7uiS6B1C/6k=" } }, "is_incremental": false, @@ -4604,7 +4604,7 @@ "output": { ".html": { "relative_path": "sdk/index.html", - "hash": "/x4UL64eazw9z2aaZ+ywYGre5GPtreVicjkyQ8aeWYk=" + "hash": "y2bH4IDC2IQDZpTJxqivZizg/9lzG5+9hx5FnrU/kR4=" } }, "is_incremental": false, diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html index 1e5a789c..61c61a7e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html index c4bd89bd..c26a0b15 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html @@ -126,10 +126,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJobs(TxClient, ParseOptions, BatchParsingRules, String, SearchOption, Func<JobBatchSuccessResult, Task>, Func<JobBatchPartialSuccessResult, Task>, Func<BatchErrorResult, Task>, Func<String, String>)

@@ -239,10 +239,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResumes(TxClient, ParseOptions, BatchParsingRules, String, SearchOption, Func<ResumeBatchSuccessResult, Task>, Func<ResumeBatchPartialSuccessResult, Task>, Func<BatchErrorResult, Task>, Func<String, String>)

@@ -358,10 +358,10 @@
Exceptions
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html index c7595208..703d25b1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

BatchParsingRules(Int32, IEnumerable<String>, IEnumerable<String>, Func<String, Boolean>)

@@ -185,10 +185,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DefaultDisallowedFileTypes

The default file types that will result in invalid parse transactions (and cost unnecessary credits)

@@ -217,10 +217,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AllowedFileTypes

@@ -248,10 +248,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DisallowedFileTypes

@@ -279,10 +279,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxBatchSize

@@ -311,10 +311,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShouldProcessFile

@@ -348,10 +348,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html index 77e4ef24..6dc2a63e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

File

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html index c2a87c62..b0ce01e1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html index 8342563b..4a82fc8c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -171,10 +171,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html index 43ae6ea5..afd5ecc8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html index 648a5478..099e4c9c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -171,10 +171,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html b/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html index 78809962..b93bfad0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html @@ -172,10 +172,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.DataCenter.html b/docs/site-/sdk/Textkernel.Tx.DataCenter.html index 35bfde89..30c0dbe6 100644 --- a/docs/site-/sdk/Textkernel.Tx.DataCenter.html +++ b/docs/site-/sdk/Textkernel.Tx.DataCenter.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DataCenter(String)

@@ -162,10 +162,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

AU

Represents the AU datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -192,10 +192,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EU

Represents the EU datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -222,10 +222,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

US

Represents the US datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -258,10 +258,10 @@
Field Value
diff --git a/docs/site-/sdk/Textkernel.Tx.ITxClient.html b/docs/site-/sdk/Textkernel.Tx.ITxClient.html index 36732804..c721a31a 100644 --- a/docs/site-/sdk/Textkernel.Tx.ITxClient.html +++ b/docs/site-/sdk/Textkernel.Tx.ITxClient.html @@ -97,10 +97,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteProfession(String, IEnumerable<String>, String, Int32)

@@ -187,10 +187,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkill(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -283,10 +283,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkillV2(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -379,10 +379,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedJobWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -480,10 +480,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedResumeWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -581,10 +581,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessions(Int32, Int32, String)

@@ -664,10 +664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessionsV2(Int32, Int32, String)

@@ -747,10 +747,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(Int32, String, SkillScore[])

@@ -828,10 +828,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(ParsedResume, Int32, String, Boolean)

@@ -913,10 +913,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(Int32, String, SkillScore[])

@@ -994,10 +994,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean)

@@ -1079,10 +1079,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateIndex(IndexType, String)

@@ -1151,10 +1151,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteDocument(String, String)

@@ -1222,10 +1222,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteIndex(String)

@@ -1287,10 +1287,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteMultipleDocuments(String, IEnumerable<String>)

@@ -1358,10 +1358,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkills(String, String, String, Single)

@@ -1446,10 +1446,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkillsV2(String, String, String, Single)

@@ -1534,10 +1534,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResume(FormatResumeRequest)

@@ -1600,10 +1600,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplate(FormatResumeWithTemplateRequest)

@@ -1666,10 +1666,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateJobDescription(GenerateJobRequest)

@@ -1731,10 +1731,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, Address, GeocodeCredentials)

@@ -1809,10 +1809,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, GeocodeCredentials)

@@ -1881,10 +1881,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, Address, GeocodeCredentials)

@@ -1959,10 +1959,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, GeocodeCredentials)

@@ -2031,10 +2031,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2121,10 +2121,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2205,10 +2205,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2302,10 +2302,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2393,10 +2393,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2483,10 +2483,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2567,10 +2567,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2664,10 +2664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2755,10 +2755,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAccountInfo()

@@ -2802,10 +2802,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAllIndexes()

@@ -2849,10 +2849,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetJob(String, String)

@@ -2920,10 +2920,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomy(String, TaxonomyFormat)

@@ -2995,10 +2995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomyMetadata()

@@ -3043,10 +3043,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetResume(String, String)

@@ -3114,10 +3114,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomy(TaxonomyFormat)

@@ -3181,10 +3181,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadata()

@@ -3229,10 +3229,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadataV2()

@@ -3277,10 +3277,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyV2(TaxonomyFormat)

@@ -3344,10 +3344,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

@@ -3428,10 +3428,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedResume, String, String, IEnumerable<String>)

@@ -3512,10 +3512,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexJobInfo>, String)

@@ -3583,10 +3583,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexResumeInfo>, String)

@@ -3654,10 +3654,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupProfessions(IEnumerable<Int32>, String)

@@ -3729,10 +3729,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkills(IEnumerable<String>, String)

@@ -3802,10 +3802,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkillsV2(IEnumerable<String>, String)

@@ -3875,10 +3875,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(String, String, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3977,10 +3977,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedJob, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4073,10 +4073,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedResume, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4169,10 +4169,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeProfessions(IEnumerable<String>, String, String)

@@ -4251,10 +4251,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkills(IEnumerable<String>, String, String)

@@ -4333,10 +4333,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJob(ParseRequest)

@@ -4414,10 +4414,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResume(ParseRequest)

@@ -4495,10 +4495,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Search(IEnumerable<String>, FilterCriteria, SearchMatchSettings, PaginationSettings)

@@ -4578,10 +4578,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4654,10 +4654,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScoreV2(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4730,10 +4730,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -4815,10 +4815,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

@@ -4900,10 +4900,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

@@ -4991,10 +4991,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5076,10 +5076,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String)

@@ -5161,10 +5161,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5252,10 +5252,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

@@ -5329,10 +5329,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

@@ -5408,10 +5408,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

@@ -5487,10 +5487,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

@@ -5566,10 +5566,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(IEnumerable<Int32>, Int32, String, IEnumerable<String>)

@@ -5651,10 +5651,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -5736,10 +5736,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable<String>)

@@ -5821,10 +5821,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

@@ -5903,10 +5903,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedJob, Int32, String)

@@ -5984,10 +5984,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

@@ -6071,10 +6071,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(IEnumerable<SkillScore>, Int32, String, IEnumerable<String>)

@@ -6159,10 +6159,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -6246,10 +6246,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable<String>)

@@ -6339,10 +6339,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateJobUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6422,10 +6422,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateResumeUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6511,10 +6511,10 @@
Exceptions
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html index de139a85..4851df18 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html index e0e2d85a..7b28113d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AccountId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CreditsRemaining

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CreditsUsed

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExpirationDate

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IPAddress

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumConcurrentRequests

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html index 384f0a93..27639c1a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html @@ -184,10 +184,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Info

@@ -215,10 +215,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -256,10 +256,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html index c02afce8..695a81d9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApiVersion

@@ -165,10 +165,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CustomerDetails

@@ -196,10 +196,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EngineVersion

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TotalElapsedMilliseconds

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionCost

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionId

@@ -327,10 +327,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html index 809f733d..d8d8a7f9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html index 5871a616..25fea7f7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SourceJob

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html index b60ebb97..a9c89c17 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Settings

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetJobs

@@ -229,10 +229,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetResumes

@@ -267,10 +267,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html index a139e20b..4e597409 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html index ea85b08a..dd2a08fe 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html @@ -147,10 +147,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html index 6f806fa0..144f93d0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -291,10 +291,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -340,10 +340,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html index 1ee5344a..18222b47 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SourceResume

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html index e67a6128..bb53389c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -134,10 +134,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html index 98d87b25..0ae245a4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -202,10 +202,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html index f486216d..ff4eb593 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -202,10 +202,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html index 01904320..087d5996 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prefix

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html index 89688be2..5d7102c4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html index f5a7ed88..6ab6461b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionACodeId

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionBCodeId

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html index 683abcc7..0196265a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeId

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html index ea7586b2..fe272164 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsA

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsB

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html index c2523e45..ac04416f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReturnMissingSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html index 0ada4a04..f63a820a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeIds

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html index f94217d7..2b908e67 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html index d56d8cc4..e64ab942 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html index 0fb8f26e..795ae9f0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CommonSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExclusiveSkillsByProfession

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html index b12f1c20..53208fda 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html index 9aca0191..c5c908c7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CommonSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

InputSkillsNotInProfession

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MissingSkillsFoundInProfession

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html index 1ca41883..3b285720 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsFoundOnlyInThisProfession

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html index aaf58779..c190df87 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html index 0c1560ef..97c28432 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html index 4f59095a..92d1c5ef 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html index 41e74a5d..3cf5294b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html index 8205dbe0..527b03ea 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedProfessions

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Warnings

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html index 30585c21..3ada16c8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsWithoutProfessionRelation

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html index 76e9d5f3..93772eb8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html index 7d15ecb7..41af926b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedSkills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html index ae4aa259..a46415c6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MissingSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html index 0f3d24f6..c17f2f6c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html index 70caeeea..8f4b8f73 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ONET

@@ -164,10 +164,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html index a1ff7248..25ba2970 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeIds

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html index 462a5023..cf6a593c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html index 00afafcd..ef265b3d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html index f5ac3dc3..92de7af9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html index 0f9c3f4c..917de68e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html index 79bd3baf..da32dc39 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html index 1a803f46..2fba6513 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html index 0a40f365..b59ad86c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html index 66aef5e7..4acb3106 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html index 98fd57d2..840cc370 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html index 8ac18ed1..3465557e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Threshold

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html index 11f1335c..d5ecfc9e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillIds

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html index 9ab2ca98..a9dc7918 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html index a741abf6..540c3ff1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -176,10 +176,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html index c3bd0294..3bdf70b5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html index 82e351bc..904e74f7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html index 71a082cc..990281cf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html index 21e01c01..92c26386 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Truncated

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html index ec43a927..5b7f88c3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html index 34c0dffd..19565b49 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html index a962f1ae..35c00752 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html index c86992bf..899f0b79 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html index 7a601589..e7dc5153 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html index 25425d58..cb43911f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html index 548c72d1..6d85fc8a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html index a48216d0..c12d5f7d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CompanyName

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Email

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phone

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Placement

@@ -350,10 +350,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html index 7e239be9..dedebfe1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html index 8755cf6b..24be4e2a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html index d76fac17..0b0e50d3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CompanyInfo

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Metadata

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputType

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WorkHistory

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html index 6709e02c..dbba37d5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeRequest(ParsedResume, ResumeType)

@@ -169,10 +169,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Options

@@ -200,10 +200,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -238,10 +238,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html index 4a61c8ba..4d79e649 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html index a140703e..dd89b352 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentAsBase64String

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html index 999900e2..c4913005 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplateRequest(ParsedResume, Byte[], ResumeType)

@@ -172,10 +172,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplateRequest(ParsedResume, String, ResumeType)

@@ -220,10 +220,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomData

@@ -256,10 +256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputType

@@ -288,10 +288,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -319,10 +319,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Template

@@ -359,10 +359,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html index 829056fe..f27f0b0c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

HideCandidateSummary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HideTopSkills

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html index 4971c916..26c7dfa7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo()

@@ -142,10 +142,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo(Byte[], Int32, Int32)

@@ -188,10 +188,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo(String, Int32, Int32)

@@ -236,10 +236,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -267,10 +267,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -298,10 +298,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -335,10 +335,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html index 2d1d820e..2f4fbeb9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html index 74be2ba6..bd3e270f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerNames

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxYearsOfWorkHistory

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumPositions

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html index dc4cb10f..93f9a7c8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AddressLine

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html index eeb083e0..4b1a0ca2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html index b367384b..e28503a5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html index d3c2b966..5984a52c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html index 7a09fc61..41063806 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexIfGeocodeFails

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingOptions

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html index a50fe262..d9f121b1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeResponse

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingResponse

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html index 782b8586..080c0f5c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html index f8a7314a..6921a3a5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html index 963432d4..bc5d6626 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html index 32bbad4e..0b1ff9e9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Provider

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProviderKey

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html index 549fcd44..580ee9dd 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html index fbdf7ca5..d2739c86 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html index 7b672551..e8f4d2fb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html index 735a9f1e..8a652fed 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IncludeGeocoding

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html index 1a85d026..128d096f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeoCoordinates

@@ -170,10 +170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalAddress

@@ -209,10 +209,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html index e6df8a78..a171c749 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html index 73baf0f1..22fa14e7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html index 1cb24e98..32657779 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html index 8864cdbb..6f6b33aa 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html index 6b90deb7..35edb0a0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Info

@@ -134,10 +134,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html index f25639ab..acfad38a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexType

@@ -164,10 +164,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html index 783f9533..6b7ba924 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html index 0640555b..9b419dca 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html index 9cdcff0c..b036ee19 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html index fa9f0282..9a2a1af0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html index 98411931..f19e3ff6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html index 38609071..82b0b597 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html index 5927094c..d4f8558d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html index 20e8a59a..e4ad4b51 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html index fb861847..d110952c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html index 9bb68eb5..49e199b5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html index c9df6d37..2f1cb7de 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html index 854893de..fecd7bcc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html index 98351c9c..6ea2284d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -162,10 +162,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -199,10 +199,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html index a04cfac4..90f17b43 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html index 2eb68e16..5c145e90 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html index 6e638d38..6d44bab9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Jobs

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html index 852674c5..211940d7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Resumes

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html index be9ebd83..e5ceabf5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html index bd75a89d..a11a8255 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html index a1ca1ed0..ed12035c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html index 11453ab8..654343e8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Method

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html index cde86e16..84b509bf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html index 2c037a9f..955a0d70 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html index 31435e0e..e606638c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Organization

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Tone

@@ -319,10 +319,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html index a06e2eca..d54a86da 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html index f641e9be..fdf1867c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobDescription

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html index 71542233..2428fa51 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Priority

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html index a9cf8d78..8e2c1426 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html index 149ce6d4..287d7964 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html index fac1828f..d5bcd27e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html index 05ab47de..61dec3e7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html index 3e5f12eb..980c2c49 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedSkills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html index 54a62618..2d0eaa6b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html @@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AppliedCategoryWeights

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedCategoryWeights

@@ -236,10 +236,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html index 6f79f1e6..28f5475b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentCount

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Matches

@@ -205,10 +205,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TotalCount

@@ -242,10 +242,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html index adad7393..892527ef 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CertificationsHasData

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EducationHasData

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveTypeHasData

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Industries

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndustriesHasData

@@ -374,10 +374,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitlesHasData

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesHasData

@@ -498,10 +498,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -529,10 +529,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevelHasData

@@ -560,10 +560,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -591,10 +591,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsHasData

@@ -628,10 +628,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html index ed70e33b..dce40f20 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html index 52fad5d3..ffb3c287 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html index af7d8677..5d409b58 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html @@ -147,10 +147,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html index 9ad8cf1d..6398f24f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html index 45ff3210..252fdb88 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html index b301f3be..39c9178c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AverageMonthsPerEmployer

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentManagementLevel

@@ -226,10 +226,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DegreeNames

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DegreeTypes

@@ -310,10 +310,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentIds

@@ -341,10 +341,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLanguages

@@ -372,10 +372,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Employers

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployersMustAllBeCurrentEmployer

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HasPatents

@@ -509,10 +509,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HasSecurityCredentials

@@ -540,10 +540,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsAuthor

@@ -571,10 +571,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrentStudent

@@ -602,10 +602,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsMilitary

@@ -633,10 +633,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsPublicSpeaker

@@ -664,10 +664,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsRecentGraduate

@@ -695,10 +695,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsTopStudent

@@ -726,10 +726,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobPredictiveIndex

@@ -758,10 +758,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -789,10 +789,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesKnown

@@ -821,10 +821,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesKnownMustAllExist

@@ -853,10 +853,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LocationCriteria

@@ -884,10 +884,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -915,10 +915,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsManagementExperience

@@ -946,10 +946,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RevisionDateRange

@@ -977,10 +977,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolNames

@@ -1010,10 +1010,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SearchExpression

@@ -1042,10 +1042,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SecurityCredentials

@@ -1075,10 +1075,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -1106,10 +1106,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsMustAllExist

@@ -1138,10 +1138,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -1170,10 +1170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -1202,10 +1202,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTagsMustAllExist

@@ -1240,10 +1240,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html index 4db5a0d9..ef1c3c94 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeoPoint

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html index c473b384..c873aedc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html index af639407..81d8bf2c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Title

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html index c1061b2b..389d8a0b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Distance

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceUnit

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeProvider

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeProviderKey

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Locations

@@ -291,10 +291,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html index 71bdb645..23bc78f9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html @@ -147,10 +147,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html index 06e6e4b0..70335ac5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Take

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html index ff665f7a..fb69b080 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skip

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Take

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html index cdfe1585..7150944e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html index bde646ff..594da792 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FilterCriteria

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexIdsToSearchInto

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Settings

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html index 5ce95af5..a0555eae 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeJobTitles

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeJobTitlesLanguage

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PositionTitlesMustHaveAnExactMatch

@@ -235,10 +235,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html index e039a11a..993a6c90 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html @@ -133,10 +133,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html index 5d0c790e..9a7eabb7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExperienceLevel

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillName

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html index e4edcea2..83eac3ba 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html @@ -132,10 +132,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Evidence

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UnweightedScore

@@ -200,10 +200,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html index 9ad76ad8..49c9aa42 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Fact

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html index d08c649f..bba12f27 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Primary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Secondary

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html index 7dc02d51..8809571f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ActualEducation

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Comparison

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExpectedEducation

@@ -235,10 +235,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html index 6060681c..d997b6ee 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html index ade61986..86953c62 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawTerm

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

VariationOf

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html index d0a85953..e1b7ba0d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skill

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html index 9e1a3b5e..b8728b8a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -128,10 +128,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -272,10 +272,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html index 7f135186..aea129b1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html index 1290c718..48be3a9c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Actual

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

AmountOfExperienceMatches

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Desired

@@ -232,10 +232,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html index 195bf426..9c5d7204 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -233,10 +233,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -267,10 +267,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -316,10 +316,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html index 420dc33e..c418b49c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html index f6b10b23..227710fa 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html index acf29491..ceff6c2f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html index ff8f2cf8..b6a29e51 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ActualTaxonomies

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DesiredTaxonomies

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html index fff8073e..648450ee 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Subtaxonomy

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomy

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html index c8f93962..5971f317 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Matched

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html index 79c79e20..cb8151e4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PaginationSettings

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html index 43a462a5..104ff051 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html index 45c0fc52..e2e24eb0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html @@ -140,10 +140,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html index 7f0d1f39..33f585fb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Result

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html index 2c02ada3..3b81b03a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SovScoreName

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Style

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Username

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html index 763d2245..48590230 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html @@ -138,10 +138,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Result

@@ -175,10 +175,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html index b7497a40..8c4f0939 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html index 6ce74d37..a8f4ccda 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html index 968cd898..24efc88e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html @@ -145,10 +145,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MatchDetails

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UIOptions

@@ -213,10 +213,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html index fd91f16d..a43c2b0d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html @@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SaasRequest

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html index 83b03780..677cb08d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExpiresIn

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

URL

@@ -202,10 +202,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html index bca999b8..6f735a89 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Documents

@@ -186,10 +186,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html index 92be4991..1cddeb80 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JsAction

@@ -167,10 +167,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UrlAction

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html index 1acbdf28..1cf716b7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html index 8f743ef1..e00027d8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html @@ -146,10 +146,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomInfo

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Username

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html index ed6ebe2c..9826af06 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Data

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Target

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetOrigin

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html index 034e7603..1164e1a9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FilterCriteria

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -217,10 +217,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html index 8e48992c..7e387bf1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Client

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Server

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html index 8493eff8..6884764c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -167,10 +167,10 @@
Overrides
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkText

@@ -206,10 +206,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html index c40382a3..a5a20a29 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomInfo

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Url

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html index 2693889d..000d9e1e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -176,10 +176,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html index f100b173..92c90b1a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobBoard

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobBoardDocumentId

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -242,10 +242,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SourceDocument

@@ -279,10 +279,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html index 4200437d..980df8ed 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Target

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Url

@@ -200,10 +200,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html index f2f1d52a..3bd46cfc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkText

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html index 6c0f475c..618df07a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Client

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OnUpdate

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Server

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Sourcing

@@ -267,10 +267,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html index 391e45de..63bc9c5d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -217,10 +217,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html index 35d88bc1..cd0a2223 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AppliedCategoryWeights

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HtmlDocument

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SourceDocumentType

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html index 6e1b978e..6e9341bd 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseOptions

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UIOptions

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html index 105d62d2..a63dbf14 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FontFamily

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FontUrl

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HeaderColor

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PrimaryColor

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SquareCorners

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html index 85280102..8e02cb88 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html @@ -137,10 +137,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html index 5e305777..232ae212 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html @@ -144,10 +144,10 @@
S diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html index c975631a..69956a29 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html @@ -137,10 +137,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html index 1223d5fa..c2c2be53 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html @@ -144,10 +144,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html index 3ea4f806..0a6d5f2f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html @@ -144,10 +144,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html index d9359530..6c584d4a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html @@ -137,10 +137,10 @@
Synta diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html index 563c7d90..04d87cfb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html @@ -144,10 +144,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html index 200a4f08..65beb69a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html @@ -144,10 +144,10 @@
Syntax diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html index 44560618..9c83c5d2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExecuteImmediately

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Hooks

@@ -200,10 +200,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowBanner

@@ -231,10 +231,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowDetailsButton

@@ -262,10 +262,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFilterCriteria

@@ -293,10 +293,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFindSimilar

@@ -324,10 +324,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowJobBoards

@@ -356,10 +356,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowSavedSearches

@@ -387,10 +387,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowWebSourcing

@@ -418,10 +418,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowWeights

@@ -449,10 +449,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsAutoCompleteCustomSkillsList

@@ -480,10 +480,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTagsPicklists

@@ -518,10 +518,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html index 9fc362a5..9c6b38b2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html @@ -144,10 +144,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html index 8ca32e09..bc84475e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html index c318f158..00eaf74a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Label

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Options

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html index becf0507..e1874626 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ConversionMetadata

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Conversions

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParsingMetadata

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParsingResponse

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionNormalizationResponse

@@ -296,10 +296,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html index 00c5ae9b..93c14043 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Configuration

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizerData

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionsSettings

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -256,10 +256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSettings

@@ -293,10 +293,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html index 2d4521ee..bd75d426 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DetectedType

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentHash

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ElapsedMilliseconds

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputValidityCode

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedFileExtension

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html index f305579a..c292e128 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateImage

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateImageExtension

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HTML

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PDF

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RTF

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html index 086e86a3..e21891fc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DataType

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnumerationValues

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Identifier

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prompt

@@ -259,10 +259,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html index f71955a8..4b801a03 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html @@ -138,10 +138,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html index 638f2317..4d260af2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Responses

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html index e4525745..1ccb71bf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Identifier

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Reply

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReplyList

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html index 42764ec2..abb7a240 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html index 96290868..445de06a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -186,10 +186,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html index f2d5a272..ff6ed474 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FlexRequests

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -208,10 +208,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingOptions

@@ -243,10 +243,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputCandidateImage

@@ -274,10 +274,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputHtml

@@ -305,10 +305,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputPdf

@@ -336,10 +336,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputRtf

@@ -367,10 +367,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UseLLMParser

@@ -406,10 +406,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html index 6fccce62..fcfe06ba 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html @@ -167,10 +167,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParseRequest(Document, ParseOptions)

@@ -209,10 +209,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentAsBase64String

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLastModified

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html index a958b0f9..2a8c61cc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html index 0f2f75a0..9f80cac3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EducationNormalizationResponse

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FlexResponse

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RedactedResumeData

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -281,10 +281,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html index d6e5e60c..e95b8102 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ElapsedMilliseconds

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LicenseSerialNumber

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimedOut

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimedOutAtMilliseconds

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html index fec950b8..bb011100 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalize

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -213,10 +213,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html index c893e8c3..cfac2459 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html @@ -125,10 +125,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalize

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyVersion

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html index 04f9dc2e..ceb475a8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html index 3b3ba5b5..d6999fe7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Matches

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html index 49224ec1..58379372 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsoCode

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html index 32bcce03..3b4f9ba8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html @@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html index 23ca6c9d..bf111855 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

RawText

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html index 161e927e..293a0c49 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Class

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Isco

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Kldb2020

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Onet

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Onet2019

@@ -321,10 +321,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UkSoc2010

@@ -352,10 +352,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UwvBoc

@@ -389,10 +389,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html index 4cf73d1c..733073e9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -211,10 +211,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html index a5f9d943..a183ece3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html @@ -155,10 +155,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -187,10 +187,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Descriptions

@@ -224,10 +224,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html index 9727647c..ada97b4e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsoCode

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -258,10 +258,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html index 910eb34e..d75ba8ff 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html @@ -141,10 +141,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -178,10 +178,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html index fb00e2d3..1491232b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BeginSpan

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndSpan

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Likelihood

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawText

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html index 53a63e1a..b649e5d9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Descriptions

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html index 4ad8aab0..dab29221 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CsvOutput

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html index 4ae2b982..bd9b5e2c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ServiceVersion

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyReleaseDate

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html index 873943aa..0394da37 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -185,10 +185,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Document.html b/docs/site-/sdk/Textkernel.Tx.Models.Document.html index 7687d688..3ee7053f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Document.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Document.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Document(Byte[], DateTime)

@@ -168,10 +168,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Document(String)

@@ -205,10 +205,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AsBase64

@@ -236,10 +236,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastModified

@@ -273,10 +273,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html b/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html index 10991115..cff82668 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Latitude

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Longitude

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html b/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html index c92e4a52..3e51c96e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Source

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html index c383798f..c1cc651a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDeadline

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDescription

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactEmail

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactPerson

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactPhone

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostedDate

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReferenceNumber

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Website

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html index fb07d04f..f19f328a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MainEmployerName

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html index 97c24f37..7dbfb3ff 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

InternationalEducationLevel

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LocalEducationLevel

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html index ea66ee43..1b39fa6c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html @@ -146,10 +146,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html index bd556590..fcbd8217 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MainJobTitle

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedProfession

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html index af3f0a99..7ca74f68 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html @@ -130,10 +130,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParsedJob()

@@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDetails

@@ -185,10 +185,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Benefits

@@ -216,10 +216,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CertificationsAndLicenses

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContractType

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentJobIsManagement

@@ -321,10 +321,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentLocation

@@ -352,10 +352,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Degrees

@@ -383,10 +383,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DriversLicenses

@@ -414,10 +414,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerDescription

@@ -445,10 +445,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerNames

@@ -476,10 +476,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmploymentType

@@ -511,10 +511,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -542,10 +542,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -573,10 +573,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HighestManagementScore

@@ -604,10 +604,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsRemote

@@ -635,10 +635,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobDescription

@@ -666,10 +666,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobMetadata

@@ -697,10 +697,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobRequirements

@@ -728,10 +728,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -759,10 +759,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCodes

@@ -790,10 +790,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -821,10 +821,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumWorkingHours

@@ -852,10 +852,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumYears

@@ -883,10 +883,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumYearsManagement

@@ -914,10 +914,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumWorkingHours

@@ -945,10 +945,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumYears

@@ -976,10 +976,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumYearsManagement

@@ -1007,10 +1007,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Owners

@@ -1038,10 +1038,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequiredDegree

@@ -1069,10 +1069,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Salary

@@ -1100,10 +1100,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolNames

@@ -1131,10 +1131,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -1162,10 +1162,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -1194,10 +1194,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -1225,10 +1225,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TermsOfInterest

@@ -1256,10 +1256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -1290,10 +1290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WorkingHours

@@ -1325,10 +1325,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

FromFile(String)

@@ -1374,10 +1374,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

FromJson(String)

@@ -1423,10 +1423,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -1481,10 +1481,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html index 50af4da5..502a1e8a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Currency

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawMaximum

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawMinimum

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimeScale

@@ -331,10 +331,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html index 0fcd401e..d02d1e95 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -176,10 +176,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html index a3870858..a7068772 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html index b4925e99..5042deb8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html index c5fe34de..335f720f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html index 2d95664e..861c6d0c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html index 70517d59..3614383b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html @@ -151,10 +151,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html index 227a1168..7561bd27 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Root

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html index af0338d5..bb28c0da 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedProfessionClasses

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Location.html b/docs/site-/sdk/Textkernel.Tx.Models.Location.html index 677139c9..d0a26a79 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Location.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Location.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeoCoordinates

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Regions

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StreetAddressLines

@@ -318,10 +318,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html index ba6fa390..ad6a51bd 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexType

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html index d72dab81..3d68deba 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html index ab1bde0d..e92e036e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html @@ -125,10 +125,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToFile(String, Boolean)

@@ -165,10 +165,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -215,10 +215,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -254,10 +254,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html index c206f2af..f13c3492 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentCulture

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLanguage

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLastModified

@@ -230,10 +230,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParserSettings

@@ -261,10 +261,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PlainText

@@ -298,10 +298,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html index 19a5c8f4..3ccea2d4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Organization

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Role

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html index d4e90ace..d1b441e1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Company

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReferenceName

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telephones

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Title

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WebAddresses

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html index ddaffeef..4a075da7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsVariation

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MatchedFromList

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -229,10 +229,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html index d05a0787..aeb241e6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telephones

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WebAddresses

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html index cb22a507..461d82cb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FamilyName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FormattedName

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GivenName

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MiddleName

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Moniker

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prefix

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Suffix

@@ -349,10 +349,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html index a65478b5..1232d940 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AreaCityCode

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

InternationalCountryCode

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubscriberNumber

@@ -232,10 +232,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html index 9a529816..5df840c3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Address

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -215,10 +215,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html index c564d716..7be93b16 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

Facebook

A Facebook profile URL

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Gab

A Gab username

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GitHub

A GitHub username/URL

@@ -216,10 +216,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ICQ

An ICQ username

@@ -246,10 +246,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Instagram

An Instagram username

@@ -276,10 +276,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkedIn

A LinkedIn URL

@@ -306,10 +306,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MeWe

A MeWe username/URL

@@ -336,10 +336,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Parler

A Parler username

@@ -366,10 +366,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PersonalWebsite

A personal website URL

@@ -396,10 +396,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QQ

A QQ username/number

@@ -426,10 +426,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Quora

A Quora username

@@ -456,10 +456,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Reddit

A Reddit username/URL

@@ -486,10 +486,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Signal

A Signal username/number

@@ -516,10 +516,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skype

A Skype username/URL

@@ -546,10 +546,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StackOverflow

A Stack Overflow username/URL

@@ -576,10 +576,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telegram

A Telegram username

@@ -606,10 +606,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telegraph

A Telegraph username

@@ -636,10 +636,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Twitter

A Twitter handle

@@ -666,10 +666,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Unknown

An unknown internet handle/URL (the platform/website/app was not specified)

@@ -696,10 +696,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeChat

A WeChat username

@@ -726,10 +726,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WhatsApp

A WhatsApp username/number

@@ -758,10 +758,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -791,10 +791,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(String to WebAddressType)

@@ -846,10 +846,10 @@
Returns
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html index 08a35e1a..86bcce4c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedInternational

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedLocal

@@ -225,10 +225,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html index 337e6274..27b6c4e2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Degree

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GPA

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Graduated

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastEducationDate

@@ -313,10 +313,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Majors

@@ -375,10 +375,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minors

@@ -406,10 +406,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolName

@@ -437,10 +437,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolType

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -509,10 +509,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -546,10 +546,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html index d6eb2a22..75789b6a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EducationDetails

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HighestDegree

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html index a927ac1b..9143213a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MaxScore

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumScore

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedScore

@@ -224,10 +224,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -255,10 +255,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ScoringSystem

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html index 2466b60d..e316ae9a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html index 378ca11a..3462c6d0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html index d7c1b404..9f7cf0c1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Probability

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html index 23c564eb..e939e4cf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OtherFoundName

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html index f5825455..aec6b0b4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExperienceSummary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html index c73467bc..c75f7b1d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AttentionNeeded

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

AverageMonthsPerEmployer

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentManagementLevel

@@ -229,10 +229,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -266,10 +266,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -309,10 +309,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FulltimeDirectHirePredictiveIndex

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementScore

@@ -379,10 +379,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementStory

@@ -410,10 +410,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsOfManagementExperience

@@ -447,10 +447,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsOfWorkExperience

@@ -489,10 +489,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html index 14e53db1..ce25d99e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Probability

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -224,10 +224,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -262,10 +262,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html index 4b135bc8..2f388144 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Class

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ISCO

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ONET

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Profession

@@ -318,10 +318,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html index 64a84d9f..86535e1c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Bullets

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Employer

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -282,10 +282,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -313,10 +313,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsSelfEmployed

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobLevel

@@ -382,10 +382,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -413,10 +413,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobType

@@ -450,10 +450,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedProfession

@@ -481,10 +481,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumberEmployeesSupervised

@@ -512,10 +512,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedToByCompanyName

@@ -543,10 +543,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedToByDates

@@ -574,10 +574,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -605,10 +605,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyName

@@ -638,10 +638,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyName

@@ -671,10 +671,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyPercentage

@@ -709,10 +709,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html index 6ab68c19..d492eb5e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -185,10 +185,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html index ddf61f54..892f5a94 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCode

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html index 4d724501..7eaca26c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MatchedFromList

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html index e865d7be..acf01460 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Names

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OtherData

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phones

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Urls

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html index 3589eb4e..03bdd02a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html @@ -142,10 +142,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundSections

@@ -173,10 +173,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReservedData

@@ -204,10 +204,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeQuality

@@ -254,10 +254,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html index acd76415..d40b7558 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Findings

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Level

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html index a14e0164..f99c0c61 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QualityCode

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionIdentifiers

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html index f7110aac..63d86872 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DataMissing

Some data was missing that should be included in a resume

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FatalProblem

A fatal issue was found in the resume. Parse results may have severe inaccuracies

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MajorIssue

A major issue was found in the resume that will reduce the quality of parse results

@@ -216,10 +216,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedImprovement

Only minor issues were found

@@ -248,10 +248,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -281,10 +281,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(String to ResumeQualityLevel)

@@ -336,10 +336,10 @@
Returns
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html index 8aeba848..bbeb4c28 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FirstLineNumber

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HeaderTextFound

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastLineNumber

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionType

@@ -283,10 +283,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html index 154c0694..694e64c8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Country

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Service

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html index 918a4a63..0d2f5556 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Branch

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Rank

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html index c8c506c6..8095eeb5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html index 39ccbeb1..9f8b2090 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Number

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phrase

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html index b844e85b..89d75f34 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html index 30cf248d..3695360b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html @@ -130,10 +130,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParsedResume()

@@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Achievements

@@ -185,10 +185,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Associations

@@ -216,10 +216,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactInformation

@@ -278,10 +278,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CoverLetter

@@ -309,10 +309,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -340,10 +340,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmploymentHistory

@@ -371,10 +371,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Hobbies

@@ -402,10 +402,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCompetencies

@@ -434,10 +434,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Licenses

@@ -466,10 +466,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MilitaryExperience

@@ -497,10 +497,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Objective

@@ -528,10 +528,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Patents

@@ -559,10 +559,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PersonalAttributes

@@ -590,10 +590,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionalSummary

@@ -621,10 +621,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Publications

@@ -652,10 +652,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QualificationsSummary

@@ -683,10 +683,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

References

@@ -714,10 +714,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeMetadata

@@ -745,10 +745,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SecurityCredentials

@@ -776,10 +776,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -807,10 +807,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -839,10 +839,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SpeakingEngagements

@@ -870,10 +870,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Training

@@ -901,10 +901,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -937,10 +937,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

FromFile(String)

@@ -986,10 +986,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

FromJson(String)

@@ -1035,10 +1035,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -1093,10 +1093,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html index be71c852..3b5ce94c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Availability

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Birthplace

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentLocation

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentSalary

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DateOfBirth

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DrivingLicense

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FamilyComposition

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FathersName

@@ -374,10 +374,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Gender

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HukouArea

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HukouCity

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaritalStatus

@@ -498,10 +498,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MothersMaidenName

@@ -529,10 +529,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MotherTongue

@@ -560,10 +560,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NationalIdentities

@@ -591,10 +591,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Nationality

@@ -622,10 +622,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PassportNumber

@@ -653,10 +653,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredLocation

@@ -684,10 +684,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequiredSalary

@@ -715,10 +715,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

VisaStatus

@@ -746,10 +746,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WillingToRelocate

@@ -783,10 +783,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html index 7961e252..f428846f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Amount

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Currency

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html index 874c2da4..bba1b07b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionType

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html index 0b7fdb60..61cd2fba 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -170,10 +170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -201,10 +201,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -238,10 +238,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html index 3477b3ac..0f6a8fa4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -229,10 +229,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html index 7d9a74f2..cc0993d1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html @@ -146,10 +146,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ChildrenLastUsed

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ChildrenMonthsExperience

@@ -208,10 +208,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -245,10 +245,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html index fa6ea163..e34736d8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -236,10 +236,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html index 71e93244..969dbc10 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html index a237d470..a46a4c03 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html @@ -151,10 +151,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html index dd19afed..c1ed71e6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Root

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html index 657b6e3e..b06497c7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedProfessionClasses

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html index f7cc4b9f..c34ef574 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Entity

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Qualifications

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -288,10 +288,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html index 947c7daf..36281643 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Trainings

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html index f62e4b32..506757f7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfOverall

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfParent

@@ -203,10 +203,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html index ae858d7c..f8cbaa7b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html @@ -147,10 +147,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -178,10 +178,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -209,10 +209,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfOverall

@@ -240,10 +240,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -281,10 +281,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html index b05cbb9d..58c537fc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html @@ -112,10 +112,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -143,10 +143,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -211,10 +211,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html index edf80582..6cf75c4b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawSkills

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -258,10 +258,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html index 3fc58f52..4c67dd7f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Groups

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Percent

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html index 96bc64c9..77841450 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Percent

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html index 924a17d4..1bc82876 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html index e1f53713..b4e0a81c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExistsInText

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html index 72fe364e..0d288bfc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyId

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyName

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html index 93e406a0..be750019 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TxDefaults

@@ -265,10 +265,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html b/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html index 32129cd0..f4f89c98 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Date

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundDay

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundMonth

@@ -226,10 +226,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundYear

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrentDate

@@ -294,10 +294,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html b/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html index debfd25b..0d0325b3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.TxClient.html b/docs/site-/sdk/Textkernel.Tx.TxClient.html index 693faf1f..0bdc53d2 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxClient.html +++ b/docs/site-/sdk/Textkernel.Tx.TxClient.html @@ -131,10 +131,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

TxClient(HttpClient, TxClientSettings)

@@ -184,10 +184,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

TxClient(String, String, DataCenter, IEnumerable<String>)

@@ -240,10 +240,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFullRequestBodyInExceptions

@@ -274,10 +274,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteProfession(String, IEnumerable<String>, String, Int32)

@@ -364,10 +364,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkill(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -460,10 +460,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkillV2(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -556,10 +556,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedJobWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -657,10 +657,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedResumeWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -758,10 +758,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessions(Int32, Int32, String)

@@ -841,10 +841,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessionsV2(Int32, Int32, String)

@@ -924,10 +924,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(Int32, String, SkillScore[])

@@ -1005,10 +1005,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(ParsedResume, Int32, String, Boolean)

@@ -1090,10 +1090,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(Int32, String, SkillScore[])

@@ -1171,10 +1171,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean)

@@ -1256,10 +1256,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateIndex(IndexType, String)

@@ -1328,10 +1328,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteDocument(String, String)

@@ -1399,10 +1399,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteIndex(String)

@@ -1464,10 +1464,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteMultipleDocuments(String, IEnumerable<String>)

@@ -1535,10 +1535,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -1551,10 +1551,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkills(String, String, String, Single)

@@ -1639,10 +1639,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkillsV2(String, String, String, Single)

@@ -1727,10 +1727,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResume(FormatResumeRequest)

@@ -1793,10 +1793,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplate(FormatResumeWithTemplateRequest)

@@ -1859,10 +1859,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateJobDescription(GenerateJobRequest)

@@ -1924,10 +1924,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, Address, GeocodeCredentials)

@@ -2002,10 +2002,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, GeocodeCredentials)

@@ -2074,10 +2074,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, Address, GeocodeCredentials)

@@ -2152,10 +2152,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, GeocodeCredentials)

@@ -2224,10 +2224,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2314,10 +2314,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2398,10 +2398,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2495,10 +2495,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2586,10 +2586,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2676,10 +2676,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2760,10 +2760,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2857,10 +2857,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2948,10 +2948,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAccountInfo()

@@ -2995,10 +2995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAllIndexes()

@@ -3042,10 +3042,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetJob(String, String)

@@ -3113,10 +3113,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomy(String, TaxonomyFormat)

@@ -3188,10 +3188,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomyMetadata()

@@ -3236,10 +3236,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetResume(String, String)

@@ -3307,10 +3307,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomy(TaxonomyFormat)

@@ -3374,10 +3374,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadata()

@@ -3422,10 +3422,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadataV2()

@@ -3470,10 +3470,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyV2(TaxonomyFormat)

@@ -3537,10 +3537,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

@@ -3621,10 +3621,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedResume, String, String, IEnumerable<String>)

@@ -3705,10 +3705,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexJobInfo>, String)

@@ -3776,10 +3776,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexResumeInfo>, String)

@@ -3847,10 +3847,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupProfessions(IEnumerable<Int32>, String)

@@ -3922,10 +3922,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkills(IEnumerable<String>, String)

@@ -3995,10 +3995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkillsV2(IEnumerable<String>, String)

@@ -4068,10 +4068,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(String, String, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4170,10 +4170,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedJob, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4266,10 +4266,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedResume, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4362,10 +4362,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeProfessions(IEnumerable<String>, String, String)

@@ -4444,10 +4444,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkills(IEnumerable<String>, String, String)

@@ -4526,10 +4526,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkillsV2(IEnumerable<String>, String, String)

@@ -4583,10 +4583,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJob(ParseRequest)

@@ -4664,10 +4664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResume(ParseRequest)

@@ -4745,10 +4745,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Search(IEnumerable<String>, FilterCriteria, SearchMatchSettings, PaginationSettings)

@@ -4828,10 +4828,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4904,10 +4904,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScoreV2(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4980,10 +4980,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5065,10 +5065,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

@@ -5150,10 +5150,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5241,10 +5241,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5326,10 +5326,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String)

@@ -5411,10 +5411,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5502,10 +5502,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

@@ -5579,10 +5579,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

@@ -5658,10 +5658,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

@@ -5737,10 +5737,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

@@ -5816,10 +5816,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(IEnumerable<Int32>, Int32, String, IEnumerable<String>)

@@ -5901,10 +5901,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -5986,10 +5986,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable<String>)

@@ -6071,10 +6071,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

@@ -6153,10 +6153,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedJob, Int32, String)

@@ -6234,10 +6234,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

@@ -6321,10 +6321,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(IEnumerable<SkillScore>, Int32, String, IEnumerable<String>)

@@ -6409,10 +6409,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -6496,10 +6496,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable<String>)

@@ -6589,10 +6589,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateJobUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6672,10 +6672,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateResumeUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6768,10 +6768,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html b/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html index c9f84bea..24ed68e7 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AccountId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DataCenter

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ServiceKey

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TrackingTags

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.TxException.html b/docs/site-/sdk/Textkernel.Tx.TxException.html index e3f8c846..2846b2ae 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxException.html @@ -166,10 +166,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

HttpStatusCode

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequestBody

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResponseMessage

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionId

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TxErrorCode

@@ -331,10 +331,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html b/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html index f4650a43..01d8cfe1 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html index 17bec7a7..54a82e4a 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html b/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html index 3d084a63..236f251d 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html index 03c34564..35c860a9 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html index b63b178d..a5b7eee7 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html index 31cf118c..977864e0 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html b/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html index b25694cf..93a19127 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html @@ -183,10 +183,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -224,10 +224,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html index 2a1ae25e..1064506a 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html @@ -183,10 +183,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -224,10 +224,10 @@

Implements

diff --git a/docs/site-/sdk/index.html b/docs/site-/sdk/index.html index 80b05faa..b9964c0a 100644 --- a/docs/site-/sdk/index.html +++ b/docs/site-/sdk/index.html @@ -133,7 +133,7 @@

Matching/Searching/Bimetric Scoring

From d96411fe0d20d8ae31439e55a95d8b78932498e7 Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 16:11:09 -0600 Subject: [PATCH 11/14] update to actually install dotnet --- .github/workflows/build.yml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b55f6153..840d3ca5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: 3.1.x - name: Setup DocFX @@ -90,14 +90,11 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: 3.1.x - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get -y install libicu-dev - dotnet restore + run: dotnet restore working-directory: src/Textkernel.Tx.SDK - name: Build run: dotnet build --configuration Release --no-restore @@ -111,7 +108,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.0.x - name: Create credentials file @@ -120,10 +117,7 @@ jobs: env: CREDENTIALS_FILE: ${{secrets.TEST_CREDENTIALS}} - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get -y install libicu-dev - dotnet restore + run: dotnet restore working-directory: src/Textkernel.Tx.SDK.Tests - name: Build run: dotnet build From 3083e5b8abc3d0b91c42538c7b2dc0b671cd7074 Mon Sep 17 00:00:00 2001 From: Continuous Integration Date: Fri, 27 Dec 2024 22:13:35 +0000 Subject: [PATCH 12/14] --- auto-generation of docfx documentation --- --- docs/site-/index.html | 2 +- docs/site-/manifest.json | 694 +++++++++--------- ...extkernel.Tx.Batches.BatchErrorResult.html | 8 +- .../Textkernel.Tx.Batches.BatchParser.html | 12 +- ...xtkernel.Tx.Batches.BatchParsingRules.html | 28 +- .../Textkernel.Tx.Batches.BatchResult.html | 12 +- ....Batches.JobBatchPartialSuccessResult.html | 8 +- ...rnel.Tx.Batches.JobBatchSuccessResult.html | 8 +- ...tches.ResumeBatchPartialSuccessResult.html | 8 +- ...l.Tx.Batches.ResumeBatchSuccessResult.html | 8 +- ...el.Tx.Batches.TxInvalidBatchException.html | 4 +- docs/site-/sdk/Textkernel.Tx.DataCenter.html | 20 +- docs/site-/sdk/Textkernel.Tx.ITxClient.html | 324 ++++---- ...ls.API.Account.GetAccountInfoResponse.html | 4 +- .../Textkernel.Tx.Models.API.AccountInfo.html | 36 +- ...extkernel.Tx.Models.API.ApiResponse-1.html | 12 +- ...tkernel.Tx.Models.API.ApiResponseInfo.html | 28 +- ...nel.Tx.Models.API.ApiResponseInfoLite.html | 12 +- ...metricScoring.BimetricScoreJobRequest.html | 8 +- ....BimetricScoring.BimetricScoreRequest.html | 20 +- ...BimetricScoring.BimetricScoreResponse.html | 4 +- ...ricScoring.BimetricScoreResponseValue.html | 4 +- ...I.BimetricScoring.BimetricScoreResult.html | 28 +- ...ricScoring.BimetricScoreResumeRequest.html | 8 +- ....API.BimetricScoring.IParsedDocWithId.html | 8 +- ...s.API.BimetricScoring.ParsedJobWithId.html | 12 +- ...PI.BimetricScoring.ParsedResumeWithId.html | 12 +- ...PI.DataEnrichment.AutocompleteRequest.html | 20 +- ...PI.DataEnrichment.GetMetadataResponse.html | 4 +- ...ogy.Request.CompareProfessionsRequest.html | 16 +- ...uest.CompareSkillsToProfessionRequest.html | 16 +- ....Request.SkillsSimilarityScoreRequest.html | 12 +- ...ogy.Request.SuggestProfessionsRequest.html | 20 +- ...t.SuggestSkillsFromProfessionsRequest.html | 20 +- ...equest.SuggestSkillsFromSkillsRequest.html | 20 +- ...y.Response.CompareProfessionsResponse.html | 4 +- ...ponse.CompareProfessionsResponseValue.html | 16 +- ...nse.CompareSkillsToProfessionResponse.html | 4 +- ...ompareSkillsToProfessionResponseValue.html | 20 +- ...gy.Response.ProfessionExclusiveSkills.html | 12 +- ...richment.Ontology.Response.SkillScore.html | 16 +- ...esponse.SkillsSimilarityScoreResponse.html | 4 +- ...se.SkillsSimilarityScoreResponseValue.html | 8 +- ...y.Response.SuggestProfessionsResponse.html | 4 +- ...ponse.SuggestProfessionsResponseValue.html | 12 +- ...y.Response.SuggestProfessionsWarnings.html | 12 +- ...tology.Response.SuggestSkillsResponse.html | 4 +- ...y.Response.SuggestSkillsResponseValue.html | 8 +- ...Ontology.Response.SuggestedProfession.html | 20 +- ...ataEnrichment.Professions.ONETVersion.html | 4 +- ...sions.ProfessionNormalizationVersions.html | 8 +- ....Request.LookupProfessionCodesRequest.html | 12 +- ...s.Request.NormalizeProfessionsRequest.html | 16 +- ...ponse.AutoCompleteProfessionsResponse.html | 4 +- ....AutoCompleteProfessionsResponseValue.html | 8 +- ...sponse.GetProfessionsTaxonomyResponse.html | 4 +- ...e.GetTaxonomyProfessionsResponseValue.html | 8 +- ...esponse.LookupProfessionCodesResponse.html | 4 +- ...se.LookupProfessionCodesResponseValue.html | 8 +- ...Response.NormalizeProfessionsResponse.html | 4 +- ...nse.NormalizeProfessionsResponseValue.html | 8 +- ...t.Skills.Request.ExtractSkillsRequest.html | 20 +- ...nt.Skills.Request.LookupSkillsRequest.html | 12 +- ...Skills.Request.NormalizeSkillsRequest.html | 16 +- ...lls.Request.SkillsAutoCompleteRequest.html | 8 +- ...s.Response.AutoCompleteSkillsResponse.html | 4 +- ...ponse.AutocompleteSkillsResponseValue.html | 8 +- ...Skills.Response.ExtractSkillsResponse.html | 4 +- ...s.Response.ExtractSkillsResponseValue.html | 12 +- ...ls.Response.GetSkillsTaxonomyResponse.html | 4 +- ...sponse.GetSkillsTaxonomyResponseValue.html | 8 +- ...lls.Response.LookupSkillCodesResponse.html | 4 +- ...esponse.LookupSkillCodesResponseValue.html | 8 +- ...ills.Response.NormalizeSkillsResponse.html | 4 +- ...Response.NormalizeSkillsResponseValue.html | 8 +- ...els.API.DataEnrichment.TaxonomyFormat.html | 4 +- ...l.Tx.Models.API.Formatter.CompanyInfo.html | 32 +- ...ls.API.Formatter.CompanyInfoPlacement.html | 4 +- ...els.API.Formatter.EmployerNameOptions.html | 4 +- ...els.API.Formatter.FormatResumeOptions.html | 20 +- ...els.API.Formatter.FormatResumeRequest.html | 16 +- ...ls.API.Formatter.FormatResumeResponse.html | 4 +- ...I.Formatter.FormatResumeResponseValue.html | 8 +- ...atter.FormatResumeWithTemplateRequest.html | 28 +- ....Models.API.Formatter.MetadataOptions.html | 12 +- ...el.Tx.Models.API.Formatter.ResumeLogo.html | 28 +- ...el.Tx.Models.API.Formatter.ResumeType.html | 4 +- ...dels.API.Formatter.WorkHistoryOptions.html | 16 +- ...ernel.Tx.Models.API.Geocoding.Address.html | 24 +- ...I.Geocoding.GeocodeAndIndexJobRequest.html | 8 +- ....Geocoding.GeocodeAndIndexJobResponse.html | 4 +- ...oding.GeocodeAndIndexJobResponseValue.html | 8 +- ....API.Geocoding.GeocodeAndIndexRequest.html | 16 +- ...eocoding.GeocodeAndIndexResponseValue.html | 12 +- ...eocoding.GeocodeAndIndexResumeRequest.html | 8 +- ...ocoding.GeocodeAndIndexResumeResponse.html | 4 +- ...ng.GeocodeAndIndexResumeResponseValue.html | 8 +- ...dels.API.Geocoding.GeocodeCredentials.html | 12 +- ...odels.API.Geocoding.GeocodeJobRequest.html | 8 +- ...dels.API.Geocoding.GeocodeJobResponse.html | 4 +- ...API.Geocoding.GeocodeJobResponseValue.html | 8 +- ...x.Models.API.Geocoding.GeocodeOptions.html | 8 +- ...dels.API.Geocoding.GeocodeOptionsBase.html | 12 +- ....Models.API.Geocoding.GeocodeProvider.html | 4 +- ...ls.API.Geocoding.GeocodeResumeRequest.html | 8 +- ...s.API.Geocoding.GeocodeResumeResponse.html | 4 +- ....Geocoding.GeocodeResumeResponseValue.html | 8 +- .../Textkernel.Tx.Models.API.ITxResponse.html | 8 +- ...Models.API.Indexes.CreateIndexRequest.html | 8 +- ...odels.API.Indexes.CreateIndexResponse.html | 4 +- ...ls.API.Indexes.DeleteDocumentResponse.html | 4 +- ...odels.API.Indexes.DeleteIndexResponse.html | 4 +- ...dexes.DeleteMultipleDocumentsResponse.html | 4 +- ...els.API.Indexes.GetAllIndexesResponse.html | 4 +- ...x.Models.API.Indexes.GetIndexResponse.html | 4 +- ....Tx.Models.API.Indexes.GetJobResponse.html | 4 +- ....Models.API.Indexes.GetResumeResponse.html | 4 +- ...dels.API.Indexes.IndexDocumentRequest.html | 8 +- ...els.API.Indexes.IndexDocumentResponse.html | 4 +- ...el.Tx.Models.API.Indexes.IndexJobInfo.html | 8 +- ...Tx.Models.API.Indexes.IndexJobRequest.html | 8 +- ...API.Indexes.IndexMultipleDocumentInfo.html | 12 +- ...ndexes.IndexMultipleDocumentsResponse.html | 4 +- ...s.IndexMultipleDocumentsResponseValue.html | 8 +- ....API.Indexes.IndexMultipleJobsRequest.html | 8 +- ...I.Indexes.IndexMultipleResumesRequest.html | 8 +- ...Tx.Models.API.Indexes.IndexResumeInfo.html | 8 +- ...Models.API.Indexes.IndexResumeRequest.html | 8 +- ...s.API.Indexes.IndexSingleDocumentInfo.html | 8 +- ....Indexes.UpdateUserDefinedTagsRequest.html | 12 +- ...Indexes.UpdateUserDefinedTagsResponse.html | 4 +- ...els.API.Indexes.UserDefinedTagsMethod.html | 4 +- ...API.JobDescription.GenerateJobRequest.html | 28 +- ...PI.JobDescription.GenerateJobResponse.html | 4 +- ...bDescription.GenerateJobResponseValue.html | 8 +- ...s.API.JobDescription.GenerateJobSkill.html | 12 +- ....Tx.Models.API.JobDescription.JobTone.html | 4 +- ...dels.API.JobDescription.SkillPriority.html | 4 +- ...tion.SuggestSkillsFromJobTitleRequest.html | 16 +- ...ion.SuggestSkillsFromJobTitleResponse.html | 4 +- ...uggestSkillsFromJobTitleResponseValue.html | 8 +- ...PI.Matching.BaseScoredResponseValue-1.html | 12 +- ...tching.BaseSearchMatchResponseValue-1.html | 16 +- ...x.Models.API.Matching.CategoryWeights.html | 68 +- ...x.Models.API.Matching.MatchJobRequest.html | 8 +- ....Tx.Models.API.Matching.MatchResponse.html | 4 +- ...odels.API.Matching.MatchResponseValue.html | 4 +- ...odels.API.Matching.MatchResumeRequest.html | 8 +- ...els.API.Matching.Request.DistanceUnit.html | 4 +- ...s.API.Matching.Request.FilterCriteria.html | 140 ++-- ...s.API.Matching.Request.FilterLocation.html | 24 +- ...els.API.Matching.Request.IntegerRange.html | 12 +- ...s.API.Matching.Request.JobTitleFilter.html | 12 +- ...API.Matching.Request.LocationCriteria.html | 24 +- ...hing.Request.MatchByDocumentIdOptions.html | 4 +- ...els.API.Matching.Request.MatchRequest.html | 12 +- ...I.Matching.Request.PaginationSettings.html | 12 +- ...PI.Matching.Request.RevisionDateRange.html | 12 +- ...tching.Request.SearchMatchRequestBase.html | 16 +- ....Matching.Request.SearchMatchSettings.html | 16 +- ...Matching.Request.SkillExperienceLevel.html | 4 +- ...dels.API.Matching.Request.SkillFilter.html | 16 +- ...I.Matching.Response.CategoryScoreData.html | 12 +- ...tching.Response.CategoryScoreEvidence.html | 12 +- ....Matching.Response.DocumentTaxonomies.html | 12 +- ....Matching.Response.EducationScoreData.html | 16 +- ...I.Matching.Response.EnrichedScoreData.html | 36 +- ...s.API.Matching.Response.FoundJobTitle.html | 16 +- ...dels.API.Matching.Response.FoundSkill.html | 12 +- ...tching.Response.IBimetricScoredResult.html | 24 +- ....Matching.Response.JobTitlesScoreData.html | 12 +- ...ing.Response.ManagementLevelScoreData.html | 16 +- ...els.API.Matching.Response.MatchResult.html | 24 +- ...ls.API.Matching.Response.SearchResult.html | 12 +- ...hing.Response.SimpleCategoryScoreData.html | 12 +- ...API.Matching.Response.SkillsScoreData.html | 12 +- ...Matching.Response.TaxonomiesScoreData.html | 12 +- ...PI.Matching.Response.TaxonomyEvidence.html | 12 +- ...ls.API.Matching.Response.TaxonomyInfo.html | 16 +- ....Tx.Models.API.Matching.SearchRequest.html | 8 +- ...Tx.Models.API.Matching.SearchResponse.html | 4 +- ...dels.API.Matching.SearchResponseValue.html | 4 +- ...Models.API.Matching.UI.AIMatchDetails.html | 8 +- ...Models.API.Matching.UI.BasicUIOptions.html | 16 +- ....API.Matching.UI.BimetricScoreDetails.html | 8 +- ...I.Matching.UI.BimetricScoreJobDetails.html | 8 +- ...atching.UI.BimetricScoreResumeDetails.html | 8 +- ...atching.UI.GenerateUIDetailsRequest-1.html | 12 +- ...s.API.Matching.UI.GenerateUIRequest-1.html | 8 +- ...ls.API.Matching.UI.GenerateUIResponse.html | 12 +- ....Matching.UI.Hooks.BulkHookPostBody-1.html | 8 +- ....API.Matching.UI.Hooks.ClientSideHook.html | 12 +- ....Matching.UI.Hooks.DocumentIdentifier.html | 12 +- ....API.Matching.UI.Hooks.HookPostBody-1.html | 12 +- ...Models.API.Matching.UI.Hooks.JsAction.html | 16 +- ...ching.UI.Hooks.OnUpdateHookPostBody-1.html | 12 +- ...s.API.Matching.UI.Hooks.OnUpdateHooks.html | 12 +- ...ching.UI.Hooks.OnUpdateServerSideHook.html | 12 +- ....API.Matching.UI.Hooks.ServerSideHook.html | 12 +- ...ls.API.Matching.UI.Hooks.SourcingHook.html | 8 +- ...ching.UI.Hooks.SourcingHookPostBody-1.html | 20 +- ...odels.API.Matching.UI.Hooks.UrlAction.html | 12 +- ....API.Matching.UI.Hooks.UserActionHook.html | 12 +- ...ing.UI.Hooks.UserActionHookCollection.html | 20 +- ...ing.UI.Hooks.UserActionHookPostBody-1.html | 12 +- ...x.Models.API.Matching.UI.MatchDetails.html | 16 +- ...odels.API.Matching.UI.MatchUISettings.html | 16 +- ...x.Models.API.Matching.UI.StyleOptions.html | 24 +- ...g.UI.UIBimetricScoreJobDetailsRequest.html | 4 +- ...Matching.UI.UIBimetricScoreJobRequest.html | 4 +- ...I.UIBimetricScoreResumeDetailsRequest.html | 4 +- ...ching.UI.UIBimetricScoreResumeRequest.html | 4 +- ...atching.UI.UIMatchByDocumentIdOptions.html | 4 +- ...API.Matching.UI.UIMatchDetailsRequest.html | 4 +- ...els.API.Matching.UI.UIMatchJobRequest.html | 4 +- ....API.Matching.UI.UIMatchResumeRequest.html | 4 +- ...l.Tx.Models.API.Matching.UI.UIOptions.html | 52 +- ...odels.API.Matching.UI.UISearchRequest.html | 4 +- ....API.Matching.UI.UserDefinedTagOption.html | 12 +- ...I.Matching.UI.UserDefinedTagsPicklist.html | 12 +- ...ls.API.Parsing.BaseParseResponseValue.html | 24 +- ....Models.API.Parsing.BasicParseOptions.html | 24 +- ...Models.API.Parsing.ConversionMetadata.html | 24 +- ...nel.Tx.Models.API.Parsing.Conversions.html | 24 +- ...nel.Tx.Models.API.Parsing.FlexRequest.html | 20 +- ...odels.API.Parsing.FlexRequestDataType.html | 4 +- ...el.Tx.Models.API.Parsing.FlexResponse.html | 16 +- ...x.Models.API.Parsing.FlexResponseItem.html | 16 +- ...x.Models.API.Parsing.ParseJobResponse.html | 4 +- ...els.API.Parsing.ParseJobResponseValue.html | 8 +- ...el.Tx.Models.API.Parsing.ParseOptions.html | 36 +- ...el.Tx.Models.API.Parsing.ParseRequest.html | 16 +- ...odels.API.Parsing.ParseResumeResponse.html | 4 +- ....API.Parsing.ParseResumeResponseValue.html | 20 +- ...Tx.Models.API.Parsing.ParsingMetadata.html | 20 +- ...odels.API.Parsing.ProfessionsSettings.html | 12 +- ....Tx.Models.API.Parsing.SkillsSettings.html | 12 +- ...Models.DataEnrichment.BasicProfession.html | 12 +- ....Models.DataEnrichment.ExtractedSkill.html | 8 +- ...Models.DataEnrichment.LangDescription.html | 12 +- ...s.DataEnrichment.NormalizedProfession.html | 8 +- ...Models.DataEnrichment.NormalizedSkill.html | 8 +- ...l.Tx.Models.DataEnrichment.Profession.html | 36 +- ...Enrichment.ProfessionClassification-1.html | 12 +- ...chment.ProfessionMultipleDescriptions.html | 12 +- ...kernel.Tx.Models.DataEnrichment.Skill.html | 20 +- ...els.DataEnrichment.SkillAndConfidence.html | 8 +- ...l.Tx.Models.DataEnrichment.SkillMatch.html | 20 +- ...aEnrichment.SkillMultipleDescriptions.html | 12 +- ...nel.Tx.Models.DataEnrichment.Taxonomy.html | 8 +- ...odels.DataEnrichment.TaxonomyMetadata.html | 12 +- ...t.VersionedProfessionClassification-1.html | 8 +- .../sdk/Textkernel.Tx.Models.Document.html | 20 +- .../Textkernel.Tx.Models.GeoCoordinates.html | 12 +- ...tkernel.Tx.Models.GeocodedCoordinates.html | 8 +- ...rnel.Tx.Models.Job.ApplicationDetails.html | 36 +- ...extkernel.Tx.Models.Job.EmployerNames.html | 12 +- .../Textkernel.Tx.Models.Job.JobDegree.html | 20 +- .../Textkernel.Tx.Models.Job.JobMetadata.html | 4 +- .../Textkernel.Tx.Models.Job.JobTitles.html | 16 +- .../Textkernel.Tx.Models.Job.ParsedJob.html | 168 ++--- .../Textkernel.Tx.Models.Job.PayRange.html | 28 +- ....Models.Job.Skills.JobNormalizedSkill.html | 8 +- ...rnel.Tx.Models.Job.Skills.JobRawSkill.html | 8 +- ...tkernel.Tx.Models.Job.Skills.JobSkill.html | 8 +- ...x.Models.Job.Skills.JobSkillVariation.html | 8 +- ...l.Tx.Models.Job.Skills.JobSubTaxonomy.html | 8 +- ...rnel.Tx.Models.Job.Skills.JobTaxonomy.html | 4 +- ....Tx.Models.Job.Skills.JobTaxonomyRoot.html | 12 +- ...rnel.Tx.Models.Job.Skills.JobV2Skills.html | 16 +- .../sdk/Textkernel.Tx.Models.Location.html | 28 +- .../Textkernel.Tx.Models.Matching.Index.html | 16 +- ...xtkernel.Tx.Models.Matching.IndexType.html | 4 +- .../Textkernel.Tx.Models.ParsedDocument.html | 16 +- ...rnel.Tx.Models.ParsedDocumentMetadata.html | 24 +- ...xtkernel.Tx.Models.Resume.Association.html | 16 +- ...l.Tx.Models.Resume.CandidateReference.html | 36 +- ...kernel.Tx.Models.Resume.Certification.html | 16 +- ...Resume.ContactInfo.ContactInformation.html | 24 +- ....Models.Resume.ContactInfo.PersonName.html | 32 +- ...x.Models.Resume.ContactInfo.Telephone.html | 16 +- ....Models.Resume.ContactInfo.WebAddress.html | 12 +- ...els.Resume.ContactInfo.WebAddressType.html | 96 +-- ...nel.Tx.Models.Resume.Education.Degree.html | 20 +- ...els.Resume.Education.EducationDetails.html | 56 +- ...els.Resume.Education.EducationHistory.html | 12 +- ...ls.Resume.Education.GradePointAverage.html | 24 +- ...els.Resume.Education.NormalizedDegree.html | 12 +- ...el.Tx.Models.Resume.Employment.Bullet.html | 12 +- ...Employment.CompanyNameWithProbability.html | 8 +- ....Tx.Models.Resume.Employment.Employer.html | 16 +- ...s.Resume.Employment.EmploymentHistory.html | 12 +- ...s.Resume.Employment.ExperienceSummary.html | 44 +- ....Tx.Models.Resume.Employment.JobTitle.html | 20 +- ...mployment.ParsingNormalizedProfession.html | 28 +- ....Tx.Models.Resume.Employment.Position.html | 76 +- ...dNormalizedProfessionClassification-1.html | 8 +- ...l.Tx.Models.Resume.LanguageCompetency.html | 16 +- ...ernel.Tx.Models.Resume.LicenseDetails.html | 12 +- ...x.Models.Resume.Metadata.ReservedData.html | 24 +- ...Models.Resume.Metadata.ResumeMetadata.html | 16 +- ...sume.Metadata.ResumeQualityAssessment.html | 12 +- ....Resume.Metadata.ResumeQualityFinding.html | 16 +- ...ls.Resume.Metadata.ResumeQualityLevel.html | 28 +- ....Models.Resume.Metadata.ResumeSection.html | 20 +- ...odels.Resume.Military.MilitaryDetails.html | 24 +- ...odels.Resume.Military.MilitaryService.html | 16 +- ...ls.Resume.Military.SecurityCredential.html | 12 +- ...nel.Tx.Models.Resume.NationalIdentity.html | 12 +- ...nel.Tx.Models.Resume.NormalizedString.html | 12 +- ...tkernel.Tx.Models.Resume.ParsedResume.html | 120 +-- ...l.Tx.Models.Resume.PersonalAttributes.html | 88 +-- .../Textkernel.Tx.Models.Resume.Salary.html | 12 +- ...el.Tx.Models.Resume.SectionIdentifier.html | 12 +- ...s.Resume.Skills.ResumeNormalizedSkill.html | 16 +- ...x.Models.Resume.Skills.ResumeRawSkill.html | 16 +- ...l.Tx.Models.Resume.Skills.ResumeSkill.html | 16 +- ...ls.Resume.Skills.ResumeSkillVariation.html | 16 +- ...odels.Resume.Skills.ResumeSubTaxonomy.html | 8 +- ...x.Models.Resume.Skills.ResumeTaxonomy.html | 4 +- ...dels.Resume.Skills.ResumeTaxonomyRoot.html | 12 +- ...x.Models.Resume.Skills.ResumeV2Skills.html | 16 +- ...rnel.Tx.Models.Resume.TrainingDetails.html | 24 +- ...rnel.Tx.Models.Resume.TrainingHistory.html | 12 +- ...nel.Tx.Models.Skills.FoundSubTaxonomy.html | 12 +- ...rnel.Tx.Models.Skills.FoundTaxonomy-1.html | 20 +- ...xtkernel.Tx.Models.Skills.ITaxonomy-1.html | 16 +- ...rnel.Tx.Models.Skills.NormalizedSkill.html | 20 +- ...rnel.Tx.Models.Skills.ProfessionClass.html | 20 +- ...rnel.Tx.Models.Skills.ProfessionGroup.html | 20 +- .../Textkernel.Tx.Models.Skills.RawSkill.html | 8 +- .../Textkernel.Tx.Models.Skills.Skill.html | 16 +- ...xtkernel.Tx.Models.Skills.SubTaxonomy.html | 12 +- .../Textkernel.Tx.Models.Skills.Taxonomy.html | 20 +- .../sdk/Textkernel.Tx.Models.TxDate.html | 24 +- .../Textkernel.Tx.Models.TxPrimitive-1.html | 8 +- docs/site-/sdk/Textkernel.Tx.TxClient.html | 344 ++++----- .../sdk/Textkernel.Tx.TxClientSettings.html | 20 +- docs/site-/sdk/Textkernel.Tx.TxException.html | 24 +- .../Textkernel.Tx.TxGeocodeJobException.html | 4 +- ...extkernel.Tx.TxGeocodeResumeException.html | 4 +- .../Textkernel.Tx.TxIndexJobException.html | 4 +- .../Textkernel.Tx.TxIndexResumeException.html | 4 +- ...TxProfessionNormalizationJobException.html | 4 +- ...rofessionNormalizationResumeException.html | 4 +- .../Textkernel.Tx.TxUsableJobException.html | 8 +- ...Textkernel.Tx.TxUsableResumeException.html | 8 +- docs/site-/sdk/index.html | 2 +- 348 files changed, 3169 insertions(+), 3169 deletions(-) diff --git a/docs/site-/index.html b/docs/site-/index.html index a668079b..4dbe14e7 100644 --- a/docs/site-/index.html +++ b/docs/site-/index.html @@ -82,7 +82,7 @@

tx-dotnet

diff --git a/docs/site-/manifest.json b/docs/site-/manifest.json index c936ead2..d2066a68 100644 --- a/docs/site-/manifest.json +++ b/docs/site-/manifest.json @@ -20,7 +20,7 @@ "output": { ".html": { "relative_path": "index.html", - "hash": "mb2uFc7qXowHYKVCnKLZhKsyq8lMAeRRWOHa7LIbAkg=" + "hash": "QmMDjJbpqIpIXRhURs6fxi6lXpdZGT8txwjzOdziY0w=" } }, "is_incremental": false, @@ -32,7 +32,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchErrorResult.html", - "hash": "qAapptoOSVBUxISdqyLmF1S1DJwV1ClAVCZCnpApWgc=" + "hash": "nE2sAsxdL42HOg8IJAs7HFAIvuMt4BqR8UcPwdF3LJg=" } }, "is_incremental": false, @@ -44,7 +44,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchParser.html", - "hash": "Na6UMfNbsB5bxikZZUCZrt8jc7JsnhApivJisiN7arY=" + "hash": "IH9+JrSxArkqIF5i8zgJffGKkpyYPX3Cm1EEbcXA8dc=" } }, "is_incremental": false, @@ -56,7 +56,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchParsingRules.html", - "hash": "cwrBanqZt3sGIPvMpCChkkU9FARnw/U0pwBoxf3o9Pg=" + "hash": "q3r9A02K/0dkmV3nTK10FnqVgACz2jv0f4cCngPfwbk=" } }, "is_incremental": false, @@ -68,7 +68,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchResult.html", - "hash": "Gy5RX6107J8S11jkLc93TGq+rV4vbm8AAV3QY3KVVlQ=" + "hash": "LAejpXpy+hDq7DIEIwyoSneF19BlUwhZT/juz1l00l8=" } }, "is_incremental": false, @@ -80,7 +80,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html", - "hash": "aebyoosTFhg8bd5xjCp8pa4GSs6+S1iulaGOf18O9RA=" + "hash": "fbU+EpMEKPi5k29VNuzMW7TDAhBtwwzwnGwODTq/s6o=" } }, "is_incremental": false, @@ -92,7 +92,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html", - "hash": "Xze9ocvrjs1cfyGO8Kx6/7DnGK5BucpbypMs+vAydPk=" + "hash": "sZDHmNSz1riomz58ICQWc7KXi+CDRvg9q7FQI/Butuk=" } }, "is_incremental": false, @@ -104,7 +104,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html", - "hash": "WspYC7kwZOa3bddjLWJ4uBT+cMMlWxsVBbpEJ/+Glqw=" + "hash": "ibomfDB01ctlLFayQiXuF1njWMZH4i/eatQn+xrU1IA=" } }, "is_incremental": false, @@ -116,7 +116,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html", - "hash": "ZlmeDdkZcZfLS5g2pd1XAkl+FQmfEv+hKuEqOZaoAzk=" + "hash": "JOB8SL9NLmuy9ukqlV98jsUEuRbUdI2bUEUJExTS3hI=" } }, "is_incremental": false, @@ -128,7 +128,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html", - "hash": "NEGA1o3Tp4YZgypcdyuTxG9ssKxXDasstBlGx1d5EpM=" + "hash": "KaLcNi88+7H6MTt2z1P2bdQidL2dzz1t2QUrJfSj1Sw=" } }, "is_incremental": false, @@ -152,7 +152,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.DataCenter.html", - "hash": "xy3YsNTYTZpK8SLTSx5iwNBh1mbHfd/4WfcfUte/EKE=" + "hash": "8sHANdW3x7/AhoMOa63oTq/iblHgHnHgO0OprB5nhFo=" } }, "is_incremental": false, @@ -164,7 +164,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.ITxClient.html", - "hash": "JHnzcynUCi5Ok9InDQd8mAsbVQCGxTtdd3eZZtVJwAo=" + "hash": "4EEXZBFOAqPR0KELPKm9y9rY5T7VnoqlEmPB0ltQY+Y=" } }, "is_incremental": false, @@ -176,7 +176,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html", - "hash": "JKE++ZSFjLqPvJxwWXee+FeYySrH9db4WOSpwP8J8QM=" + "hash": "4xwCCibonWcAgWP6xPHeXx0ZTnLjFjVvH8vvRF/YuzA=" } }, "is_incremental": false, @@ -200,7 +200,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.AccountInfo.html", - "hash": "qP3vCKMHP0kr96H0DFYZsxM+YMRmVVPxg/u5Rm1SOIs=" + "hash": "bpq81gzTC/zzGG3cZSVVD09YXa8B6fgkHrXZsdLHwpc=" } }, "is_incremental": false, @@ -212,7 +212,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponse-1.html", - "hash": "NMqDkXRpNObU09V+OtkqHaW4WByyXpJbGPqFrLxxAKA=" + "hash": "oU/dBalVsEqc6OXROUx1FjlIY5f0fJtuVsTg0+nrx60=" } }, "is_incremental": false, @@ -224,7 +224,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html", - "hash": "90lIfAWA47zb//deyarKVfEi+3QFyMYlYg6jL38/HFE=" + "hash": "V/HPohaOXmSc0EEpuGk3hdNe4sjyy+sr6+bqS9kDkvI=" } }, "is_incremental": false, @@ -236,7 +236,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html", - "hash": "zfOF6vP+KwtT36NwRLbJZZpGVNS+Vl0Gfvx1xBwqP48=" + "hash": "sw7dg4y7qX9FS2WKo6c2XKxAeWoqX0YW9E9lh7kxThE=" } }, "is_incremental": false, @@ -248,7 +248,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html", - "hash": "Q0/ljI6VjGGjzZS+NPB3gjjE1QTHYheU9DIrThTj5OA=" + "hash": "I0vm+qqJ4gU+PxWI7i8i6WvZVX6dhEOXk7PlROKRI/U=" } }, "is_incremental": false, @@ -260,7 +260,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html", - "hash": "Nx7oTlnrJcVRXkx7RYAnrXJmd1DFmnAer69DPwgGFIU=" + "hash": "+2tyqUgru1h5qDuvd/DR6XDYlknNmDYDI9Ik+Ve1E0I=" } }, "is_incremental": false, @@ -272,7 +272,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html", - "hash": "Znl8kksJ36OGLhLZLUFXc0wqLK+qajjiWc/vqwJXeZI=" + "hash": "a65YoVtCd4StkJT+V+qybyQXwAtwchtCwZ6dDMSjmP8=" } }, "is_incremental": false, @@ -284,7 +284,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html", - "hash": "PgySGPQzW0U9n7fVm1h5iixNuhihKpKAeCq/CcoKQok=" + "hash": "x55AnA7jZHQr0HJ4z7r+V9dImpcQr9Y2ibKI5Jn+120=" } }, "is_incremental": false, @@ -296,7 +296,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html", - "hash": "w/Myz1Jqm1J7WLS6lt5fJ2VZzk4ZgvOqr8P+MttkeOs=" + "hash": "dSVpbbEABNXcLbmAeHLtmjKwDa5hYqPOI5WAgH6WkEg=" } }, "is_incremental": false, @@ -308,7 +308,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html", - "hash": "OHnui0614ECI0FqdoxJcFQ8IKiDVUZkEB1Ndi0cR2l0=" + "hash": "yzyCP9ECHW6UTQlnlYOtQTzWqC5r/LxMDB+8kQt/jT0=" } }, "is_incremental": false, @@ -320,7 +320,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html", - "hash": "T1qT9G0M91X2hjxY+Z5aL8+eiCJzJmrvAleo7/eE1/8=" + "hash": "5OyWAYi6rZ5/qLIAJa/Si4+chfyBoB6mUoRWmvxPQB4=" } }, "is_incremental": false, @@ -332,7 +332,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html", - "hash": "NWwMBPHy92koPTnk6XQp8LQKhMRMkx9fhqjVSN0HBPw=" + "hash": "QjwujYN0ecz+9qCHwG9fNHJCAGxzm4klHLM4/WrHHQI=" } }, "is_incremental": false, @@ -344,7 +344,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html", - "hash": "hduqld6AgevWhpqej/HEoy/W6FSV3VtT6329+ACSNRk=" + "hash": "XmzSBRAiTRx7H9/QlYbfGbMrKxDfo/BPJ0ss4vr3EGg=" } }, "is_incremental": false, @@ -368,7 +368,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html", - "hash": "Y15FuzD0KgZlS4tBU8h6XqFdg8wOXFZUXk4bD9NNkLs=" + "hash": "Y3rHaMKeCC+gefwzYfu4eGZtzvcPSXccckhrRXpeI+k=" } }, "is_incremental": false, @@ -380,7 +380,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html", - "hash": "jotCGtyEouvXWDIqSg2TecnqPx+UqurN5/C4ajT86To=" + "hash": "fOHI7LAGc7h3c7zIcusMQvQxH/tvX7uznknexhGw+v4=" } }, "is_incremental": false, @@ -392,7 +392,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html", - "hash": "VrtMAhS1FsRS4gGgiK4TKvU65TQKKx/07h64FOd42Jk=" + "hash": "TJbVhJcx4qJ34TLnsTViE2+m5AIbXxy2xXvSAI6vQfc=" } }, "is_incremental": false, @@ -404,7 +404,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html", - "hash": "vGv4rxZOjX7Ed+y9yTYt5Ka05b22vVxM6ARJrbkwchk=" + "hash": "fj8E4EOK901zaJkQWM1TIp8iqCpV8vprShrqopgtHrU=" } }, "is_incremental": false, @@ -416,7 +416,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html", - "hash": "EqPcsWQWJGQcqzYcEW9qJqnIrNUEkmr00EFsmkqEK+8=" + "hash": "uvd+x/Wz2fLono6/K+bmxJA4PaeSbo7XgQPPu/khgG0=" } }, "is_incremental": false, @@ -428,7 +428,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html", - "hash": "gak9CWjDZauRSeGBeIPQB9ZbYb6wjuxLBVKjG+hZpNY=" + "hash": "u7wN9Var4jQWo7cll6FupkerBR22UlsXDCANfuRAv+s=" } }, "is_incremental": false, @@ -440,7 +440,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html", - "hash": "wvHCjxbOw5izcSrISYmiCEnMyfuW+cvxNfuxaiMdG/w=" + "hash": "DLB6+HQggz57kPnlTqc/dMvclnBpJRJCj57CpO35HPY=" } }, "is_incremental": false, @@ -452,7 +452,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html", - "hash": "0AOMC9KCBHGjYFJ7RqF1JPxmrs8RwHwDELbxeQ58sDg=" + "hash": "KAmvt+fbr1R2Htc2hbt0EGl5Xjrgc1viOt8EtQtqCuM=" } }, "is_incremental": false, @@ -476,7 +476,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html", - "hash": "iU2gQjJWMJoiE7vkoNeUrkCREBNPm/IlEolZde6KLyI=" + "hash": "iXXBiHQckbFgYruoZVcmCs1jpLY28dNI8Yt0txc867k=" } }, "is_incremental": false, @@ -488,7 +488,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html", - "hash": "R0QowHknFbIgCfax+ttjpX4j3RGXou148PfFdr/uYs4=" + "hash": "QTbuycBEJ7F7lfXjSdAX3gUemAuF/ZxLOGkoeTgM1eA=" } }, "is_incremental": false, @@ -500,7 +500,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html", - "hash": "qhdkGJEoeY5krwr/EMSCaG41J4X+c4SOWoGLcZPyHIY=" + "hash": "2Zh7uNU7/sLC3d5LM2j7xw4rlDoS5fM2ic9ubi1248Q=" } }, "is_incremental": false, @@ -512,7 +512,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html", - "hash": "v+tgRHrudyFrmXE6qFvXnirdZUWBpZq69cpjF9ELYYQ=" + "hash": "tIF0q3klz8gqz5Sq87GEzU5wHAts4e2FG0F0n4kNedU=" } }, "is_incremental": false, @@ -524,7 +524,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html", - "hash": "SUMjNfW3dHksx0hhZyWK77vO7gVypijpyg9QnLdUeIU=" + "hash": "ZtUSBnvQAJ86W8uWfZRSc/HcuD6Z1SbgIWt9273MpNg=" } }, "is_incremental": false, @@ -536,7 +536,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html", - "hash": "WyjJmao1LdM+SJT7YdHBnGt2T03l9o7BjAfWUVBtGWo=" + "hash": "ir73RDekjBQCnr7gJPrJVUSsHb/gkrzUN2eE4lr5lWE=" } }, "is_incremental": false, @@ -548,7 +548,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html", - "hash": "jTVSmCdiHATCrnAP+HbrWew5fT6E6Gd4Ru3jhegz2/o=" + "hash": "jWkE3KUh9O26JHPkx7ZajXo/brAqjmtayQ/Ng7y5liA=" } }, "is_incremental": false, @@ -560,7 +560,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html", - "hash": "NxApvocSgTaOza0P1oq6Xi9LLKourt98B2xfQnJumdQ=" + "hash": "nqdOatbb41xHHC8b7S0aHA6ipyYQQBO6Nmbsh9HzbHE=" } }, "is_incremental": false, @@ -572,7 +572,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html", - "hash": "kGDsB3BU86hy9LzjG257l2oBgyUNV6eTz58QeX2xGF0=" + "hash": "ABU1Lhg1WAn6phO5mvk8OeKWFCplrbn9tHP0KCO8WrI=" } }, "is_incremental": false, @@ -584,7 +584,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html", - "hash": "1jKXDBQj8ercBvngXAsKeRItt8X2Bpd8/fIptSTdjWo=" + "hash": "D3hs/7W8xQRpo4X97FZMz1ljs9k28fyh2K3WH+YLudQ=" } }, "is_incremental": false, @@ -596,7 +596,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html", - "hash": "8gtk5usN6PXyfGk14XFMQ2TkudE2P5fvwV7t3gEyJTU=" + "hash": "kIiRtxxjlhrxGy7SwpXQEYVQ20zsx+qCa1i78XglZPU=" } }, "is_incremental": false, @@ -608,7 +608,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html", - "hash": "OqvLOR4VNHpAGlPssLICf8WM8FHShepiItr2eQ5tWmk=" + "hash": "lFtqugDLnRN3rBXvQF22vbqnPqyloCVYKIcFV/6PzK0=" } }, "is_incremental": false, @@ -620,7 +620,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html", - "hash": "UqBDvdQH0cw96pbbbNlcycVaBe46ND8hUi/r8ID4bHc=" + "hash": "EJ8Lj7V9kXvxtzPc6VNxPEmAYB/wN8472jEU80xlXxA=" } }, "is_incremental": false, @@ -632,7 +632,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html", - "hash": "drQc06gURbuCp4fhGbCR8/+f4KzSwpnyEBLiIj0sqBw=" + "hash": "Qh25t8wzOXHh9VG+RlJNjexCiZyXQa1NN5p0RcU1pSM=" } }, "is_incremental": false, @@ -656,7 +656,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html", - "hash": "lV5ouFH+fzVs9gcOco8o3NBkmnBlqax9Dp+IhYfiVYA=" + "hash": "FN3ds1Hh9jaqPtPn6W/ip11nbfW4Qc5+IdMdSKFGhhk=" } }, "is_incremental": false, @@ -668,7 +668,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html", - "hash": "TU6TknvPqEIjJwzRLqDzCWuceiwA6eWYahfINgE5wA0=" + "hash": "uD//yHZ0dSUjCAjVTzFJwyHnIUEZL2cR/TabsjZ4MyI=" } }, "is_incremental": false, @@ -680,7 +680,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html", - "hash": "BbfFJx7ttkJAmjMVYGYgK+x5q9cOT8FcVootWWtrkWY=" + "hash": "LN3yqtP9DTJQ9vwnMOSZPLxjFOlhSM+oi4aqrX9uPwI=" } }, "is_incremental": false, @@ -692,7 +692,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html", - "hash": "APUIqN+4FR6Jh0bjK2adpGN4gWy94NFSAwtRqWScmHA=" + "hash": "YnfSExqV79Nk2Br0FcbEm/Cv+96Dh9sXhW8nxlhlwsg=" } }, "is_incremental": false, @@ -716,7 +716,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html", - "hash": "xzQ3uQxN1gvlEwvjw5tfPHydQwZ+0eKowuZRtrndhZc=" + "hash": "jKNoyOLBWzCfCkYFjdwAq1NY8AxNelZWi1mkRINnS9A=" } }, "is_incremental": false, @@ -728,7 +728,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html", - "hash": "qFC+Aj1F07YtoAHM/E94Y9YrLmCVWd/ek6oaWedBK7M=" + "hash": "CYxaaYcipM4wDrScnaPIjCW2AENhk/OxF9M3PewPZxw=" } }, "is_incremental": false, @@ -740,7 +740,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html", - "hash": "a0OEaRZe8lhGPiKXsmvZpUH+xuofLFIXVgraZdNH7D4=" + "hash": "xwMAVjRbazwGabNrdI51azof3UfJqOtC7yxcJZHT4Qc=" } }, "is_incremental": false, @@ -752,7 +752,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html", - "hash": "+jz3ccG5t3rUcQJFCgKFquEDo4Xouc9UBURcdV33CTo=" + "hash": "qCqeaT7Y3cap4WuZKYFR6/EY/xJ0RZM3EmporBI3pGI=" } }, "is_incremental": false, @@ -764,7 +764,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html", - "hash": "QdPtoHW0c90TawcftEYCiokpBb5ezwneJ811nad+THA=" + "hash": "lzijyYxDHUmCGIqYvoiRv5ruFrXrF8uEZ+mR7gin810=" } }, "is_incremental": false, @@ -776,7 +776,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html", - "hash": "JAfkCVcyZiCcxCvnVy2WQQSYAQSzKKF3k1vhglaiAgg=" + "hash": "GLUfDahJMzxq35TNK9N1ob4ORQ8M3MEbwgdJdZiIEpM=" } }, "is_incremental": false, @@ -788,7 +788,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html", - "hash": "aLUhbjUfaOhafs6/0RufHytHU8oAeVPfg+TN1hSnjvg=" + "hash": "HcdYa4lAxwWDttVCnj2Cy7X/3McmWuLQSLqewGuXAKw=" } }, "is_incremental": false, @@ -800,7 +800,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html", - "hash": "ocfI7CQgEtIGIsAFtE7RwB6EM0lJsqxKOSBrTytpfF4=" + "hash": "wEu3nKXSg7C9E4ye9E/2Be1JinPR2+nV/WTZhCjeJcc=" } }, "is_incremental": false, @@ -836,7 +836,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html", - "hash": "EW9jNDred4ZR3prWkA8EremxVAThXElvpJCHzR1F24s=" + "hash": "vdusPNI2qj/yq8riccqkzaGYs3dxvUaMq1AIrb3YQCk=" } }, "is_incremental": false, @@ -848,7 +848,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html", - "hash": "bqo1QZXlh6toa9ROb2+tUaTgCPVyP3Aa7sxXi8flp5o=" + "hash": "/Yylj6si4nEyiKrmd8foy7kAlUnKeAxEergBl45oGjs=" } }, "is_incremental": false, @@ -860,7 +860,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html", - "hash": "sHYBVPxZDmNEBle8QFnOFwnA/hxzrVJ5UrHbT1Uw+Fg=" + "hash": "XpkU/UE5XRgDGJmqM9bA+j1OsliV4ZlFPxPZEODGdO0=" } }, "is_incremental": false, @@ -872,7 +872,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html", - "hash": "XXseApEdK8MghRMI1s4ngbV9y/M9+Oy6vahs93CSF18=" + "hash": "1z/p8lBd475NzC2aOp/BNJfcSIfbluQe3iSrbKiM/uY=" } }, "is_incremental": false, @@ -896,7 +896,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html", - "hash": "jGFQbghU97q8u/HfmjYVRvGMPPOGhP9Ev7ez4AtGNac=" + "hash": "ME+HkrG/LMbhDYsAQmkxb5Waq7uWJsEf/gG8/CpTBpE=" } }, "is_incremental": false, @@ -908,7 +908,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html", - "hash": "YYJgvm3wYkf2sfbsp1oD1Tk8Uw1chtDeg6grXFb+WuY=" + "hash": "8HVeVOw82tBMcYNNThksJfgw9fQwv0k9JTznxzSCzSo=" } }, "is_incremental": false, @@ -920,7 +920,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html", - "hash": "CQlbu9Z3gmdTlHjtOI0uAfHLGuxql9ud0iF80UkRa30=" + "hash": "Lf6LS7Ign+EIPIr/yANvpW5QdanI+oJzFqIGUKym9v0=" } }, "is_incremental": false, @@ -932,7 +932,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html", - "hash": "3qZP8ukYU/MeipfisSM6uJXctySHwvBcaF+KozKMQ68=" + "hash": "C9GQ9vmZG+N+ie4beDBD4noZdtiGz7wVXgUb52+/GG8=" } }, "is_incremental": false, @@ -944,7 +944,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html", - "hash": "RPQQ1CVmRWnwQweCn2OSMZFJ2/21dIyaEd2W3RQ11ww=" + "hash": "PQNmCsdpBCFSvQ6KzmzAyB7ypVMF/yYeMMSWZK12PMk=" } }, "is_incremental": false, @@ -956,7 +956,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html", - "hash": "CQY/kxZnrf+m4++hMSEsMqtkDK99IhVp9ZgCX9/H8Rg=" + "hash": "chMo6eaUzqnsGUh/D5Qy4wCDaseIQa4fNjsXi9711cE=" } }, "is_incremental": false, @@ -968,7 +968,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html", - "hash": "70VyA8+hlIQQ4JwRBwkjdrRVYPDbvMoJ87YGdUalpbU=" + "hash": "0cLRbkTd/YE3y11u8Ri6jc6PF0OqNpxkRkLVPuxybdM=" } }, "is_incremental": false, @@ -980,7 +980,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html", - "hash": "CDD8KLFkrW4b/a264f9nHTDp/bgfzuZl5mPK+VZsrsY=" + "hash": "JRw9J6BdwLaheONkeoXE0LJM8bUqxagMiDjGVQ7TzBM=" } }, "is_incremental": false, @@ -992,7 +992,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html", - "hash": "Q8B24K9yIxoWkUPaipT2AkmzWxghKa5ROJ59hVry/ao=" + "hash": "qKC+EsNEOHWzgnBqPHvt9111Gi3xnxFj/X1Q2B4P22o=" } }, "is_incremental": false, @@ -1004,7 +1004,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html", - "hash": "4Ta9OmWNyBqa7qbnj9QPQd1u0s9PGOM3qXzqashp7C0=" + "hash": "SulSx+AD60vvaXKHBi10wIF7bb2NwMDoo9a+Z3tl6z8=" } }, "is_incremental": false, @@ -1028,7 +1028,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html", - "hash": "0FG6xoW/5d2q9qIl/pCJg1zV0TG0Kqr283JPMIOes/8=" + "hash": "lI7SR7PHYLDKk4gFcSXIA5C4UXdtoElpG5r1Zn+0lLE=" } }, "is_incremental": false, @@ -1052,7 +1052,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html", - "hash": "UpNiCRtEvGlth1YFRiOQuZnz0UbGtSCkNz57TDQ7Ks4=" + "hash": "fDcIMNHEck4BcEKsZhDBd58KfNDtTWhGrhCkF1aXBdw=" } }, "is_incremental": false, @@ -1064,7 +1064,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html", - "hash": "jwKu7bGSaJ5FZvsrCVXRh808KUxi6SdxFw4ofgxptkg=" + "hash": "Ti53Es11I/bRdpP6/FAMuHWuAIPdnXJX/ZdlmiJh160=" } }, "is_incremental": false, @@ -1076,7 +1076,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html", - "hash": "kxFpki8vAhyA9RWohzCRwWRmmYWGqYxugI43nSc8wpQ=" + "hash": "u7Tn47Yzui4jl61pqOC1VHQdJ039xr3ZQktrWL4M/YY=" } }, "is_incremental": false, @@ -1088,7 +1088,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html", - "hash": "w7r08mQ7YowqaEeG6OEIeHMHpjwH/CcTRq/zsl4rH0c=" + "hash": "yxZ7YoWKPVs3K1Y75sAqL/RPCM7mQrahwDEjfLYLrqQ=" } }, "is_incremental": false, @@ -1100,7 +1100,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html", - "hash": "0nGyq/lByIqvodVysvxNQPRQXSqRXtUBM4hCohf7Z8o=" + "hash": "v8HUB8P5//TqRKgj/oD+TQ89oFCZqMZLgblZHDAynqQ=" } }, "is_incremental": false, @@ -1112,7 +1112,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html", - "hash": "4MzbNkMVmzQu0QAsUDQvs3GOgle+9besEC0pApQ4LxQ=" + "hash": "mPFVJwgmh4WqVa2KtzO/bs9+lN8/sA7H25iPYIdLG0s=" } }, "is_incremental": false, @@ -1124,7 +1124,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html", - "hash": "Bab6MmHXlp2K5ZZ1AAGOjI+VJ0Dphvp3io1+mvkfOWo=" + "hash": "kKkb+vgc+qtMolUvqcwpKFocthg6ClXjseD/X1xUWPc=" } }, "is_incremental": false, @@ -1136,7 +1136,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html", - "hash": "kd680jjuDTuTumWc+v9b7ktynbzdmYgPbBAU4+TGSus=" + "hash": "CId6EjbZK2v619jJhYH/TLxGkP3rhl19LONB0zLqjCQ=" } }, "is_incremental": false, @@ -1148,7 +1148,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html", - "hash": "Bh5YBUVlMKqsMG9hiaF7e6YbUnxIYkQmMZrhNj1PGXo=" + "hash": "o34stIrglVduI5N6h1wMNj9fvomG1XduZ9vka6+zRWU=" } }, "is_incremental": false, @@ -1160,7 +1160,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html", - "hash": "E0vF0hnKmaDQ3xa0o5IhgMc7kEJpzXqg9xcyH62qndM=" + "hash": "nQMt/Ht3X9EpdayrNVi0oOX2hj0GFUowT9yMYVLxcHc=" } }, "is_incremental": false, @@ -1172,7 +1172,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html", - "hash": "LU/X1NdKem/QIXcNCinnHI71DI/DSux+bNHwe8nJ3cc=" + "hash": "BOtmbQdU7JG6ufMCPdbsBWLsM2PLTPzExdy0cNqEpQc=" } }, "is_incremental": false, @@ -1184,7 +1184,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html", - "hash": "8nB8gPRkh9Dy62hBbYuNLbvwvpQprgvb93m0fAtXRNU=" + "hash": "Aze8ygSv5yjn0UkZnbcdG0JwMtr/pLB/PaEmptmshV4=" } }, "is_incremental": false, @@ -1208,7 +1208,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.Address.html", - "hash": "/0zBQjHGjGbzPv2HA2iddIK0AjJdU7hLDvSYlorux8c=" + "hash": "jYKHX5qIPSEHArXWKrovWgY0Pf/WuJuUphWRBSJfmEs=" } }, "is_incremental": false, @@ -1220,7 +1220,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html", - "hash": "hKzD89+s74ysGmKh8szKAQGvZCpVcLzCXHx0KwTTUVk=" + "hash": "AohUOs7KnlFYHyZzmCFWACx8BEUUQajrFkDsTSV0iJA=" } }, "is_incremental": false, @@ -1232,7 +1232,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html", - "hash": "gVAUYwVjuT1Bx9BIvo910tkq20Nvt5wQo/1qmePsMgo=" + "hash": "egcstCpVav9MS+/HZT1ce9AVt0kWWmYtgffMifA7AoM=" } }, "is_incremental": false, @@ -1244,7 +1244,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html", - "hash": "87XF9Ab1bJYFPFXSbWEIT/6YTcSDS3a0hTjr1LhVpyk=" + "hash": "fOST4eGrxmgjKKm6ZL3xbbYfhd9S5ldyEgErukta0Hc=" } }, "is_incremental": false, @@ -1256,7 +1256,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html", - "hash": "5Wk7iklGB2yWLzYJLLkwboElqDhXJFBQ40LCSen+rWM=" + "hash": "tW7PfoDUmQYQFnc2R8+DN4Io3r2fkGxhRg0TPrzMf1k=" } }, "is_incremental": false, @@ -1268,7 +1268,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html", - "hash": "vEX1QtHjarZCSQXUHTdnjkaZONi/HPIsUQk1yjHlrQ0=" + "hash": "VqFONhZ3yAG/OGKqpMuwD0yfyhdEsGctRMI2CzEqbhw=" } }, "is_incremental": false, @@ -1280,7 +1280,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html", - "hash": "sFLCEGBu0zqqM4kut2BfDJbBS+gz2cbAttWjlac9tIo=" + "hash": "n8fmIvhl688b6tDwlziSk7zhpt90WWoT50WA7X9Npw4=" } }, "is_incremental": false, @@ -1292,7 +1292,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html", - "hash": "EHHX6BfGEhCEYIbWFfrlIbvUfOQYXu6qGmwQrr9I51w=" + "hash": "WIfW0E3VMf7iC2K2D2pS/vZWAWzCUVXDJtwUsM8IT/E=" } }, "is_incremental": false, @@ -1304,7 +1304,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html", - "hash": "gns+vFe115gia0wiHl6tgHgIHNb3tFY+54kMlHSnx4A=" + "hash": "XO8Pjvcd8VvhFb+kVPinQY3tzW8Ts3+iWiMhqe1y87k=" } }, "is_incremental": false, @@ -1316,7 +1316,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html", - "hash": "hVC1JZMLYcYFQ6qfPHBnF7YJ0GfKzesSY0iH81N2/QY=" + "hash": "fM86eY605sEvRn28fSiNUSAMYE7veGv4h7lCFxqwXR4=" } }, "is_incremental": false, @@ -1328,7 +1328,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html", - "hash": "p4dggDb7JqUgnNG5EMRBF/4tfgZPPMBTc+v51E8wbxo=" + "hash": "GnMoyfDsKaTJDLwlvgRVFmGfTDimHEMh1z7TNVXDGbA=" } }, "is_incremental": false, @@ -1340,7 +1340,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html", - "hash": "uUQpQSG1Ue+d/au5GSGY9M2KFkz2Db2TEpbtxEx2ei0=" + "hash": "X4JYuXpQ8tgkOBq4k7cgNKpHd63wpRGkWKIl6AQgdFw=" } }, "is_incremental": false, @@ -1352,7 +1352,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html", - "hash": "gpXe1ViAYJ+jin4HkFNqdEgNwhpdAAy76qsvt66p00E=" + "hash": "F0jtsnpmCljPww3qUjYy5ZNTPv0U9EmitIH5hp+jzQ4=" } }, "is_incremental": false, @@ -1364,7 +1364,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html", - "hash": "TJSqziCUupL145wvYmrWOobrv7zidkl5q3n1tbMCM7w=" + "hash": "ZUJH7pOB9RRwi9SuTJLT3tdR+TtMs+uV+eQtCsd6GpQ=" } }, "is_incremental": false, @@ -1376,7 +1376,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html", - "hash": "NCVf1tF3UUf42PjA3yV2ELmFWUg3bSJns3wnF/rCBTY=" + "hash": "s5JCzJHFWrnxXjTcED/VhFqmmtiOw16WWk4Bl5xXa3Y=" } }, "is_incremental": false, @@ -1388,7 +1388,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html", - "hash": "FT4LOi+vuRBA26rQmQ30XLtcZWZRroZERMpJOo+S+XE=" + "hash": "vomMdSoJwz9oH7iUIR+hMqKvv24svCJDa0U5NAnpeas=" } }, "is_incremental": false, @@ -1400,7 +1400,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html", - "hash": "xhTDDZP1BG7G7wNKIoXTV7QlAJp7mFlZorUdZHtqGpg=" + "hash": "/Du/ExXQT2+GLqnQR2evfoR+DJ0Qv/QLqWU7sM97XhI=" } }, "is_incremental": false, @@ -1412,7 +1412,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html", - "hash": "ozJfoO+dMNLyC1+UXcTlV19czivgIyFvIpcssC63p0o=" + "hash": "p0uyg0iyxZkGMPQszJDQedMkhNOBiWdHr1TtMtftaRc=" } }, "is_incremental": false, @@ -1424,7 +1424,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html", - "hash": "WZeZb1Yk1UpmWsrXwTeRqg0Frg6/vhCesj8YUJYblHw=" + "hash": "IgzzKzoIw0gEUMavMwdtIHHUz0hd8fzyI4VVEo2ZTnA=" } }, "is_incremental": false, @@ -1448,7 +1448,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ITxResponse.html", - "hash": "Q1BNfltQs9bzqSMJHlgXPrUrc5ZAWuKJYURpQz1xCII=" + "hash": "C4nDthmOu5WYsBtAmdMJmHr5lNRGbdU6sFes7mP4Tks=" } }, "is_incremental": false, @@ -1460,7 +1460,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html", - "hash": "rUPrjUOHdqI3wSzCTEoZZrrizMgZnjzeDi7Lj+iUKuU=" + "hash": "xP13IsO6bj1MuTJVQgqNyW3NCQ6YpJIE51XVdTzbwxs=" } }, "is_incremental": false, @@ -1472,7 +1472,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html", - "hash": "GZLYPIVYboq1KDYS+MnMx+F64QhAHH+SWyKKJUhIR64=" + "hash": "OYItQdEtgCGrq2Dd7XkLXPnW8BlFFkwl7D0aHpMgvdo=" } }, "is_incremental": false, @@ -1484,7 +1484,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html", - "hash": "MmWbCiag+0vKsKl23+6+sCKrVAbcTw5U7fv91AmOZzg=" + "hash": "2WguC7YHDyaFzv9DFw02pH1+QcZQL/izIIJBKju0hYg=" } }, "is_incremental": false, @@ -1496,7 +1496,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html", - "hash": "j0TC7rBJjwjXMeN6sJeRZdGuh5OPiWWkYMCG2k0jxIA=" + "hash": "nokHCT7xWgKY6dmTo8z0PvuNJ4CRofAcLCuFJvg9MDI=" } }, "is_incremental": false, @@ -1508,7 +1508,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html", - "hash": "2YWE5KVlt0CO52wIwpZsGKKztopfocjeQsLkVtwaiPM=" + "hash": "zJP66g15jxbR2v+3DiUY1EchVzhXa1E+giHqgjzJxh8=" } }, "is_incremental": false, @@ -1520,7 +1520,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html", - "hash": "8RQveZW4aYfH4Z6slVT289yQ8vYUlKnY8mGT7kHq5qo=" + "hash": "4LZWGDa3xgJdp9TzmkRn6OFLCPX035oE55BBarHgBAA=" } }, "is_incremental": false, @@ -1532,7 +1532,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html", - "hash": "9+EvyWLDMYFM19kik/J81pMHc4yNRLekwYespY4Z61g=" + "hash": "w5aW+hSn342AMnpK1P45PmhzL/GG+vuclZn3Dc5vt+w=" } }, "is_incremental": false, @@ -1544,7 +1544,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html", - "hash": "gXJaD3Z0mRBRmTbWniqORvgn2GoLTTd7JU19Tb9BelQ=" + "hash": "wRXRXLkkcdwnPV49QqmsrQkndm4MX2pouiEcd+nTYpY=" } }, "is_incremental": false, @@ -1556,7 +1556,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html", - "hash": "sSkVjfUvAjwLfASkCtU/UCE8lC/+fDkJs+WQXDVLVFo=" + "hash": "IFnLDhiDfE0CLktnk6+WsmSMou/Igw7z32WjtIu9YmQ=" } }, "is_incremental": false, @@ -1568,7 +1568,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html", - "hash": "W+mI/gCbknBAFf/4f02rYAIVkE45UvImhESbwcuyH5U=" + "hash": "CxaNiFfg/3z4zcgVYoTjHy4sgfLidSaIrqVLSXYz8BQ=" } }, "is_incremental": false, @@ -1580,7 +1580,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html", - "hash": "0vFQUwSwU4bDq0ApU1H7b1KcUa3CASYJbqB3m/YCMUY=" + "hash": "ndO8+vYomgElKE3HCqr4YZGrSyjR5gMNCDCQLXtdpl4=" } }, "is_incremental": false, @@ -1592,7 +1592,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html", - "hash": "e2N/zFhCa6+720J+iZ/NKgWXN7DrwSqUEdzvmdWKcQY=" + "hash": "eV3LvYNLU6a7lWQyaaUcQOIETGOn2ztN4RAJISdPY0w=" } }, "is_incremental": false, @@ -1604,7 +1604,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html", - "hash": "2WuZ7DiwWURe/p5ii1y1VtOVRrbOu65KRqFpxnqmKdw=" + "hash": "BJkvWjcD8llpoWynRdfeF0iwj8W3VvkpYu822h8cz9Q=" } }, "is_incremental": false, @@ -1616,7 +1616,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html", - "hash": "hFRJ8VvaQYuT8XeUvdLxhaoFETuGk/43tAQu2lcEjT8=" + "hash": "XVKlwb+9oOg3ydN8DRYu167xSuf/r938GrlD73/1nAY=" } }, "is_incremental": false, @@ -1628,7 +1628,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html", - "hash": "y+ouLKznZxd6+XJUrAOr5BCBxlTQMWhUndyrK7uUbSY=" + "hash": "zpkoa9Ikn+SowJxCH33Dq5XDp+hS/wtnpfCvKOCtr9k=" } }, "is_incremental": false, @@ -1640,7 +1640,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html", - "hash": "y2b0Zm+KRnIE/wVZ+LVMlEGcviOL3bIrxVlF3rpOI6U=" + "hash": "O15Y5iC4oaSZBYTbUV7YoIYBOY5ircJvlF0DrikV8mQ=" } }, "is_incremental": false, @@ -1652,7 +1652,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html", - "hash": "o3To7UFi84HsgI/bf2vYJ2pafTd/szPBkd9xANlTnVQ=" + "hash": "LXtEsD/auYp2nFXJvtt7sfTSUr/pQ5PjsDLFwoy9j9g=" } }, "is_incremental": false, @@ -1664,7 +1664,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html", - "hash": "wJIJBJiGPaZupZljEXOccocWB1gCe6WO7r6zlR8S7+4=" + "hash": "3kQgn1T1h6+02uX2wFeNE0z0FrFC2m/lmjrNoALexV0=" } }, "is_incremental": false, @@ -1676,7 +1676,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html", - "hash": "LejsEOuhdfo2OCnau42nKaBR9ExTsomaZqox6gtTJp4=" + "hash": "Vp0LbVmoL/b/H4KxzdoaV6nwoUGl9oSo2qwWv9N0fiQ=" } }, "is_incremental": false, @@ -1688,7 +1688,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html", - "hash": "GA49Vqy/BqK5z8zWuMCk3gy7YmT7kB/MIeBWwYKE6NM=" + "hash": "3iKBvdIVCqIl6ZcxqSsomr5ONn/lvyJ8HoN82bFWyoI=" } }, "is_incremental": false, @@ -1700,7 +1700,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html", - "hash": "OBGE6Hs6da5fviP99406wJ9SJDeo3RGbZ6PB6VGCVmk=" + "hash": "i03e+dKcOiAc9777UnKDhnY4DJc7OzFFvlmnSjqvX8g=" } }, "is_incremental": false, @@ -1712,7 +1712,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html", - "hash": "kCB/UbjjmTy71/1z1Ap7XnmB5LxhOW+gVdTIXL1LM80=" + "hash": "78SkUbx2Cz4ZHTEHTQANN4YIgRbG+x4t1s4W1OOBCcA=" } }, "is_incremental": false, @@ -1724,7 +1724,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html", - "hash": "iNO+2dF4pAY7vp8bk4PmM4gooMVY/vEiJGpNvtIq8LE=" + "hash": "puqY215uNJrQYMg/i5nwyQcspJudhHfm9TQy9KM9gQw=" } }, "is_incremental": false, @@ -1736,7 +1736,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html", - "hash": "fNPHpKcsyvqOBIwNECWD5gEHLC12q8Xwzy6sTE9byto=" + "hash": "unO91S1obSQb0DAZ4YuZ+RsOmchq7YRjM61t7jzm0tk=" } }, "is_incremental": false, @@ -1760,7 +1760,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html", - "hash": "8OHdhXchpZyVAJ9h5SE34MrVbBxFkT2xkRzFlBa1fQg=" + "hash": "677InGxyfiuGwdYZ98oIoY+Awuklr0q1Nmn/yc0pUzc=" } }, "is_incremental": false, @@ -1772,7 +1772,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html", - "hash": "C/lGrSQ2gOai6cXvZwI2agPqQbG6m8ueNbonWkJhmMQ=" + "hash": "vKud1ZafRWnx1EtGUUzocglL6xQnuISFaZdUpR8iVso=" } }, "is_incremental": false, @@ -1784,7 +1784,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html", - "hash": "O90N+/py8zDL8M0io/fdXWEo0OC/byLMTl78STxU+Sw=" + "hash": "6t4AJEyqejyHb4GM1q4a9mzfHS164wvMN+cquI8bcTM=" } }, "is_incremental": false, @@ -1796,7 +1796,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html", - "hash": "/q1Ig9aAh8ff91fNdsdIhJZ6nabV3i8fd7wbTYlQ/NE=" + "hash": "pCVt0EGXRrqJQEW0xA8bdg9KqzEfbNtYaL2Jf4ndkeo=" } }, "is_incremental": false, @@ -1808,7 +1808,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html", - "hash": "WrjMqRzYF2BDUOtOrd2qz/hMIrliSAcA8H7pC3etp+8=" + "hash": "G+NQwQa9w9h9PWVZLH/8HE4nNHoCkxotWf6qF+kB84s=" } }, "is_incremental": false, @@ -1820,7 +1820,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html", - "hash": "tfEoirTP8gwH6g1hic0SeNKoMvU+Fm8gMfzyHL6ATQY=" + "hash": "r8yuYrsrl7O4n94FGddbW+b5V7dRT/oBurU4129vq9Q=" } }, "is_incremental": false, @@ -1832,7 +1832,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html", - "hash": "DuxMq/GZ1bCaIZ0i5Q6vh7LIvLOgc9GwaPniyjWkqew=" + "hash": "bdj365Oz4X+uesSH0EuJK3Q7OT5t0V37c4q9UyJ727Q=" } }, "is_incremental": false, @@ -1844,7 +1844,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html", - "hash": "QTujlUDAin+PVb0ts5ezLAddnqYh8cq+vaftHU2lxFs=" + "hash": "ciSXbNxMyquFgU9rgydukABfZTeB9KJHjugqwzq3+sQ=" } }, "is_incremental": false, @@ -1856,7 +1856,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html", - "hash": "CqlmTMbbsimm3hwVIqeX7r2u3P0PiwaNxjBo0ZqNdPA=" + "hash": "DmvDA3UMq6adHWbDJ7I8FI2q1AnJUHLjJQg2eGSbCuk=" } }, "is_incremental": false, @@ -1880,7 +1880,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html", - "hash": "TI1CWzRAomCEh/aZkQAkB3/00CTEsulJBbqNyA+H8ow=" + "hash": "JZxBNq+921x90D23kQ+mm+mNmve1Q1Wf85oxAk862W0=" } }, "is_incremental": false, @@ -1892,7 +1892,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html", - "hash": "Ezn2lNzRlALkcq9bpG6CF36ythpAz2Uuh8n06KV69UI=" + "hash": "NDP5RYfzerLpdkkqIi6xWx8JslawGSO7011u47yyHsM=" } }, "is_incremental": false, @@ -1904,7 +1904,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html", - "hash": "QxbavbXQ79ZN3OK3/ll96YeomPzkHMjJRUIY4RVOEdc=" + "hash": "B/YcJjdd2HOjtOSV0yOurngtLEWSt3/4ZERWoZ02E3o=" } }, "is_incremental": false, @@ -1916,7 +1916,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html", - "hash": "ixuk9XjbOFQFy6rO/5f688G6gMGlvnpFvBzRt2moKXA=" + "hash": "35UF4CYl5hZ1/m034zuzkpmGd58qjIzoWWhHYDkhS5E=" } }, "is_incremental": false, @@ -1928,7 +1928,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html", - "hash": "bERu/3eBf52b2XqKF+jO0+18tkXbaUuh4LTITYpYvHw=" + "hash": "sclpMY4bLtmRAUViZ02onTzsTdVvVJKin1HKzfZN+3Q=" } }, "is_incremental": false, @@ -1940,7 +1940,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html", - "hash": "VChEA+aWSP/vv+RAQ6WsKI+/n6zKilkOSgETGD3N3Cg=" + "hash": "Xkt4o0Iwa1j4vqYtwl2jOtp3Bf8g0U1JZWHQ1BnSQSQ=" } }, "is_incremental": false, @@ -1952,7 +1952,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html", - "hash": "pCDeICSiLKGDOjV3u6vaIeaeo0ezqfQDJPUaI2xTPI4=" + "hash": "scFLmWEYTFMKhfEWiY0X391JBrFbJeg0U2KM2GQ60cY=" } }, "is_incremental": false, @@ -1964,7 +1964,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html", - "hash": "eQE5ud0skW6kx88NFaQ95CT88G+ACdjf2cxB+c8PL8c=" + "hash": "JerNi4kY7aFnh5AbQAA4KL7B9AyannJ9MTkXgEyVY4k=" } }, "is_incremental": false, @@ -1976,7 +1976,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html", - "hash": "4r4VjUU6L4NW6dtYErIivYkfIw6HE4KLj/d1FKUzuKw=" + "hash": "SeVN0U8dLYj/Sd3HFB4YRWrl9QECAR+04p6L1XliZJY=" } }, "is_incremental": false, @@ -1988,7 +1988,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html", - "hash": "YLLRzd5wZOzyp1OgBu30iDQm6kjWmPPViKXiT671zb0=" + "hash": "05VoAqkl5fV1zM/Xz8WNEUEBxYSdpkAqS/I2ME6bB/g=" } }, "is_incremental": false, @@ -2000,7 +2000,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html", - "hash": "5H8bydcYKBKLflPVDWvVjKS4zNHxh2Tcv9MfZtWN1VI=" + "hash": "6SvG1nzsE4aM2wQ5FRRp7uwtZxZMojExWqCuQfj+Mi0=" } }, "is_incremental": false, @@ -2012,7 +2012,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html", - "hash": "G+Kpd41GwApLorjY4OS3E6kKZbn0ZOM/n6/n4NX4Ess=" + "hash": "1R2YUg6Vtsr5lMJ7tYp6FkyWkxYonTrf3G7wVaRJOJQ=" } }, "is_incremental": false, @@ -2024,7 +2024,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html", - "hash": "Xo9hmove3nPZ9oGqtEVWvkXQZT+Fkt8tH6HExXpV1tk=" + "hash": "tOPTJ47JJ5HD1wai0QW26DSOdr15w10+U0Yc462Z+qk=" } }, "is_incremental": false, @@ -2036,7 +2036,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html", - "hash": "ixYBwkZurhwm8ySf/X+iL9U9WjwvRf7D4+REcwVfiNA=" + "hash": "P9TVaN5azeKyEwfanfKEHRYRsGjZbPP89vnovKdRvIc=" } }, "is_incremental": false, @@ -2048,7 +2048,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html", - "hash": "wfCtmEedlHkr2apm9E6XdKvsLHSLubUx1d/RmP/O4Ho=" + "hash": "EBmBg75LNhIcS5fuAuef4kSLcCtrz8nOC3+JKxmf1x0=" } }, "is_incremental": false, @@ -2060,7 +2060,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html", - "hash": "nimQ0WUEjCnLPMHfNG/JGXoGpHI0racGXFT7NlK+sv8=" + "hash": "u2dQPvnF0qRh+azrtRL8oCdl8w8h7qxial0+LJyLyxg=" } }, "is_incremental": false, @@ -2072,7 +2072,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html", - "hash": "9SZTYggoOsb3Cx5TdvQ8Uk7CR1aj32edgsdd2YGYG6E=" + "hash": "uLLzdmKXjIfVJQIgGWGFCf4TaxyAmbiQuZABxLtmE7w=" } }, "is_incremental": false, @@ -2084,7 +2084,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html", - "hash": "pqNjdijUkWlVCOUFj6ieJI2BeLDL/fmCV1auC8wIpp4=" + "hash": "OHfRBxHkJQTEhwjkg4mkL0iPTmEqs7gy2nW4OLyuWzc=" } }, "is_incremental": false, @@ -2096,7 +2096,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html", - "hash": "8F+txsjUxcLbHowpqtARHivS4kCDzfGRE3Lggu8e7f8=" + "hash": "JEH6BvGEoJ7/W2Mf+FNitkUhMnLvU9zjXxtiHHcprnw=" } }, "is_incremental": false, @@ -2108,7 +2108,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html", - "hash": "VUD0RqCpm2KeDoySmjzF0mi+8+JjvUPZfOkipMgPBxQ=" + "hash": "4G3bhO+7nPT0FlBk8nKCtTOXAKJuUXAeuUbjm8gDxOE=" } }, "is_incremental": false, @@ -2120,7 +2120,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html", - "hash": "8kp5n5GfQvLZ1nu6gahgtUPOsYIhNGFYBH8SpM01bEk=" + "hash": "bZOhVXP79ZHID8iQf6aPLKyi5GmsX0cPhUfVmeGwvnw=" } }, "is_incremental": false, @@ -2144,7 +2144,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html", - "hash": "Dmr5yd7JOvfvy7p/2DPUfB0/Q7fjPMkOt0knyg2X2L0=" + "hash": "+44qNEQhj/Df0T8ieZ3B35XK7yi85YbZECFUvFPCJC4=" } }, "is_incremental": false, @@ -2156,7 +2156,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html", - "hash": "u03IBrClQ7jz8fViHOgiMQcy1y8nL+eQ1LwlcBSHpjI=" + "hash": "xNdrZWspotStzeaup9RwInRHKTYHVDIe40PCG3CIcAw=" } }, "is_incremental": false, @@ -2168,7 +2168,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html", - "hash": "z8INup0uOOhUQvCJ/Eyg4N+ZkOPCKE8k2vJiFg3WTEU=" + "hash": "W04KryjUG9FPyGx/eRiOb2KpT9NVG+3cxCd6hlLdlsY=" } }, "is_incremental": false, @@ -2180,7 +2180,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html", - "hash": "WcWixLGoLvVcFaINhJxi1EyyXJ1tp6aggaWp8+iLSIY=" + "hash": "jUPJdQQUxPTdgEn97HD1Lf0C4/fSjRdc63AKZwbfCZs=" } }, "is_incremental": false, @@ -2192,7 +2192,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html", - "hash": "NMXk2DxuCQCTpv5gLw6tVh5qtUv5ZhVPfs7cnzpBVKQ=" + "hash": "r4LKzP1paY4w1REuz8pOVh+mzctal4WPsChG/6sm7oY=" } }, "is_incremental": false, @@ -2204,7 +2204,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html", - "hash": "PrJg1WzbcgOgix2OmD9uWkZvDX7/49RLgKxkfxz7GdM=" + "hash": "fw7H4dD5JOjKdW9QIKsV2y3Bg3l4++79ZtQOgDK9eIM=" } }, "is_incremental": false, @@ -2216,7 +2216,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html", - "hash": "R+692IkZbUU/lvdjry9r+3WcEe0+JiIITdZTw1Z8Cw0=" + "hash": "+RcMLLAoGpyuk74kStOBIOU9On4lV2Spl9jB4Sx7pLE=" } }, "is_incremental": false, @@ -2228,7 +2228,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html", - "hash": "FwILE0/mdfph52CVOeY8Y52/miidxm2UqWhQk9/h9Ik=" + "hash": "+ob2kD+ytghiM6mR5ruJa/j8eQI9sx7YhH0fZyZvMmg=" } }, "is_incremental": false, @@ -2240,7 +2240,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html", - "hash": "3oFHA0WSpTPogmIRpkKlBlmyq0Hp+wHUTsTA5MZRoB8=" + "hash": "Yx39wn2AnNcEgVi3qRFNzgfzg0StMYO346CC3tW0JcY=" } }, "is_incremental": false, @@ -2252,7 +2252,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html", - "hash": "xx2uzx91RdvG/VZ4dZemCubpFHRZUBeEOSLZ3pvoTT4=" + "hash": "UCbo3NrBWOdbogVhJY+pSDMdg90JC/bHXRLUIOJvrpA=" } }, "is_incremental": false, @@ -2264,7 +2264,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html", - "hash": "4y4DvfRhg7WLyM2VEmvhDXfBHdGEd9TZDJcNyU1kDHo=" + "hash": "aVymHqCDVJd9Ag/f/DUZ1lDAIbN2qAh15uhYz2U/9wg=" } }, "is_incremental": false, @@ -2276,7 +2276,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html", - "hash": "jqbHnW0uiIPrECxXFV5o1h9PK2gtRjdbw4O9rDzYWk0=" + "hash": "nlkGTL4oN6aIRmKxeePTGhzh3+UuNfKk4XyeLlwnw54=" } }, "is_incremental": false, @@ -2288,7 +2288,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html", - "hash": "b185o+0SUR40RK+m3jwfRtkXP55ggPS04lDaaNUzGwA=" + "hash": "jVIvjc9cf6b9dZwIot7VOAYhU4KaqNG+8azOjSCJSvM=" } }, "is_incremental": false, @@ -2300,7 +2300,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html", - "hash": "kwpvZF4YKJHXmyG2qW5vkbKufebiS37cpM9B92xlmrE=" + "hash": "AFtxkiFbe6JoXQl5yWriK95t0vvcZFMuyFhj2Olht3Y=" } }, "is_incremental": false, @@ -2312,7 +2312,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html", - "hash": "bFVL6bb0v+/4xiSg8voDdG8deVzQqxrNLyGSCImb8C8=" + "hash": "sPXVZqDgc9R6hY9RFJInnE/vQKfRkfTyePy7bld3Ofs=" } }, "is_incremental": false, @@ -2324,7 +2324,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html", - "hash": "0S3o3IZXsAEc5WLrle8SGdw3gZOoIWKIg2lE+EjbKfU=" + "hash": "4YlsBev4HbNiRi8JUnv+V0TZ3Ep10dgz2mEeVpHShGc=" } }, "is_incremental": false, @@ -2336,7 +2336,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html", - "hash": "FYa7b1MCaXWunWPG6lARWGv85p0ZEnHTJi20zvhbZ0w=" + "hash": "+O3Hu5u5PVDNQXATdlp6lj2UxxSXiBmqzaGtnwt1KLc=" } }, "is_incremental": false, @@ -2360,7 +2360,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html", - "hash": "9j8siLd057Aa+1Pf+UVYmocMIImZfkkKaOdX7KEq+h4=" + "hash": "yWsohqxrpPE47lvCOIyjVHAO67GiE33ETrMkWhCCBts=" } }, "is_incremental": false, @@ -2372,7 +2372,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html", - "hash": "H0807t215a/5zhAsIfxHC2TsDj9JKlylk3802cuQm64=" + "hash": "IYQOcmLe3Yim2oKcn4phfNM2AI06KLXaeXxrh2Qt8BA=" } }, "is_incremental": false, @@ -2384,7 +2384,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html", - "hash": "NICXOBvVmKEvubxTGG0WYpMafxYelQ+O8lAryO+aCUM=" + "hash": "yuoBInXZ+uTf4QCh9x03VLzsWtSENA6As+VIVHWlZJY=" } }, "is_incremental": false, @@ -2396,7 +2396,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html", - "hash": "cBO8ip4TE9mg4C3DukGNfTXItEV8khWe+6cEEKpUlws=" + "hash": "fAL+DPwQeS8d0MmUBsULbBe0R+rwz2WUgIM2Ecskrvs=" } }, "is_incremental": false, @@ -2408,7 +2408,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html", - "hash": "PZBXgfty3xjvcN1ndjObO1N3I20ob13okoZLwClSvG0=" + "hash": "RzSWSC4If+FU/cSHmYYl342OB+CAu4+6ya0jeD9Hsnk=" } }, "is_incremental": false, @@ -2420,7 +2420,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html", - "hash": "GQ5/epAL47j/F/mY3Hj4U7A18k3gf7dhRbXALBvMy0Q=" + "hash": "hek3t89YUgBN52kns90M5qkwJIQCUHi3VS9G9gXjmZ4=" } }, "is_incremental": false, @@ -2432,7 +2432,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html", - "hash": "Ig+kypSb0Ocvg9OMVwfdI9JXNaz199dH76Vp+opWZeE=" + "hash": "qxQcKnEbNqEeRWD2BWPlSMarolCUSxiqB1z2rjdxuJE=" } }, "is_incremental": false, @@ -2444,7 +2444,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html", - "hash": "m8NL1DpNuZHGz4/AEwOlSV3qWUThi2EqbJ9EvbCamwU=" + "hash": "sHjZC/ZwnrtbGnQMf2edd0JPs4h0lF4gureKYb05Ae4=" } }, "is_incremental": false, @@ -2456,7 +2456,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html", - "hash": "TB3XrauL0Y3nhkeGgmLaVyIvQn1B5+F8mjXBP/jDhLk=" + "hash": "MYoc3euj8OzQF00o4jNM7VT3CU2w2Wa2CxsV/sumses=" } }, "is_incremental": false, @@ -2468,7 +2468,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html", - "hash": "/zmjwd9HdTzaphx+2UG8IGGBHXjC/XN4IWHyWFCkfGY=" + "hash": "YVs/y7bNONdPRhsVAGVdWE/24jjeOsvBt6xJwgvItnc=" } }, "is_incremental": false, @@ -2480,7 +2480,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html", - "hash": "XADNbmkEO8Oik+2qoOepJuPT5zMOuNaKUq9aBNaR9uc=" + "hash": "6pYLJ0aUULUzZ/PoxhJ/f+6zKHb2Rnl2H9cbGiJ87JU=" } }, "is_incremental": false, @@ -2492,7 +2492,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html", - "hash": "+0p8grzMF4GLdfssxgpvm7hR1gAunqSs4z99ZtHA1QY=" + "hash": "SDT0lCVwmeuRsO6F7HTV/gDh6hCE2HFE45CN+eupryM=" } }, "is_incremental": false, @@ -2504,7 +2504,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html", - "hash": "vVnFCvLbMM2pJ/kpgDOZNTRHF/vGa90G5p5gHivAL84=" + "hash": "klTMNZAlowtJjT/RbJzpCoKO2B2qIaXLotdKORJbBEs=" } }, "is_incremental": false, @@ -2516,7 +2516,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html", - "hash": "s02xZWxMkWFScsInHyLHXhh62aQr/yizGTp4CjrMmTo=" + "hash": "gM3B4lqIwu4Gb0DmNBSNqJ+YwSVAtFWrVn0AWonArnE=" } }, "is_incremental": false, @@ -2528,7 +2528,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html", - "hash": "RbVPBlbA26vhniW+M112+sNowPaG9Z4IBuAMm0oejq0=" + "hash": "H/7nmn9yPgWb4fYaeYSDdJCUPEgctBZAN8ckVUW6WaI=" } }, "is_incremental": false, @@ -2540,7 +2540,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html", - "hash": "ehnUhnOOwTAC7gxO7n2UenRnh4GXSzFlqJWtcSg5i3Y=" + "hash": "j3nXK4F3BKfyG3mAWMPG3DIbsyGBGImyt1VpSIvg+P0=" } }, "is_incremental": false, @@ -2552,7 +2552,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html", - "hash": "12FwadzIzl6KU9UnNwGMJdb969+jQB8D7EiorStBFNA=" + "hash": "wJPcD+brMkvb0R6eK1LodYZ7GnBL0v5oUde30CPaR8g=" } }, "is_incremental": false, @@ -2564,7 +2564,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html", - "hash": "XrbAeoNDyGfvmyvxBNXZ/1kvaTphSLPQtwGmAjCWAmg=" + "hash": "uDze3nFTB/IjguH6bN9qBJs8HTFabv20rhJDluLgzBA=" } }, "is_incremental": false, @@ -2576,7 +2576,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html", - "hash": "1R4/dUrquuhf8j4C8LdaARo+cZqkKFd9BPfAh5rC4cI=" + "hash": "CAndrsgUgcnyu48uSVECAe/eMeCK/gvsgCNvbgaQc8Q=" } }, "is_incremental": false, @@ -2588,7 +2588,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html", - "hash": "AVIu44f6K3jjpSRc2dAkIjvTWuiM/5CiDaICpKLcB/8=" + "hash": "HAqLY+SzUybS9y5rZMckD5XFI2SBxeHPH+Cwtps+NjM=" } }, "is_incremental": false, @@ -2600,7 +2600,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html", - "hash": "u+6/+LL0r4/2HZcMgjKXKewmTxSvV/MCEbPF2WUHIx4=" + "hash": "V/k1kwdkCMv7wYs/VzzwbrlOvpry81H5DZITa7yDsTQ=" } }, "is_incremental": false, @@ -2612,7 +2612,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html", - "hash": "ia9REtXLCLwbsnzVKr0zLhx4Tp47BvVxnMO24JdHY/0=" + "hash": "YGfwKki+cNZ/c30Ski8fvVT8X4cI+GlSv3dPzgVTCbw=" } }, "is_incremental": false, @@ -2624,7 +2624,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html", - "hash": "WlhzMijWFsp2A5e2L55r+88YWJhyVDY9K4/4I+HnqBg=" + "hash": "J2krfJ4P2/w6j+QbvUmh+h21aViaGkCbFxVsJ9FhVXk=" } }, "is_incremental": false, @@ -2636,7 +2636,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html", - "hash": "tUOqzq5e+Ww8W4iEZ0i263KOfQQApIt+ci6rO7OmQ+A=" + "hash": "nA5hAy/uMeOsVncqkHiSL294BuZJv1CFhvMLBWjc5uI=" } }, "is_incremental": false, @@ -2648,7 +2648,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html", - "hash": "OZt1c02pETNWJNf3GcHoTR3BJCEhfhxVy7AkE3V0OWo=" + "hash": "wLsV0O0YlcTTayvFU2vh/SoDEj/r05VidVKaS7MCWAA=" } }, "is_incremental": false, @@ -2660,7 +2660,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html", - "hash": "X1whIQwTJxlu4yvz0/BrX6nDwgRKo8TFxs+tf3ZVZCM=" + "hash": "IIJ/CCi7Bm/vxoRFZwiVX8NT8CQW8ph78meD10ZANeI=" } }, "is_incremental": false, @@ -2684,7 +2684,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html", - "hash": "xi0Q9YLPP2tEIqxBwALA/VjCauSL0i6LC50E7UehRzk=" + "hash": "OJA9rjEdF3bNWIUYIc7twJukftPsdb3WmxRuliM6yxs=" } }, "is_incremental": false, @@ -2696,7 +2696,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html", - "hash": "56YRfw7r+SXOlIMBlDr5bgLX+J7UG19znYM/sM/euRo=" + "hash": "BGDgE54XVLX3LSZz7PoRoVZqFyZPC3EVTnI7VZhuQTc=" } }, "is_incremental": false, @@ -2708,7 +2708,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html", - "hash": "iQBy5WDDtcQj1lqNK1gXP3abclPtex72Vr3LGmKjAcc=" + "hash": "nRJ907eCHr/aW6tG97G39Ncq0tNeNfYs8b2E6xVAARE=" } }, "is_incremental": false, @@ -2720,7 +2720,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html", - "hash": "oIWQ3u3STTyVlZTxKlhLfqQeZMEtnuOd08UPe5P/ljs=" + "hash": "qZAC26FjH8tzVfqWQFjek8VB3Zz22uwaX3ObuEW2DJk=" } }, "is_incremental": false, @@ -2732,7 +2732,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html", - "hash": "h2tAP/FUQfsXS+nyztJPNFbce8biFBmNyHHZlJlbO/E=" + "hash": "CaRoXL3HBR9XhxxSO5Na3lQRKXzPo8phvPJVAsp8Ki8=" } }, "is_incremental": false, @@ -2744,7 +2744,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html", - "hash": "mUHr2G2TpXJ8nu54plPFwwettzipttg///XclMkLhG4=" + "hash": "JVITP/RgC61Of3yiez8KRrEsA78sZjYxMZsLkoyqltI=" } }, "is_incremental": false, @@ -2756,7 +2756,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html", - "hash": "3+txRdeyKPpf2IdczzLCYSfPeeW2mMoVjyfZQMDkPvM=" + "hash": "evKA+rRFC4Mw27ETtlu2/1dFb2OXbECDCRyyUG2t7CI=" } }, "is_incremental": false, @@ -2768,7 +2768,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html", - "hash": "crRXzit7TaOWtToD8Z/k1W5nsffJjpW2sfQpsac39p4=" + "hash": "j7YGBAZvSjrpBXQP3+LUKI1ur8I9gzl3iwketdxEY8c=" } }, "is_incremental": false, @@ -2780,7 +2780,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html", - "hash": "GK6TX99BC8/qlcyaLwIl9F0ArVkaYd4qqZ74G2kJezY=" + "hash": "vEXsIPydDCvCXbojphS9oXfApn8bsWVhs8a9pgzYjEE=" } }, "is_incremental": false, @@ -2792,7 +2792,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html", - "hash": "J1XO6SPHrrdXTA1JTEpe4R4O6a7GZWTCviLASNhNk9s=" + "hash": "xXhNVBVzrV7IXZS6uILNMdlIsOuH0H6epmvHoMPFypI=" } }, "is_incremental": false, @@ -2804,7 +2804,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html", - "hash": "jZqEfLA+NcrUNSQFxgukh/8FLTwxK/7tTeFcrKHJkyE=" + "hash": "FPsonjOujk0Ugvc2dOEQHzW1eAUIk5VuT/WfY0idyuU=" } }, "is_incremental": false, @@ -2816,7 +2816,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html", - "hash": "2Zx4jylOPScK5uxCBnERwpB0fL1UB1d60Cwm4zxZOZw=" + "hash": "azL+AIMlwmtfFyA1cEZDsAcEC80pop1RYVrz2sTcdKE=" } }, "is_incremental": false, @@ -2828,7 +2828,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html", - "hash": "T6h5vRc6plK2LSTsgR+YSTFxO/7Gvbtwck05EtmmsAo=" + "hash": "WQmGbXjMHAjZnMKISkA7wDnAqAf0IOwVT2NqEKMnN/c=" } }, "is_incremental": false, @@ -2840,7 +2840,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html", - "hash": "Vq36dYmJFVDtlU9OCN4ExFnyFIWeESfvekPlnolufuk=" + "hash": "3muM//jHjw17davhCeSrh2tVTI42jbp9FL0752PssOo=" } }, "is_incremental": false, @@ -2852,7 +2852,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html", - "hash": "Rs6eXykeqRk8hw8orpFVEnrwWUi734fua12/PYFKKNU=" + "hash": "+6FTnMTihqu27AEZMh/wO7U90ju5jbp5Dpyyk9+S7/s=" } }, "is_incremental": false, @@ -2888,7 +2888,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html", - "hash": "07HvlisvPvxBE4Er9C+3ZBBkoxzkHJC7vJ0avbpdJmc=" + "hash": "kB7gvmJgI//1M7H8GZjPrROJcWvgAcj98JMCKee6DaQ=" } }, "is_incremental": false, @@ -2900,7 +2900,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html", - "hash": "/9X7K8OEoOAzaYzVrFY6AyHxWyFFpiOiu12XDomvvwo=" + "hash": "nGCxfuy3Wap6O5RO5AISPyItunBwzDlUfK/62lckQo4=" } }, "is_incremental": false, @@ -2912,7 +2912,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html", - "hash": "f73UWFKVO2IH9b5je9l3DHed1XyEG3emsHF3LIS9U7Y=" + "hash": "O5kgJGboSZKtjDKPNCGOgYb9IBrIyOXR7pKiakdc+6s=" } }, "is_incremental": false, @@ -2924,7 +2924,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html", - "hash": "jVjAVcO19+aNzd2vTj1mG4NfAKmsF/kGUvfjsdbNO/8=" + "hash": "vX4Rx1WMK2FS+V8RF/JIvlHBLual5DHphGgB+2PxMhw=" } }, "is_incremental": false, @@ -2936,7 +2936,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html", - "hash": "ApzXIFTn+QXPtEk674fZ7xOoFtXzVuDfKxWdMi9J418=" + "hash": "03Sx6m3CPROA5q9sOhPuLWE06t3PQ45SkiW+84sWwuc=" } }, "is_incremental": false, @@ -2948,7 +2948,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html", - "hash": "461xDiVtHplnzFpwg/hUcVZFQ4vOizyvEn0Mf+7YVnE=" + "hash": "GpSfjnhAnjBIOcmn1mfDQ6CYvSwSE4Nfb2t1fb8HBXc=" } }, "is_incremental": false, @@ -2960,7 +2960,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html", - "hash": "/PY/VUQLjKwAIWH2W4aBNwp+wRVdwauOU7p4275Gh0Y=" + "hash": "BLfu7lCYMj8LpnBsz/bYBn+/TRbxjEX7TjSjoceJcaQ=" } }, "is_incremental": false, @@ -2972,7 +2972,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html", - "hash": "PDvjPdA6CPZz/0taYrnwmTrxlOGLPRPctvrz2NBzcoE=" + "hash": "CYyct6Q4xJx6nOd7vvkU1ak4pwoSKmeeVFfP1CaFVdM=" } }, "is_incremental": false, @@ -2984,7 +2984,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html", - "hash": "2+Sob/HGFXGZk2zDNwSEd5XOwkdfpX6BM3D5l9l5C7s=" + "hash": "PPd7g7RSBSXCQMCDupDD53l19ie4NznouedaNMzyxBI=" } }, "is_incremental": false, @@ -2996,7 +2996,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html", - "hash": "J0rbVE0jj3SgfdniEDfo7clf2WgF1vq8J4wPfNR1La0=" + "hash": "TVVKokwe5a7rTzjT0ubIECzyUuIpbkM6hScU68rQCtQ=" } }, "is_incremental": false, @@ -3008,7 +3008,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html", - "hash": "o7v3RUdirREhcP+81pIUmTjcne5LOn53orEDcLUWcQw=" + "hash": "XTs7JEd6oQW9uLWzRyYit4ELSQPKe5BdT29O/lVWe5o=" } }, "is_incremental": false, @@ -3020,7 +3020,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html", - "hash": "E7ca7LcsWiR6NX5blWw/wGNKWyLgglOCkRRvYj2obOg=" + "hash": "XymVLcOggAS0h+YOzHySAxD9skmmYMsnEWbWbs1+SF4=" } }, "is_incremental": false, @@ -3032,7 +3032,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html", - "hash": "uLOkbmAVM/FbZi6bKxSERPuWlxRgvCejCtFuXJB+CE0=" + "hash": "sILuSMwoJMGHWzx2tfEr0Rx91l3c33AXfac3yFIDJOA=" } }, "is_incremental": false, @@ -3044,7 +3044,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html", - "hash": "YiYGQ2JL1U7xJ8gP4SjOhaek16K1cqCCJnLH77Zuh1g=" + "hash": "jJtJ2PPnIxVj6D+4qaAy9FoBFyhfWuepFKs+rL5DC1U=" } }, "is_incremental": false, @@ -3056,7 +3056,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html", - "hash": "jX8vcSeHnB2AEeAstMlV7+N+NpJCyFBwpJ7SIoYY73U=" + "hash": "lirMI3R3wVyBm63PEYd+pFPu56rw2kQmPklg4eAYoJQ=" } }, "is_incremental": false, @@ -3068,7 +3068,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html", - "hash": "qpXwdrk+o97y6eDlOJB+WckHiCd1zwwjsg+WdpsGoKw=" + "hash": "mClk8EZ4PtFqiYTg1QmYy3xbciO9fqSxYNtV6P8aWZo=" } }, "is_incremental": false, @@ -3080,7 +3080,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html", - "hash": "SoPDDysweK2k+j3gnE3i6zpt2iF3JEfAdmstpxx4NAk=" + "hash": "ndlLmK00jQaehUWzA6Fm0vpiEc/viymQeHqPAbpYqOY=" } }, "is_incremental": false, @@ -3116,7 +3116,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html", - "hash": "2llOpyWyBdLGLkHLPtQBHmd6yd8gBOSRRpF1wCvXAwU=" + "hash": "AYWU79mMxlUuIQoFAB2molLcDznWbdR9u1ykEFuJYgU=" } }, "is_incremental": false, @@ -3128,7 +3128,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html", - "hash": "6xkPoVRMEGAafl1KCDQjOy6x+aRGMgtNCmnsr91qZSA=" + "hash": "drpVT6MGS84yPDD3xLjbokm1b4ZwZkuoAhht1ox9dc8=" } }, "is_incremental": false, @@ -3140,7 +3140,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html", - "hash": "ymbgiUweckOEdg9u7gdpIzSl5ARLSoYXK2wJhfrp/PQ=" + "hash": "lk+IhS+SyLZbhLWwUE+aHDm65O+PpLV1aDnQxitqvX0=" } }, "is_incremental": false, @@ -3152,7 +3152,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html", - "hash": "I6bMpbc1LPKQYmDqGBwbP6tlrammcOXR+iYWuMl9UB4=" + "hash": "52jxawCGfApupkHvArSXoLIUOfErh65IgqRaJ9v8Vhw=" } }, "is_incremental": false, @@ -3164,7 +3164,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html", - "hash": "1w1KeCymDeoX8uTi5oKpVP2p1E0OhmBCmFDLNmgl4XE=" + "hash": "Ct3vxsqVLVTYId1NXfAafdWMCZ+pVAagfNGauXLle3g=" } }, "is_incremental": false, @@ -3176,7 +3176,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html", - "hash": "g+lDl/9hllgkXOe26M65TleO23sIlYNK6n2RlL0/cDw=" + "hash": "dv82x5H03uTBnRRbVtU1DXAE4vVmep5f55fj1u5MNoY=" } }, "is_incremental": false, @@ -3188,7 +3188,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html", - "hash": "AaAXcz6B27EfhixYRlENoNWcQW9QPyiPPGcBH2eD/m0=" + "hash": "6mtmmyNjHM43p3x00anUTfRO7RDkCLPEh2qr0buujEY=" } }, "is_incremental": false, @@ -3200,7 +3200,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html", - "hash": "fI5ECPgSip5WYC3RhJrFCuJf2kFR8QGGynauuSmZxWM=" + "hash": "IJCc1/E6UDVHhC84Ua7V1rDgkFs/+K1rKuyFC8QkK5I=" } }, "is_incremental": false, @@ -3212,7 +3212,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html", - "hash": "axmyqMnRUUhNlGUxWbVYWpVjw+1JlHJMs6azHrldIrQ=" + "hash": "0Hk5Vmb+Dj1AwT4BFzEx/mXJsGUu2w7W6fOxQt68ygQ=" } }, "is_incremental": false, @@ -3224,7 +3224,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html", - "hash": "zNp3HKpvEoBpH/HI8EwrbYxq5GtOzSC4l/MNXo2khng=" + "hash": "+nxRRXhs/lPbU74bpEC47fms5tev8ayTFPQFagEWZG4=" } }, "is_incremental": false, @@ -3236,7 +3236,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html", - "hash": "XL7Tt+rbTnDzwQAqxU93LBEBF2SZmNsudsNPpL5VEcY=" + "hash": "Rp7Dv7/O2Czp6shrgnGOzyj/9LGcziSQnKw1HwaAGc4=" } }, "is_incremental": false, @@ -3248,7 +3248,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html", - "hash": "uQWNFUewSWUOAFTzfgEXLl5PP+vca3QJNr309rieO24=" + "hash": "+zWygdsKGF8QSDlPksfFSnCIfE1EVCi6W3xr+Zn2U18=" } }, "is_incremental": false, @@ -3260,7 +3260,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html", - "hash": "C1sQDIpLgQ2nTMMA7PjksXaUccj/xyehPFqaeR+MAJM=" + "hash": "lDAOSzfMnE7f2AGopZ5rWjXjS9W/2LHm5O39RgihCk8=" } }, "is_incremental": false, @@ -3272,7 +3272,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html", - "hash": "o4+cFSDVVW5667QtEZydPgobSK18kyh72ldyCFRQuEE=" + "hash": "bg+bllAYX71vPMoDyRMprg0SfAZGunObEBPW9y4D+iI=" } }, "is_incremental": false, @@ -3284,7 +3284,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html", - "hash": "/cQq6T0stH9D8s1e6AiMRXKvk1gtjwS6j1651tS3bUs=" + "hash": "xGouuF/ocHnznq2Z/NjZu4bjb5g0Xgs8ogbwn6iIZMQ=" } }, "is_incremental": false, @@ -3308,7 +3308,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Document.html", - "hash": "HZlz9PaDfnd1zy2+n0sZLv7vkCgRQuDBl43FVHLTGYw=" + "hash": "LSLDW6FjgNRUeZfIILVadVudoQCTpkP6Vh4o3bzQIOs=" } }, "is_incremental": false, @@ -3320,7 +3320,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.GeoCoordinates.html", - "hash": "cFBo4ZrdCCW95GYROTgycbRET9OQcruMCE1KmanbJck=" + "hash": "BYAQcWMDu1MimSQu7FQ1tFxd7qfljOl67bPPnHAbcaQ=" } }, "is_incremental": false, @@ -3332,7 +3332,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.GeocodedCoordinates.html", - "hash": "GDCrxjjHInGqxvfRDAoJgWpLily51OKsFLTBeMOv74M=" + "hash": "aeJlRdevvg0UBx+EDSisEoxMgSGMGArQeQsbG4lcRPk=" } }, "is_incremental": false, @@ -3344,7 +3344,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html", - "hash": "iE9RjKzqSpotskvjXrsw7NsDn1/JIqWY+wCPlY3Ug70=" + "hash": "+Zp93qQkkGnVRUqy3iDV4gJZSUOtFpdF2QCDRVoQ4Uw=" } }, "is_incremental": false, @@ -3356,7 +3356,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.EmployerNames.html", - "hash": "A59MEXuicbN1bLmfnsp/wNvg1SNsjHOw9qaulVrHGu4=" + "hash": "zqIK8k02n5jPp/ikX+m83PnnX29O4J7TTJW47fBQh1s=" } }, "is_incremental": false, @@ -3368,7 +3368,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobDegree.html", - "hash": "XjfbqkbQVHul7M830vocta4MOqVJs37nRyMM2SREg3A=" + "hash": "KB6M/yi4ss/EY+l4jnBe+OtFrqdVKzl6uqmYiucWzVU=" } }, "is_incremental": false, @@ -3380,7 +3380,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobMetadata.html", - "hash": "m/Gw6ilrAug7HdaRXZH0JBTNTEhSDoyCEY//UuggdIY=" + "hash": "R1ybKdTo/QRan+Ik5UyQg6+R94WFpU+i1zGJ8T1vVhY=" } }, "is_incremental": false, @@ -3392,7 +3392,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobTitles.html", - "hash": "jIRDivraXdidkhnSSP23ogWaeDQhZw7vrnQAPPnZN5Q=" + "hash": "R5HgkLQAaVXz+a70Z4SlbatjdFtdH9HCZCXdOC02SGQ=" } }, "is_incremental": false, @@ -3404,7 +3404,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.ParsedJob.html", - "hash": "+8vm9KF/4NTFMcEkPQoL+3gM2EgkFIDDQj4dUcIAiIU=" + "hash": "SSd5eacR2KdnTHc7sksABmeRKBECK1m8ICavIZnm8eI=" } }, "is_incremental": false, @@ -3416,7 +3416,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.PayRange.html", - "hash": "BqDFNz65bxVCeu+EZuSP15khJ7GNsgQ+AAcOiFTzNKc=" + "hash": "qH5wLWa5szbsqvbWVEXNvhd/F4A9g30XGkBa2cCGPGA=" } }, "is_incremental": false, @@ -3428,7 +3428,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html", - "hash": "BAs2qKY2kos0eX4i3QzuO9BcozAW7Q/4t1OTGEG3GxM=" + "hash": "ttyeSsK3V5ZjKUxyXx3b9MgJMkiZlotkUK04cova6ZI=" } }, "is_incremental": false, @@ -3440,7 +3440,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html", - "hash": "tbsM73az6Zr4XWJbhQMRLq6JI8+pxPCCH+Dg+vFNtmo=" + "hash": "nBIOmI7ldOaHjjdBgKExSQVDOIJxxGu7Q/ckzJHANBs=" } }, "is_incremental": false, @@ -3452,7 +3452,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html", - "hash": "Mk35fXcaexetXzv9ZDcJ55h/19kBlyT3gUHqqBvxwc4=" + "hash": "TyDIm/Kln6kKGxtAV0dhW8AKADEY2BF4HEgbhNoKjLI=" } }, "is_incremental": false, @@ -3464,7 +3464,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html", - "hash": "5VvikNxmqEV85hvtpXp1a/8bnx3/9Kkj2JD9tG3c2SA=" + "hash": "3KkLZlmnfPZFtSAL+NYW1XnFw460W0l/niDo/TyeE+s=" } }, "is_incremental": false, @@ -3476,7 +3476,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html", - "hash": "2itaypibEsLteOZW/9YlqxftnW/uHqoB6BhEs+MzYEc=" + "hash": "a7l/Zt8YGiLYfTIH0qb0YPj6ZWybzXcpCroyadI++Pk=" } }, "is_incremental": false, @@ -3488,7 +3488,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html", - "hash": "RwvyxTnoH1JOUEaqhC2X1hgCtnOa7PWBPkTutld+Fx4=" + "hash": "FsdHrk6spYFOkmhhO+9Rvu1DNL09kXG5YW/vjlhMguc=" } }, "is_incremental": false, @@ -3500,7 +3500,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html", - "hash": "fuZH2Dyz8f98GD5Xro6WCQKx4gQ36eFIztmkdMNmBBk=" + "hash": "1eYa3x7PdaTrAMx0uNi8McmyG2hEdYZUZc1PRlafsCI=" } }, "is_incremental": false, @@ -3512,7 +3512,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html", - "hash": "BGRxNJ9Z4qj6pj6liBoC7+hZ8stJr239BwRle9nMyp8=" + "hash": "5dPU4tNAfE7OzUCAdpcWdXoIKw25EAFZCSde67so5Qg=" } }, "is_incremental": false, @@ -3548,7 +3548,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Location.html", - "hash": "2evwCmmH+S5gdA7CT94W/Irc83RjNtdGha/tGcEvwiU=" + "hash": "kI07A/XmzWEkSiCCTi1k0Wrvg2pqd3GM8fhJszFGVOU=" } }, "is_incremental": false, @@ -3560,7 +3560,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Matching.Index.html", - "hash": "JAhEbUbmMLzahPNka2SYLeRATMgpudPTdFkedlfX6qw=" + "hash": "WQjGtM1s+rlfpiE3izkpSXJaJ0sJuaey4/L3T7Jmb2Q=" } }, "is_incremental": false, @@ -3572,7 +3572,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Matching.IndexType.html", - "hash": "qqiBpmx09+WUH6h76wMMkT5jKjPxYNhb2kSKkh+Gl8Q=" + "hash": "j+WHtwaXf195POf2p0xRdEncz/R+Fs3rpEtdvyg+/sc=" } }, "is_incremental": false, @@ -3596,7 +3596,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.ParsedDocument.html", - "hash": "E1vHl5vJs6y///BzR6Qv4510+Hhd13IYZ1+tGJCN1Tc=" + "hash": "95vit4SmcZFwLy2AyiLpshEReXsmPi/8OuXhkxAsPrw=" } }, "is_incremental": false, @@ -3608,7 +3608,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html", - "hash": "GOAh8TdRyGhlfWChgPE9h5hmGME/TswvkFLhb2H3NJc=" + "hash": "tga3EOLYqYixGum63evuaZGh1wiPx44uEzeY81moa2k=" } }, "is_incremental": false, @@ -3620,7 +3620,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Association.html", - "hash": "Sk0P5NZthQ+kVax/AOSlWEyM0CNVzcS+5nCA/spwMz4=" + "hash": "hzYVmo7R63SaomCpe93m3Jmj8bocogl126yhOKxURME=" } }, "is_incremental": false, @@ -3632,7 +3632,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.CandidateReference.html", - "hash": "bWoDfrzyA3e5M1eg57XRT+ca7YN0VHqDPzKqQzrFuKE=" + "hash": "/llwDR6Ga2b5HRd40jbDIsHEnepgBZPMuLuxZuzHvOk=" } }, "is_incremental": false, @@ -3644,7 +3644,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Certification.html", - "hash": "gMLZBG15UlMQOHNDqfE+6mp3QG8z3gOgGnz1/WzecJ8=" + "hash": "sg8KbwlUVV+lT/0o/MB4EDR9INhlhrLWkAFX1tXoauU=" } }, "is_incremental": false, @@ -3656,7 +3656,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html", - "hash": "U0uBwdetYR9RE24JP5NryzB5+l5aTauxPtFIezitrY8=" + "hash": "4LvapOekTZdPyEIlHSzMmjgbyEY/1f3N23WNnywD3qo=" } }, "is_incremental": false, @@ -3668,7 +3668,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html", - "hash": "B2EDNyWkXGocI8MBV54U9PF2s+LFIkumzXq/BBqYDgQ=" + "hash": "Gq6w8q5Yl9h/cCU7WecN9SdmX3frIItvMRakx0etNmo=" } }, "is_incremental": false, @@ -3680,7 +3680,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html", - "hash": "gwKV6TLAqL43auMsE+4ng06GYsJ0N6LUG33LgdGxejU=" + "hash": "28rXY7HVKTxnuhl3/dEedAvzSSvGtcz/MD31STSPXAM=" } }, "is_incremental": false, @@ -3692,7 +3692,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html", - "hash": "aTIHv44+UoENJ5KrtSihmNJFBhqZMqIT+16187y8/KI=" + "hash": "yAQSKSOLUrXABLKmK1KIOafOyQQmCvPBpq9Kv+82Z3A=" } }, "is_incremental": false, @@ -3704,7 +3704,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html", - "hash": "rveqW5zwNf5igHzYGdBu+gAa9Cpuz5Q0vum/sFObeNc=" + "hash": "X/U8HafXsM0yzvxvkQHpCA2SzxfnWx87QI++SZtK/F8=" } }, "is_incremental": false, @@ -3728,7 +3728,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.Degree.html", - "hash": "ZcYS93qB7lD4i9Adxt/+lH6635i+1JOldFgQMpbACcY=" + "hash": "bGAQOisluaY++D4f9EXpRlmcawIkoSrgnUYhbue5Sm4=" } }, "is_incremental": false, @@ -3740,7 +3740,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html", - "hash": "2IXfWNKMqGSMF9KKF9n18/cN3L0xe/fgLmmezGG/75c=" + "hash": "/urtlH/VteD8VcO0NyJ0A3/LgYmxAIzHawxw/N7sBrU=" } }, "is_incremental": false, @@ -3752,7 +3752,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html", - "hash": "dEV9tWZRsjf98DXRsqk4nOW8fbBMy3Y55S5PCZJRrzU=" + "hash": "qMKREI5vnEgDanAqJCXrfe0viVaCtwEATRFyGaG7zxU=" } }, "is_incremental": false, @@ -3764,7 +3764,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html", - "hash": "mkV2gqoaBNWB0ZaWBkYmC6DLx0Jcivy3n+iIjWdYmPI=" + "hash": "7/bC5Rwn0RLtZDRLS+I2eTWlfMtfPqmUd/pEZHcJ0Ww=" } }, "is_incremental": false, @@ -3776,7 +3776,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html", - "hash": "I1zdOvI1U5X5tR2ywFE5SdBjOLMD73e6E6soVaALq/8=" + "hash": "/ZGbqYbA5ggG/wWI5hGFi0UAEvJri7cMb8XTbI2LWMk=" } }, "is_incremental": false, @@ -3800,7 +3800,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html", - "hash": "XSOPjXGaDmcLxUFhknK4cLq8E+Zcbjx9xtmK2laR3cs=" + "hash": "SwC2RKUFU65puklg4+cSKMpZf817MYr4kfoMo7VkBBo=" } }, "is_incremental": false, @@ -3812,7 +3812,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html", - "hash": "0rzVd3r6eS4nul5tdpCGXSU90viVcSpM8q954R+e0O0=" + "hash": "qqwMMfBzFxi7vE9kf5T23xHVqXaiums53bCs+NkRXsc=" } }, "is_incremental": false, @@ -3824,7 +3824,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html", - "hash": "2ID6xqjoG0OdU7c34eVlf3V/rfbZHq1xJfqSPJL+wcE=" + "hash": "4kA5SO+C0rpfGsH96/61CwnUxJU+7tPUWzj7BXx8BtM=" } }, "is_incremental": false, @@ -3836,7 +3836,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html", - "hash": "tUFR0npHGOYXJUgw0PmMZjZN2bkjD2hRd7avDBbdx78=" + "hash": "hiwvGRlo+VnsZzDk/iPKawv02GLB9FxicStfMklQl5k=" } }, "is_incremental": false, @@ -3848,7 +3848,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html", - "hash": "94PeemHWaAahRA0Qevwv0SkhsuPJx3a5mgSEAeo/w14=" + "hash": "upk0vRcA68qDt67bux49OzVIvoqu5sagvyeIAPYjwFk=" } }, "is_incremental": false, @@ -3860,7 +3860,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html", - "hash": "MnTZlpWlhcgVSf1/Ob0O40+gAiJ4tX9XjmOAyHhJ4JA=" + "hash": "MxtLkw7XFCY082g+392PW+dyJ6r7NOUoampzF2GV32Y=" } }, "is_incremental": false, @@ -3872,7 +3872,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html", - "hash": "7kVraGdFCtYn56EGQ2Rqry6zPjBwp7yEHMqIwR4N7W0=" + "hash": "C6QxapFUJvvvhuiXszpJf2mHDQKOFmq5lauA8QQELWA=" } }, "is_incremental": false, @@ -3884,7 +3884,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Position.html", - "hash": "Lz4Er8CdBfozLBF0DEH7fzdhKILPG2Asa1rES/PbKMs=" + "hash": "BkguBC8AuZ/8xcvLAur7mlY0b9Hc1+mCpGgbY5WMmJ4=" } }, "is_incremental": false, @@ -3896,7 +3896,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html", - "hash": "Ce0Orwk5PfKJO3hHcNqP2uC67eYTje28ZgGwxgOv8cE=" + "hash": "WF3sTw0MBgXVisVwosC3tBYpU8MlOUclF2C4Q9oEd2k=" } }, "is_incremental": false, @@ -3920,7 +3920,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html", - "hash": "ZLJZF5ppWbuOMPylnTuJK6g/r3qprFmmVx7nR31HMco=" + "hash": "eoJk3VZY8tLOUoXHqQK4tc4zg4VFgyePfWDtO/RgtOQ=" } }, "is_incremental": false, @@ -3932,7 +3932,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html", - "hash": "kQXt74JHYwumtW/dBiS/9/B1gcDm95o4fvbVrN0rAqo=" + "hash": "fdKZ4+vn63rSh76YvKED2IuQfE9WZg8ADavmOTeKWC4=" } }, "is_incremental": false, @@ -3944,7 +3944,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html", - "hash": "Xf5by8DzsGkBonHdmHyH7h4kxs2c3VNEDugD66l/lB0=" + "hash": "vS4WD0cuC8GqTBiu03rYyWmFxz4aUSpbdTipjlnddVc=" } }, "is_incremental": false, @@ -3956,7 +3956,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html", - "hash": "LCT8eLWksamhxp/5V02qM9hIgZddVfuoC7ZjSlhnr10=" + "hash": "diebIJbobW/xXP5ydo4NMx8PniAKBL+PJDhGkB/Krlw=" } }, "is_incremental": false, @@ -3968,7 +3968,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html", - "hash": "FfNVnoatl4OqT7lP4N5Au11zy02hkOKvSv6pUpDvCV0=" + "hash": "uaxDDZDvI8OvmrtjLFimu94wnzncAuTOzXgg8UVtpzE=" } }, "is_incremental": false, @@ -3980,7 +3980,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html", - "hash": "m4+/5TLpwLRI7qgAmSc3TVxLbwEDmUpxS5JlQ6+GRWI=" + "hash": "qmZwSEF0mEjmzEAx6dPKhhtmLZprvbzlJvZZgdphP68=" } }, "is_incremental": false, @@ -3992,7 +3992,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html", - "hash": "zsT0eEEeHZqhloepKFYMR5rq3eLGJ11K4VdHUujEZwQ=" + "hash": "Yyupdb+eAT6Vjagb3G6GJzcvYDHCtWx5JW12GUDsl74=" } }, "is_incremental": false, @@ -4004,7 +4004,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html", - "hash": "2ZWoiN8Pm4ei6L0Cam4QGBjocr9sIHnZxV9ekyXLltk=" + "hash": "tm+yLtgjF4220+D3HV7n5JIGbKDrcCFKZbzvlj1Ynng=" } }, "is_incremental": false, @@ -4028,7 +4028,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html", - "hash": "1V0/k99ZMSyJsXk/CLEuJfON1FQ+wJpFe8Szisw3GTA=" + "hash": "OgukhqDguENylCFy6gfUMDc8yPzYzcdsy1gQipZIavc=" } }, "is_incremental": false, @@ -4040,7 +4040,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html", - "hash": "URLRoeu9GYqcgZW0NLFws/hIKZ/h39ifPkqSjk57Y1c=" + "hash": "r2+p5SY3F3OePES+SCxe/IE790Ix/CWS0JQc2wSqGy0=" } }, "is_incremental": false, @@ -4052,7 +4052,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html", - "hash": "JKqEozGRpPFd0wSv6p6WO7dpb7Dyr/Ha+u0IAwDpDww=" + "hash": "orh8/WWngReebJL6kwAd75Yui9POrMPcFNHC6hH/leM=" } }, "is_incremental": false, @@ -4076,7 +4076,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html", - "hash": "2d3MsToQFj9PO6gaN+x5swvKdN0mVf8tCZ/iETb7324=" + "hash": "PXcM8UHwIICGNmzDuWVAIZ3+TUP/bM9Jb/yVoFJdcB0=" } }, "is_incremental": false, @@ -4088,7 +4088,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.NormalizedString.html", - "hash": "TFgjajXIWlCTAlga6Rj6nDb1KoI/15W4xXIJMWwGDQI=" + "hash": "ryhgpjR3srGbvNzn4FFSSD76lV0B98Gq+tzh4qgSa+Y=" } }, "is_incremental": false, @@ -4100,7 +4100,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ParsedResume.html", - "hash": "LVkjYRexRncmmJSpAUPv/pdaVYI6H2+4yQw39x7xzmQ=" + "hash": "qXkGqyV4cNK8CBbwXULFrbHQBSqFMlFfgfX03NlFC7k=" } }, "is_incremental": false, @@ -4112,7 +4112,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html", - "hash": "BSpnNydVBcoGh7/nqFDovx+uLuQsN7/s0fosXeRa2vg=" + "hash": "d57YQI4/1NhnGGWrON/uj1uSxeYUMhjT37JZ8L7k05Q=" } }, "is_incremental": false, @@ -4124,7 +4124,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Salary.html", - "hash": "0qp/rHipv90kNv+CgJBPaQAfi28ALOjJHGX3E93VjHA=" + "hash": "ldym+QESj/dNkoOjujWokmovfRdL4YG6IoGL4QCTgBY=" } }, "is_incremental": false, @@ -4136,7 +4136,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html", - "hash": "WrqN5DKVx2wXcTJzq4kPoVfysNLTW36GIltADj0dBoE=" + "hash": "mNLDqD8ZoqOnq7CaCig9XzvOs6FZ+Q+crhRNx/Io2AA=" } }, "is_incremental": false, @@ -4148,7 +4148,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html", - "hash": "y7xNgAcaI7F8dZHZts3mDYJZfvJQYOfoX5/rCE1kgdI=" + "hash": "iVVmKf3LoGlUk4R9CTOPnchSEKp6b+lzB0pCctBN/8M=" } }, "is_incremental": false, @@ -4160,7 +4160,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html", - "hash": "Lw2TckpK/JnH/XobJ/bawTUBq36b7F75rPkNbl7KRjM=" + "hash": "d9fvKZjHjgm5QxzI0CNK46Uq9NyUUZOQqla66yeP7xc=" } }, "is_incremental": false, @@ -4172,7 +4172,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html", - "hash": "RnLzpgPKqGG8sdyN2/dBV4R67Zd5KUFxe2pTuvv1AIc=" + "hash": "2WaDdPMOlPMVc7cB8feIMobXZD07pql6nhbZ/qNrX8c=" } }, "is_incremental": false, @@ -4184,7 +4184,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html", - "hash": "WaebYrTqVfLFq8TvBdrSY+ERk4dpWla/DU4kTKDKIBY=" + "hash": "KTGJH6SJQT4qfnA+Jmt4pF5G4W6A45Q6PITULc+d27k=" } }, "is_incremental": false, @@ -4196,7 +4196,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html", - "hash": "VnE4rIFLnNxHj8pkqHkQg+Ohi9fpXNjfbRHukjmqijI=" + "hash": "3xMXu0TXu/q0IHtwZ+t6XCOUk7LHVhR54hfJDmtYYCQ=" } }, "is_incremental": false, @@ -4208,7 +4208,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html", - "hash": "a7WQHporNIX4B9Q3ytu0F0ibxAlWXQ2/V6t1WM3Ry4s=" + "hash": "GWxQq1Bs5Ihc6T6dZoNsqKc+P+8UZBSRR68DzpvROLs=" } }, "is_incremental": false, @@ -4220,7 +4220,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html", - "hash": "ipWjQSEaf6zLUnd0VLNUbHlWyBQ4vk5BmP+QjKhOFCw=" + "hash": "ieqCYgRoFCzPol2xlj/r2VPItNyD7sde++gNl0dvY4E=" } }, "is_incremental": false, @@ -4232,7 +4232,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html", - "hash": "G9+80j9zTdFu0GIU8SPBaxjA5WoMh2IFiEiRHrMOHUs=" + "hash": "Q9Cm2eh4YoK0d6WJIukjXzG7S6NKo0mmnb223vaeMf4=" } }, "is_incremental": false, @@ -4256,7 +4256,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html", - "hash": "EDst3tJhxkkxMd6VCEIYm7xaB5ZZEIhbKfGVv1yN6PE=" + "hash": "Chi/bGjvoM5MUlgX3B/riYc23d8p38d9XZ22KCyWw9Y=" } }, "is_incremental": false, @@ -4268,7 +4268,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html", - "hash": "Yhx6mRGCJBwnQSt1D4t9lpnGDagERb3/gliK41r/t/4=" + "hash": "T69TTMXQ38St/B2c0ULlCi2hSKMvvCbM0FC69WHXeok=" } }, "is_incremental": false, @@ -4292,7 +4292,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html", - "hash": "dLhz0ASdW3xEyLVj8VVP5JSLe2KcQNpDP7nZHNP9RRE=" + "hash": "Gp2cWXT1jfy8X0zr1HxVwb0zYD7KjFK6B3+5rfMMpX8=" } }, "is_incremental": false, @@ -4304,7 +4304,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html", - "hash": "OSaLceay5FxutupFeRGwOIOkEUsyAK+kcHGu/bSr8aE=" + "hash": "sin38mHHrnbJcrl3FtvR8NigjMAwjMcFSYfK2WrjXNE=" } }, "is_incremental": false, @@ -4316,7 +4316,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html", - "hash": "JO+dfS38fvFBzqpHo2EUkpGxu6c3ESYLw85PtCuoq/k=" + "hash": "N8KSvjeHKaq6zROCPxiaJJE+fjlxJv40qswR4wRZwTg=" } }, "is_incremental": false, @@ -4328,7 +4328,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html", - "hash": "hJBIqjTJ4f8DJHXvP0XN5Q6n1aJY3GvKagF6I16Sxww=" + "hash": "Lzg9N/E7X468YEa5K3skNxBddwjcwmkXs7Qroaopnxc=" } }, "is_incremental": false, @@ -4340,7 +4340,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html", - "hash": "fjuhtFkUQbTbDnldFYYvIBfJX0OneLs1s/iEud2tTvQ=" + "hash": "4Dh6gSU8/HJfVR74jbjugXGfeK5xuRrOwx4zyWnJ2Vs=" } }, "is_incremental": false, @@ -4352,7 +4352,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html", - "hash": "YdMWXkM5Uc16pEc4N66vyGRjXecGu4xRraSL1lOwW9Q=" + "hash": "dMJhiz/y9+t29p294hAsd9IlUmtbtbQUYJxoM4t7aPI=" } }, "is_incremental": false, @@ -4364,7 +4364,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.RawSkill.html", - "hash": "H1OGiwYQXYeEQ9WiR11NDuyZAOvJdw+BKOCrvW2RztY=" + "hash": "FhijFxzWVqajW9DlqaUCs9DUIx9nGnqeyHYOfvcn7TY=" } }, "is_incremental": false, @@ -4376,7 +4376,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.Skill.html", - "hash": "OKKQS8sQI18EV9xYCTgv4Eh7/LmmHTqfhUsS6gLCjrA=" + "hash": "+J3cAv4hyZLuo5J2UjQIXwS3DoPN9xFnAKuDTA0iopU=" } }, "is_incremental": false, @@ -4388,7 +4388,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html", - "hash": "KaZQi/lAmn2gJxb1LlP8M8HjMGg/OiN9kgX8Ah8HhoU=" + "hash": "MJzxkp/l7F4eAswcm1YioPJmPNmx0FM/7P2sOIZwz8g=" } }, "is_incremental": false, @@ -4400,7 +4400,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.Taxonomy.html", - "hash": "PlSN9eYoFJYuoCplSziUjZt3rv1EfgE/K3IWC+BwTLs=" + "hash": "s4/lHqRpl3ECYzpFtiK6b5VhDRVn6BuI9fvxeoNV4fY=" } }, "is_incremental": false, @@ -4424,7 +4424,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.TxDate.html", - "hash": "5MV63AQmLhdC7Qe++ohQJKlWpmLcsCBVgRBbuSjGCMY=" + "hash": "FIHUbzht6VLKCfj0sydGNj56XUSIqlCWR5gFRsTC6wo=" } }, "is_incremental": false, @@ -4436,7 +4436,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.TxPrimitive-1.html", - "hash": "f49mH4Ug0Zn2exf/lJMDowDGEa6EcODbXwA83OCm6qU=" + "hash": "8Gs1pFHyeSiezs3aazHUkx1pz0cAbVix65aLbPTVzVE=" } }, "is_incremental": false, @@ -4460,7 +4460,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxClient.html", - "hash": "pJCGL08HiA26G0Ga6/vqU87Cht0WiB/bUWBN3XxhhWo=" + "hash": "VMZS4J0Av3f3xP0AUbrwCOcXazPhrA541uaJCG/neQo=" } }, "is_incremental": false, @@ -4472,7 +4472,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxClientSettings.html", - "hash": "NVR/0aLDrRvwub1kD3Wn49lvr/ZY887EYC6fcwNINTg=" + "hash": "iTQ2BECTFBUKQRUyTpw7vh5w/aP/9DkNhb2Vwi9VTow=" } }, "is_incremental": false, @@ -4484,7 +4484,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxException.html", - "hash": "Qk4vBPR1L81wUNh9EDMFN5h9U/k/9IIkqdzGepdfyUA=" + "hash": "bpbCJaNn7h1dUH7bHDd47rqsSRwHLEk+1FQyaoP/ulU=" } }, "is_incremental": false, @@ -4496,7 +4496,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxGeocodeJobException.html", - "hash": "mheSX79phhEuw5/uI5pBJDLeVLuEtHhp8mhOwCHbkCg=" + "hash": "hAHVmnu2hp571GPxUZWWWo9oK/hQRphjbcr8DUnhzOM=" } }, "is_incremental": false, @@ -4508,7 +4508,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxGeocodeResumeException.html", - "hash": "oFOQ38qQ4c2HvdV+UTrlH3gEaAfqZIV2gDCzmQrvf8Y=" + "hash": "yyoAXCtMvCQmk5r/JmxPpuyYkN+3X8/THyoDz2JTNbg=" } }, "is_incremental": false, @@ -4520,7 +4520,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxIndexJobException.html", - "hash": "/pyOnTePUYGep9MHWwCMCEPb9ppdIUn4KEgcoxb6qaM=" + "hash": "wr9yGHPDCwNh4d7KEhI7PKpFKtsF607EtyPz7L6WV/A=" } }, "is_incremental": false, @@ -4532,7 +4532,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxIndexResumeException.html", - "hash": "AladOMq2/U7qigeCSZSq8m22ANUajeZZJUI/nPAauLI=" + "hash": "4Q4/VBFJZFAnOhVZRoiDS6Gszj1liCHeuYKr/Xl5j3Q=" } }, "is_incremental": false, @@ -4544,7 +4544,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html", - "hash": "QT9o9jsGSf09x4t45LZOr3J37gTu7TNo6mJJ7wgj39k=" + "hash": "lUS3gI4ZBRYttkVjaZKP4OYzjCLiSbUdfhn2f60gPOI=" } }, "is_incremental": false, @@ -4556,7 +4556,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html", - "hash": "K/Grb1iapuPej7ZllkDGWscAnl7Payc0EINeKkCJLJc=" + "hash": "5T2qzUrunfdmFIZO98Po1/fLmYq1YB9KzCCIYsvqaXc=" } }, "is_incremental": false, @@ -4568,7 +4568,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxUsableJobException.html", - "hash": "vduNYzKVdiQsCaL5NhuPh+rsZBIoWdf3UkM1nEBvFk8=" + "hash": "7vNAkAfvplb2/ICT8twAAGLXueb9X14Y12bhnooh/Ro=" } }, "is_incremental": false, @@ -4580,7 +4580,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxUsableResumeException.html", - "hash": "N/jnVPgrDgJ4quiXWjNnmM7n9L4rtZiv7uiS6B1C/6k=" + "hash": "H65BkWaOFnQ+vEmtUj1tbmhpTe0fw+T4Mjvt6M4EYMU=" } }, "is_incremental": false, @@ -4604,7 +4604,7 @@ "output": { ".html": { "relative_path": "sdk/index.html", - "hash": "y2bH4IDC2IQDZpTJxqivZizg/9lzG5+9hx5FnrU/kR4=" + "hash": "AoZ4l44BjKnNVTCMmfZqOxgdei2I+f9N6haBtaVS4kQ=" } }, "is_incremental": false, diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html index 61c61a7e..058b64d8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html index c26a0b15..64de935d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html @@ -126,10 +126,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJobs(TxClient, ParseOptions, BatchParsingRules, String, SearchOption, Func<JobBatchSuccessResult, Task>, Func<JobBatchPartialSuccessResult, Task>, Func<BatchErrorResult, Task>, Func<String, String>)

@@ -239,10 +239,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResumes(TxClient, ParseOptions, BatchParsingRules, String, SearchOption, Func<ResumeBatchSuccessResult, Task>, Func<ResumeBatchPartialSuccessResult, Task>, Func<BatchErrorResult, Task>, Func<String, String>)

@@ -358,10 +358,10 @@
Exceptions
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html index 703d25b1..82213f4b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

BatchParsingRules(Int32, IEnumerable<String>, IEnumerable<String>, Func<String, Boolean>)

@@ -185,10 +185,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DefaultDisallowedFileTypes

The default file types that will result in invalid parse transactions (and cost unnecessary credits)

@@ -217,10 +217,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AllowedFileTypes

@@ -248,10 +248,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DisallowedFileTypes

@@ -279,10 +279,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxBatchSize

@@ -311,10 +311,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShouldProcessFile

@@ -348,10 +348,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html index 6dc2a63e..53d7dae6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

File

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html index b0ce01e1..2c214ead 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html index 4a82fc8c..597776c7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -171,10 +171,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html index afd5ecc8..53132dac 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html index 099e4c9c..4ce4afe6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -171,10 +171,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html b/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html index b93bfad0..e5ff38c7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html @@ -172,10 +172,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.DataCenter.html b/docs/site-/sdk/Textkernel.Tx.DataCenter.html index 30c0dbe6..47283864 100644 --- a/docs/site-/sdk/Textkernel.Tx.DataCenter.html +++ b/docs/site-/sdk/Textkernel.Tx.DataCenter.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DataCenter(String)

@@ -162,10 +162,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

AU

Represents the AU datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -192,10 +192,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EU

Represents the EU datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -222,10 +222,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

US

Represents the US datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -258,10 +258,10 @@
Field Value
diff --git a/docs/site-/sdk/Textkernel.Tx.ITxClient.html b/docs/site-/sdk/Textkernel.Tx.ITxClient.html index c721a31a..08ae8182 100644 --- a/docs/site-/sdk/Textkernel.Tx.ITxClient.html +++ b/docs/site-/sdk/Textkernel.Tx.ITxClient.html @@ -97,10 +97,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteProfession(String, IEnumerable<String>, String, Int32)

@@ -187,10 +187,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkill(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -283,10 +283,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkillV2(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -379,10 +379,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedJobWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -480,10 +480,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedResumeWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -581,10 +581,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessions(Int32, Int32, String)

@@ -664,10 +664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessionsV2(Int32, Int32, String)

@@ -747,10 +747,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(Int32, String, SkillScore[])

@@ -828,10 +828,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(ParsedResume, Int32, String, Boolean)

@@ -913,10 +913,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(Int32, String, SkillScore[])

@@ -994,10 +994,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean)

@@ -1079,10 +1079,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateIndex(IndexType, String)

@@ -1151,10 +1151,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteDocument(String, String)

@@ -1222,10 +1222,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteIndex(String)

@@ -1287,10 +1287,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteMultipleDocuments(String, IEnumerable<String>)

@@ -1358,10 +1358,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkills(String, String, String, Single)

@@ -1446,10 +1446,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkillsV2(String, String, String, Single)

@@ -1534,10 +1534,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResume(FormatResumeRequest)

@@ -1600,10 +1600,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplate(FormatResumeWithTemplateRequest)

@@ -1666,10 +1666,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateJobDescription(GenerateJobRequest)

@@ -1731,10 +1731,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, Address, GeocodeCredentials)

@@ -1809,10 +1809,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, GeocodeCredentials)

@@ -1881,10 +1881,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, Address, GeocodeCredentials)

@@ -1959,10 +1959,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, GeocodeCredentials)

@@ -2031,10 +2031,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2121,10 +2121,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2205,10 +2205,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2302,10 +2302,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2393,10 +2393,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2483,10 +2483,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2567,10 +2567,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2664,10 +2664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2755,10 +2755,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAccountInfo()

@@ -2802,10 +2802,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAllIndexes()

@@ -2849,10 +2849,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetJob(String, String)

@@ -2920,10 +2920,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomy(String, TaxonomyFormat)

@@ -2995,10 +2995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomyMetadata()

@@ -3043,10 +3043,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetResume(String, String)

@@ -3114,10 +3114,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomy(TaxonomyFormat)

@@ -3181,10 +3181,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadata()

@@ -3229,10 +3229,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadataV2()

@@ -3277,10 +3277,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyV2(TaxonomyFormat)

@@ -3344,10 +3344,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

@@ -3428,10 +3428,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedResume, String, String, IEnumerable<String>)

@@ -3512,10 +3512,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexJobInfo>, String)

@@ -3583,10 +3583,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexResumeInfo>, String)

@@ -3654,10 +3654,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupProfessions(IEnumerable<Int32>, String)

@@ -3729,10 +3729,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkills(IEnumerable<String>, String)

@@ -3802,10 +3802,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkillsV2(IEnumerable<String>, String)

@@ -3875,10 +3875,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(String, String, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3977,10 +3977,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedJob, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4073,10 +4073,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedResume, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4169,10 +4169,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeProfessions(IEnumerable<String>, String, String)

@@ -4251,10 +4251,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkills(IEnumerable<String>, String, String)

@@ -4333,10 +4333,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJob(ParseRequest)

@@ -4414,10 +4414,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResume(ParseRequest)

@@ -4495,10 +4495,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Search(IEnumerable<String>, FilterCriteria, SearchMatchSettings, PaginationSettings)

@@ -4578,10 +4578,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4654,10 +4654,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScoreV2(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4730,10 +4730,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -4815,10 +4815,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

@@ -4900,10 +4900,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

@@ -4991,10 +4991,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5076,10 +5076,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String)

@@ -5161,10 +5161,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5252,10 +5252,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

@@ -5329,10 +5329,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

@@ -5408,10 +5408,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

@@ -5487,10 +5487,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

@@ -5566,10 +5566,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(IEnumerable<Int32>, Int32, String, IEnumerable<String>)

@@ -5651,10 +5651,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -5736,10 +5736,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable<String>)

@@ -5821,10 +5821,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

@@ -5903,10 +5903,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedJob, Int32, String)

@@ -5984,10 +5984,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

@@ -6071,10 +6071,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(IEnumerable<SkillScore>, Int32, String, IEnumerable<String>)

@@ -6159,10 +6159,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -6246,10 +6246,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable<String>)

@@ -6339,10 +6339,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateJobUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6422,10 +6422,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateResumeUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6511,10 +6511,10 @@
Exceptions
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html index 4851df18..7138de34 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html index 7b28113d..ca198e65 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AccountId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CreditsRemaining

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CreditsUsed

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExpirationDate

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IPAddress

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumConcurrentRequests

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html index 27639c1a..ddfb8591 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html @@ -184,10 +184,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Info

@@ -215,10 +215,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -256,10 +256,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html index 695a81d9..76e303fd 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApiVersion

@@ -165,10 +165,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CustomerDetails

@@ -196,10 +196,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EngineVersion

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TotalElapsedMilliseconds

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionCost

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionId

@@ -327,10 +327,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html index d8d8a7f9..69be4a36 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html index 25fea7f7..61af1c72 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SourceJob

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html index a9c89c17..44148f22 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Settings

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetJobs

@@ -229,10 +229,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetResumes

@@ -267,10 +267,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html index 4e597409..22a7b86f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html index dd2a08fe..25be9274 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html @@ -147,10 +147,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html index 144f93d0..e9a2962b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -291,10 +291,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -340,10 +340,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html index 18222b47..752c2fd1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SourceResume

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html index bb53389c..a1a65c68 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -134,10 +134,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html index 0ae245a4..2261ef59 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -202,10 +202,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html index ff4eb593..4f138ea4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -202,10 +202,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html index 087d5996..d04817fe 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prefix

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html index 5d7102c4..7ff77ac5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html index 6ab6461b..3b89d1d2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionACodeId

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionBCodeId

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html index 0196265a..386ef8ac 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeId

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html index fe272164..809412e5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsA

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsB

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html index ac04416f..331767ee 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReturnMissingSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html index f63a820a..bf25742c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeIds

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html index 2b908e67..0840c7e1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html index e64ab942..f1a1dc06 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html index 795ae9f0..cdfa2ce8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CommonSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExclusiveSkillsByProfession

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html index 53208fda..a3558e3e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html index c5c908c7..5b317db0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CommonSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

InputSkillsNotInProfession

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MissingSkillsFoundInProfession

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html index 3b285720..2b1c12e5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsFoundOnlyInThisProfession

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html index c190df87..9c46e810 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html index 97c28432..0e679a65 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html index 92d1c5ef..3ee8dfce 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html index 3cf5294b..96fa7fcc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html index 527b03ea..85618eec 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedProfessions

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Warnings

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html index 3ada16c8..f54a2cc2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsWithoutProfessionRelation

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html index 93772eb8..ba56d71e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html index 41af926b..aa614e76 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedSkills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html index a46415c6..70531817 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MissingSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html index c17f2f6c..78fdc494 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html index 8f4b8f73..7721002e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ONET

@@ -164,10 +164,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html index 25ba2970..dafa2c8d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeIds

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html index cf6a593c..c7855231 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html index ef265b3d..e5a9fcc5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html index 92de7af9..e67a5025 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html index 917de68e..3051d3d1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html index da32dc39..02c73c4d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html index 2fba6513..879f358d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html index b59ad86c..7029e1cc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html index 4acb3106..f48f87aa 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html index 840cc370..c5aded60 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html index 3465557e..83ebf10f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Threshold

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html index d5ecfc9e..f861d0bb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillIds

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html index a9dc7918..0628c29e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html index 540c3ff1..eb5f33b8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -176,10 +176,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html index 3bdf70b5..63b98f11 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html index 904e74f7..32de1bd0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html index 990281cf..e195b3d9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html index 92c26386..1ae43442 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Truncated

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html index 5b7f88c3..ea050e48 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html index 19565b49..c6adb1ee 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html index 35c00752..e26dd17a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html index 899f0b79..ddc78815 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html index e7dc5153..464a53b7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html index cb43911f..84ad4295 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html index 6d85fc8a..7bf8ac5e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html index c12d5f7d..0ac1c279 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CompanyName

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Email

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phone

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Placement

@@ -350,10 +350,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html index dedebfe1..4f1a7105 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html index 24be4e2a..f0e6fce5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html index 0b0e50d3..c410139e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CompanyInfo

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Metadata

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputType

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WorkHistory

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html index dbba37d5..6f9bc713 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeRequest(ParsedResume, ResumeType)

@@ -169,10 +169,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Options

@@ -200,10 +200,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -238,10 +238,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html index 4d79e649..cfd8b991 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html index dd89b352..93be0fea 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentAsBase64String

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html index c4913005..5893824a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplateRequest(ParsedResume, Byte[], ResumeType)

@@ -172,10 +172,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplateRequest(ParsedResume, String, ResumeType)

@@ -220,10 +220,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomData

@@ -256,10 +256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputType

@@ -288,10 +288,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -319,10 +319,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Template

@@ -359,10 +359,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html index f27f0b0c..2141c41c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

HideCandidateSummary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HideTopSkills

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html index 26c7dfa7..300f944f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo()

@@ -142,10 +142,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo(Byte[], Int32, Int32)

@@ -188,10 +188,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo(String, Int32, Int32)

@@ -236,10 +236,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -267,10 +267,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -298,10 +298,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -335,10 +335,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html index 2f4fbeb9..a3d09063 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html index bd3e270f..d903e618 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerNames

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxYearsOfWorkHistory

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumPositions

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html index 93f9a7c8..a912d8f8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AddressLine

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html index 4b1a0ca2..1d9f9996 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html index e28503a5..7952c314 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html index 5984a52c..f70fb3d9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html index 41063806..ce354d50 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexIfGeocodeFails

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingOptions

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html index d9f121b1..e52ac3bb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeResponse

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingResponse

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html index 080c0f5c..e46aa793 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html index 6921a3a5..a905887b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html index bc5d6626..a9ece7c3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html index 0b1ff9e9..ec573590 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Provider

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProviderKey

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html index 580ee9dd..cb7b8b4a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html index d2739c86..c8724d15 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html index e8f4d2fb..c8d63400 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html index 8a652fed..1eca62ba 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IncludeGeocoding

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html index 128d096f..2087e73f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeoCoordinates

@@ -170,10 +170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalAddress

@@ -209,10 +209,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html index a171c749..2e3dc131 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html index 22fa14e7..6710c049 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html index 32657779..294b2f5c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html index 6f6b33aa..64a5dbb4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html index 35edb0a0..92a24b6c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Info

@@ -134,10 +134,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html index acfad38a..78762d56 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexType

@@ -164,10 +164,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html index 6b7ba924..cde2a371 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html index 9b419dca..cc4732e9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html index b036ee19..8744050f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html index 9a2a1af0..a2491ce4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html index f19e3ff6..efc525de 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html index 82b0b597..da943f5d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html index d4f8558d..d1df21e0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html index e4ad4b51..e4efff8f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html index d110952c..fbf39ad9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html index 49e199b5..6dd466d3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html index 2f1cb7de..aefc1f49 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html index fecd7bcc..32153acc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html index 6ea2284d..48ae18a5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -162,10 +162,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -199,10 +199,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html index 90f17b43..23b5e9d7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html index 5c145e90..6f01b82b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html index 6d44bab9..27da4851 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Jobs

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html index 211940d7..5f8d0f45 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Resumes

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html index e5ceabf5..529f41f9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html index a11a8255..5f656fe0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html index ed12035c..17de0dc8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html index 654343e8..5e7622cd 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Method

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html index 84b509bf..49d10da0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html index 955a0d70..a3b799a8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html index e606638c..e0401870 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Organization

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Tone

@@ -319,10 +319,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html index d54a86da..e47fcc9b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html index fdf1867c..3dcd3505 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobDescription

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html index 2428fa51..294bff3f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Priority

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html index 8e2c1426..e4f9bb67 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html index 287d7964..a2aa13aa 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html index d5bcd27e..d1a9d958 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html index 61dec3e7..a599504f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html index 980c2c49..cb16d9da 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedSkills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html index 2d0eaa6b..11309e60 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html @@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AppliedCategoryWeights

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedCategoryWeights

@@ -236,10 +236,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html index 28f5475b..750f1899 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentCount

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Matches

@@ -205,10 +205,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TotalCount

@@ -242,10 +242,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html index 892527ef..347b5295 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CertificationsHasData

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EducationHasData

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveTypeHasData

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Industries

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndustriesHasData

@@ -374,10 +374,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitlesHasData

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesHasData

@@ -498,10 +498,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -529,10 +529,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevelHasData

@@ -560,10 +560,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -591,10 +591,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsHasData

@@ -628,10 +628,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html index dce40f20..f8dfe04f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html index ffb3c287..e07b950a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html index 5d409b58..55fa6bd0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html @@ -147,10 +147,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html index 6398f24f..f2e8f0be 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html index 252fdb88..2d56cff4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html index 39c9178c..2685f51f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AverageMonthsPerEmployer

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentManagementLevel

@@ -226,10 +226,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DegreeNames

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DegreeTypes

@@ -310,10 +310,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentIds

@@ -341,10 +341,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLanguages

@@ -372,10 +372,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Employers

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployersMustAllBeCurrentEmployer

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HasPatents

@@ -509,10 +509,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HasSecurityCredentials

@@ -540,10 +540,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsAuthor

@@ -571,10 +571,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrentStudent

@@ -602,10 +602,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsMilitary

@@ -633,10 +633,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsPublicSpeaker

@@ -664,10 +664,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsRecentGraduate

@@ -695,10 +695,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsTopStudent

@@ -726,10 +726,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobPredictiveIndex

@@ -758,10 +758,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -789,10 +789,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesKnown

@@ -821,10 +821,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesKnownMustAllExist

@@ -853,10 +853,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LocationCriteria

@@ -884,10 +884,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -915,10 +915,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsManagementExperience

@@ -946,10 +946,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RevisionDateRange

@@ -977,10 +977,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolNames

@@ -1010,10 +1010,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SearchExpression

@@ -1042,10 +1042,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SecurityCredentials

@@ -1075,10 +1075,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -1106,10 +1106,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsMustAllExist

@@ -1138,10 +1138,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -1170,10 +1170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -1202,10 +1202,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTagsMustAllExist

@@ -1240,10 +1240,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html index ef1c3c94..09a056cc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeoPoint

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html index c873aedc..90020391 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html index 81d8bf2c..3672d680 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Title

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html index 389d8a0b..a7524654 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Distance

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceUnit

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeProvider

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeProviderKey

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Locations

@@ -291,10 +291,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html index 23bc78f9..b8ba1cca 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html @@ -147,10 +147,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html index 70335ac5..d900a015 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Take

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html index fb69b080..d9c29237 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skip

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Take

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html index 7150944e..cf40c691 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html index 594da792..4c41f784 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FilterCriteria

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexIdsToSearchInto

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Settings

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html index a0555eae..7683e08a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeJobTitles

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeJobTitlesLanguage

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PositionTitlesMustHaveAnExactMatch

@@ -235,10 +235,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html index 993a6c90..9cd3ebec 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html @@ -133,10 +133,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html index 9a7eabb7..5e2addaf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExperienceLevel

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillName

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html index 83eac3ba..1e49ac7e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html @@ -132,10 +132,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Evidence

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UnweightedScore

@@ -200,10 +200,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html index 49c9aa42..5757eb8a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Fact

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html index bba12f27..52d25977 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Primary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Secondary

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html index 8809571f..4dcce6d4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ActualEducation

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Comparison

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExpectedEducation

@@ -235,10 +235,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html index d997b6ee..23ceadf2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html index 86953c62..b16b9ba0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawTerm

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

VariationOf

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html index e1b7ba0d..dbb84b19 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skill

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html index b8728b8a..6a1b8a05 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -128,10 +128,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -272,10 +272,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html index aea129b1..e3090ec8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html index 48be3a9c..ca335323 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Actual

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

AmountOfExperienceMatches

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Desired

@@ -232,10 +232,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html index 9c5d7204..a3a81e1d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -233,10 +233,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -267,10 +267,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -316,10 +316,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html index c418b49c..1a04550f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html index 227710fa..fb0bfc30 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html index ceff6c2f..a7162603 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html index b6a29e51..692cc3e9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ActualTaxonomies

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DesiredTaxonomies

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html index 648450ee..ed90f3d7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Subtaxonomy

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomy

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html index 5971f317..371a0787 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Matched

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html index cb8151e4..07a609e5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PaginationSettings

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html index 104ff051..a3b98ff6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html index e2e24eb0..3a6ffbb5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html @@ -140,10 +140,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html index 33f585fb..79518008 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Result

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html index 3b81b03a..8e3bc05a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SovScoreName

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Style

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Username

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html index 48590230..960171ae 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html @@ -138,10 +138,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Result

@@ -175,10 +175,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html index 8c4f0939..5427fea4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html index a8f4ccda..fdd35735 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html index 24efc88e..81b3e8ef 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html @@ -145,10 +145,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MatchDetails

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UIOptions

@@ -213,10 +213,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html index a43c2b0d..bcf112f8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html @@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SaasRequest

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html index 677cb08d..2d23bc60 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExpiresIn

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

URL

@@ -202,10 +202,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html index 6f735a89..cd1c9b81 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Documents

@@ -186,10 +186,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html index 1cddeb80..104231d3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JsAction

@@ -167,10 +167,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UrlAction

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html index 1cf716b7..3d8a35a6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html index e00027d8..4b966d64 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html @@ -146,10 +146,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomInfo

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Username

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html index 9826af06..bc9447cc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Data

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Target

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetOrigin

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html index 1164e1a9..96938ab0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FilterCriteria

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -217,10 +217,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html index 7e387bf1..e9502617 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Client

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Server

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html index 6884764c..d3d71929 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -167,10 +167,10 @@
Overrides
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkText

@@ -206,10 +206,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html index a5a20a29..77483c90 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomInfo

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Url

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html index 000d9e1e..dc23410a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -176,10 +176,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html index 92c90b1a..c2f62ac6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobBoard

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobBoardDocumentId

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -242,10 +242,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SourceDocument

@@ -279,10 +279,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html index 980df8ed..7c1502c0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Target

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Url

@@ -200,10 +200,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html index 3bd46cfc..b17b0a5d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkText

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html index 618df07a..ffd7017a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Client

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OnUpdate

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Server

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Sourcing

@@ -267,10 +267,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html index 63bc9c5d..d4b4b97e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -217,10 +217,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html index cd0a2223..7c6f5e37 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AppliedCategoryWeights

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HtmlDocument

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SourceDocumentType

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html index 6e9341bd..29969a6b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseOptions

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UIOptions

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html index a63dbf14..968f3427 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FontFamily

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FontUrl

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HeaderColor

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PrimaryColor

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SquareCorners

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html index 8e02cb88..e3635c30 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html @@ -137,10 +137,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html index 232ae212..50d6d407 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html @@ -144,10 +144,10 @@
S diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html index 69956a29..31abb6cc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html @@ -137,10 +137,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html index c2c2be53..5a77cfa4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html @@ -144,10 +144,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html index 0a6d5f2f..f9feca18 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html @@ -144,10 +144,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html index 6c584d4a..695ca71c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html @@ -137,10 +137,10 @@
Synta diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html index 04d87cfb..a0213c3d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html @@ -144,10 +144,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html index 65beb69a..48f0923a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html @@ -144,10 +144,10 @@
Syntax diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html index 9c83c5d2..c715d885 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExecuteImmediately

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Hooks

@@ -200,10 +200,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowBanner

@@ -231,10 +231,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowDetailsButton

@@ -262,10 +262,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFilterCriteria

@@ -293,10 +293,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFindSimilar

@@ -324,10 +324,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowJobBoards

@@ -356,10 +356,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowSavedSearches

@@ -387,10 +387,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowWebSourcing

@@ -418,10 +418,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowWeights

@@ -449,10 +449,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsAutoCompleteCustomSkillsList

@@ -480,10 +480,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTagsPicklists

@@ -518,10 +518,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html index 9c6b38b2..12a1b118 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html @@ -144,10 +144,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html index bc84475e..b734640b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html index 00eaf74a..ec9ad6f5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Label

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Options

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html index e1874626..1b052b72 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ConversionMetadata

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Conversions

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParsingMetadata

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParsingResponse

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionNormalizationResponse

@@ -296,10 +296,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html index 93c14043..8617bee2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Configuration

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizerData

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionsSettings

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -256,10 +256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSettings

@@ -293,10 +293,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html index bd75d426..155008ca 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DetectedType

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentHash

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ElapsedMilliseconds

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputValidityCode

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedFileExtension

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html index c292e128..fa1c7df4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateImage

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateImageExtension

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HTML

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PDF

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RTF

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html index e21891fc..03bc9358 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DataType

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnumerationValues

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Identifier

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prompt

@@ -259,10 +259,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html index 4b801a03..27ca9954 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html @@ -138,10 +138,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html index 4d260af2..ae3dd5b9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Responses

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html index 1ccb71bf..ac7bdfcb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Identifier

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Reply

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReplyList

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html index abb7a240..a0c1d174 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html index 445de06a..000f90ec 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -186,10 +186,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html index ff6ed474..ad379192 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FlexRequests

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -208,10 +208,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingOptions

@@ -243,10 +243,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputCandidateImage

@@ -274,10 +274,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputHtml

@@ -305,10 +305,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputPdf

@@ -336,10 +336,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputRtf

@@ -367,10 +367,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UseLLMParser

@@ -406,10 +406,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html index fcfe06ba..fe7e6ba5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html @@ -167,10 +167,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParseRequest(Document, ParseOptions)

@@ -209,10 +209,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentAsBase64String

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLastModified

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html index 2a8c61cc..eeaef67d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html index 9f80cac3..b4290267 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EducationNormalizationResponse

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FlexResponse

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RedactedResumeData

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -281,10 +281,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html index e95b8102..023f9b66 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ElapsedMilliseconds

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LicenseSerialNumber

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimedOut

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimedOutAtMilliseconds

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html index bb011100..7b463c0e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalize

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -213,10 +213,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html index cfac2459..a46c1357 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html @@ -125,10 +125,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalize

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyVersion

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html index ceb475a8..08791c7f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html index d6999fe7..fc03d8f0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Matches

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html index 58379372..e395a49d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsoCode

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html index 3b4f9ba8..6e2ab268 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html @@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html index bf111855..ae0eed82 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

RawText

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html index 293a0c49..6374b02e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Class

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Isco

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Kldb2020

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Onet

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Onet2019

@@ -321,10 +321,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UkSoc2010

@@ -352,10 +352,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UwvBoc

@@ -389,10 +389,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html index 733073e9..5c141310 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -211,10 +211,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html index a183ece3..0f634f61 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html @@ -155,10 +155,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -187,10 +187,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Descriptions

@@ -224,10 +224,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html index ada97b4e..fffb77a7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsoCode

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -258,10 +258,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html index d75ba8ff..ff75c287 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html @@ -141,10 +141,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -178,10 +178,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html index 1491232b..190c15b7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BeginSpan

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndSpan

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Likelihood

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawText

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html index b649e5d9..22f5cf71 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Descriptions

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html index dab29221..0944a888 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CsvOutput

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html index bd9b5e2c..8e7e2ed8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ServiceVersion

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyReleaseDate

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html index 0394da37..63224ab9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -185,10 +185,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Document.html b/docs/site-/sdk/Textkernel.Tx.Models.Document.html index 3ee7053f..9d188e72 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Document.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Document.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Document(Byte[], DateTime)

@@ -168,10 +168,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Document(String)

@@ -205,10 +205,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AsBase64

@@ -236,10 +236,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastModified

@@ -273,10 +273,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html b/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html index cff82668..d53f8d1c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Latitude

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Longitude

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html b/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html index 3e51c96e..bf6b6507 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Source

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html index c1cc651a..3dde17e4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDeadline

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDescription

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactEmail

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactPerson

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactPhone

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostedDate

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReferenceNumber

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Website

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html index f19f328a..cf01de68 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MainEmployerName

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html index 7dbfb3ff..d460fad9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

InternationalEducationLevel

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LocalEducationLevel

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html index 1b39fa6c..b3e00154 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html @@ -146,10 +146,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html index fcbd8217..cbd0cfab 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MainJobTitle

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedProfession

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html index 7ca74f68..1e8d3d67 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html @@ -130,10 +130,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParsedJob()

@@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDetails

@@ -185,10 +185,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Benefits

@@ -216,10 +216,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CertificationsAndLicenses

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContractType

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentJobIsManagement

@@ -321,10 +321,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentLocation

@@ -352,10 +352,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Degrees

@@ -383,10 +383,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DriversLicenses

@@ -414,10 +414,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerDescription

@@ -445,10 +445,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerNames

@@ -476,10 +476,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmploymentType

@@ -511,10 +511,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -542,10 +542,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -573,10 +573,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HighestManagementScore

@@ -604,10 +604,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsRemote

@@ -635,10 +635,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobDescription

@@ -666,10 +666,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobMetadata

@@ -697,10 +697,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobRequirements

@@ -728,10 +728,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -759,10 +759,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCodes

@@ -790,10 +790,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -821,10 +821,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumWorkingHours

@@ -852,10 +852,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumYears

@@ -883,10 +883,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumYearsManagement

@@ -914,10 +914,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumWorkingHours

@@ -945,10 +945,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumYears

@@ -976,10 +976,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumYearsManagement

@@ -1007,10 +1007,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Owners

@@ -1038,10 +1038,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequiredDegree

@@ -1069,10 +1069,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Salary

@@ -1100,10 +1100,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolNames

@@ -1131,10 +1131,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -1162,10 +1162,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -1194,10 +1194,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -1225,10 +1225,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TermsOfInterest

@@ -1256,10 +1256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -1290,10 +1290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WorkingHours

@@ -1325,10 +1325,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

FromFile(String)

@@ -1374,10 +1374,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

FromJson(String)

@@ -1423,10 +1423,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -1481,10 +1481,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html index 502a1e8a..ec9b9bd5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Currency

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawMaximum

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawMinimum

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimeScale

@@ -331,10 +331,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html index d02d1e95..ab3996ce 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -176,10 +176,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html index a7068772..c0365c95 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html index 5042deb8..2ca5ae10 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html index 335f720f..d1b32797 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html index 861c6d0c..32cf8df5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html index 3614383b..bf72af95 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html @@ -151,10 +151,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html index 7561bd27..40622957 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Root

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html index bb28c0da..0e4d70ea 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedProfessionClasses

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Location.html b/docs/site-/sdk/Textkernel.Tx.Models.Location.html index d0a26a79..4ed5411d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Location.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Location.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeoCoordinates

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Regions

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StreetAddressLines

@@ -318,10 +318,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html index ad6a51bd..23dfd1d7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexType

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html index 3d68deba..0911f83d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html index e92e036e..2aa6f6a3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html @@ -125,10 +125,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToFile(String, Boolean)

@@ -165,10 +165,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -215,10 +215,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -254,10 +254,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html index f13c3492..b149eb37 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentCulture

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLanguage

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLastModified

@@ -230,10 +230,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParserSettings

@@ -261,10 +261,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PlainText

@@ -298,10 +298,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html index 3ccea2d4..5495db79 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Organization

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Role

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html index d1b441e1..bbecd4d2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Company

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReferenceName

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telephones

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Title

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WebAddresses

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html index 4a075da7..13731988 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsVariation

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MatchedFromList

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -229,10 +229,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html index aeb241e6..6cf25868 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telephones

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WebAddresses

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html index 461d82cb..d0bee28d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FamilyName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FormattedName

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GivenName

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MiddleName

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Moniker

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prefix

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Suffix

@@ -349,10 +349,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html index 1232d940..e1b62d3f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AreaCityCode

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

InternationalCountryCode

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubscriberNumber

@@ -232,10 +232,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html index 5df840c3..2d3c310a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Address

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -215,10 +215,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html index 7be93b16..f2421cdb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

Facebook

A Facebook profile URL

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Gab

A Gab username

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GitHub

A GitHub username/URL

@@ -216,10 +216,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ICQ

An ICQ username

@@ -246,10 +246,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Instagram

An Instagram username

@@ -276,10 +276,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkedIn

A LinkedIn URL

@@ -306,10 +306,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MeWe

A MeWe username/URL

@@ -336,10 +336,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Parler

A Parler username

@@ -366,10 +366,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PersonalWebsite

A personal website URL

@@ -396,10 +396,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QQ

A QQ username/number

@@ -426,10 +426,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Quora

A Quora username

@@ -456,10 +456,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Reddit

A Reddit username/URL

@@ -486,10 +486,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Signal

A Signal username/number

@@ -516,10 +516,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skype

A Skype username/URL

@@ -546,10 +546,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StackOverflow

A Stack Overflow username/URL

@@ -576,10 +576,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telegram

A Telegram username

@@ -606,10 +606,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telegraph

A Telegraph username

@@ -636,10 +636,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Twitter

A Twitter handle

@@ -666,10 +666,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Unknown

An unknown internet handle/URL (the platform/website/app was not specified)

@@ -696,10 +696,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeChat

A WeChat username

@@ -726,10 +726,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WhatsApp

A WhatsApp username/number

@@ -758,10 +758,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -791,10 +791,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(String to WebAddressType)

@@ -846,10 +846,10 @@
Returns
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html index 86bcce4c..48499325 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedInternational

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedLocal

@@ -225,10 +225,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html index 27b6c4e2..ef887c70 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Degree

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GPA

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Graduated

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastEducationDate

@@ -313,10 +313,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Majors

@@ -375,10 +375,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minors

@@ -406,10 +406,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolName

@@ -437,10 +437,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolType

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -509,10 +509,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -546,10 +546,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html index 75789b6a..53090075 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EducationDetails

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HighestDegree

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html index 9143213a..219ac392 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MaxScore

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumScore

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedScore

@@ -224,10 +224,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -255,10 +255,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ScoringSystem

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html index e316ae9a..ceadac4b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html index 3462c6d0..510f5982 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html index 9f7cf0c1..c8a903c5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Probability

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html index e939e4cf..129c87d8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OtherFoundName

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html index aec6b0b4..6bcb0209 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExperienceSummary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html index c75f7b1d..610d7285 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AttentionNeeded

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

AverageMonthsPerEmployer

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentManagementLevel

@@ -229,10 +229,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -266,10 +266,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -309,10 +309,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FulltimeDirectHirePredictiveIndex

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementScore

@@ -379,10 +379,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementStory

@@ -410,10 +410,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsOfManagementExperience

@@ -447,10 +447,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsOfWorkExperience

@@ -489,10 +489,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html index ce25d99e..980a776c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Probability

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -224,10 +224,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -262,10 +262,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html index 2f388144..9b320ca9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Class

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ISCO

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ONET

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Profession

@@ -318,10 +318,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html index 86535e1c..a19d33c4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Bullets

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Employer

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -282,10 +282,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -313,10 +313,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsSelfEmployed

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobLevel

@@ -382,10 +382,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -413,10 +413,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobType

@@ -450,10 +450,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedProfession

@@ -481,10 +481,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumberEmployeesSupervised

@@ -512,10 +512,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedToByCompanyName

@@ -543,10 +543,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedToByDates

@@ -574,10 +574,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -605,10 +605,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyName

@@ -638,10 +638,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyName

@@ -671,10 +671,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyPercentage

@@ -709,10 +709,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html index d492eb5e..520c39ba 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -185,10 +185,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html index 892f5a94..e78a5b66 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCode

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html index 7eaca26c..d17c561f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MatchedFromList

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html index acf01460..5ff3bfd4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Names

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OtherData

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phones

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Urls

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html index 03bdd02a..75ce5f12 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html @@ -142,10 +142,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundSections

@@ -173,10 +173,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReservedData

@@ -204,10 +204,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeQuality

@@ -254,10 +254,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html index d40b7558..6fcc9afc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Findings

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Level

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html index f99c0c61..ef352df3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QualityCode

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionIdentifiers

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html index 63d86872..39f14414 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DataMissing

Some data was missing that should be included in a resume

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FatalProblem

A fatal issue was found in the resume. Parse results may have severe inaccuracies

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MajorIssue

A major issue was found in the resume that will reduce the quality of parse results

@@ -216,10 +216,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedImprovement

Only minor issues were found

@@ -248,10 +248,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -281,10 +281,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(String to ResumeQualityLevel)

@@ -336,10 +336,10 @@
Returns
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html index bbeb4c28..328a4169 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FirstLineNumber

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HeaderTextFound

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastLineNumber

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionType

@@ -283,10 +283,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html index 694e64c8..9362ca40 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Country

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Service

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html index 0d2f5556..d3647621 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Branch

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Rank

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html index 8095eeb5..f211f62a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html index 9f8b2090..ea9b3047 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Number

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phrase

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html index 89d75f34..36dc5a80 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html index 3695360b..9fbb1084 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html @@ -130,10 +130,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParsedResume()

@@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Achievements

@@ -185,10 +185,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Associations

@@ -216,10 +216,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactInformation

@@ -278,10 +278,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CoverLetter

@@ -309,10 +309,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -340,10 +340,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmploymentHistory

@@ -371,10 +371,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Hobbies

@@ -402,10 +402,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCompetencies

@@ -434,10 +434,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Licenses

@@ -466,10 +466,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MilitaryExperience

@@ -497,10 +497,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Objective

@@ -528,10 +528,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Patents

@@ -559,10 +559,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PersonalAttributes

@@ -590,10 +590,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionalSummary

@@ -621,10 +621,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Publications

@@ -652,10 +652,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QualificationsSummary

@@ -683,10 +683,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

References

@@ -714,10 +714,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeMetadata

@@ -745,10 +745,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SecurityCredentials

@@ -776,10 +776,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -807,10 +807,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -839,10 +839,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SpeakingEngagements

@@ -870,10 +870,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Training

@@ -901,10 +901,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -937,10 +937,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

FromFile(String)

@@ -986,10 +986,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

FromJson(String)

@@ -1035,10 +1035,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -1093,10 +1093,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html index 3b5ce94c..5efb8d85 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Availability

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Birthplace

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentLocation

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentSalary

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DateOfBirth

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DrivingLicense

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FamilyComposition

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FathersName

@@ -374,10 +374,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Gender

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HukouArea

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HukouCity

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaritalStatus

@@ -498,10 +498,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MothersMaidenName

@@ -529,10 +529,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MotherTongue

@@ -560,10 +560,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NationalIdentities

@@ -591,10 +591,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Nationality

@@ -622,10 +622,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PassportNumber

@@ -653,10 +653,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredLocation

@@ -684,10 +684,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequiredSalary

@@ -715,10 +715,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

VisaStatus

@@ -746,10 +746,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WillingToRelocate

@@ -783,10 +783,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html index f428846f..7d3e50ca 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Amount

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Currency

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html index bba1b07b..aa0c9471 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionType

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html index 61cd2fba..c150e31a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -170,10 +170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -201,10 +201,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -238,10 +238,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html index 0f6a8fa4..7ac0260c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -229,10 +229,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html index cc0993d1..4d8907c1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html @@ -146,10 +146,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ChildrenLastUsed

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ChildrenMonthsExperience

@@ -208,10 +208,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -245,10 +245,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html index e34736d8..f9032850 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -236,10 +236,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html index 969dbc10..0ddd5738 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html index a46a4c03..fb4815c5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html @@ -151,10 +151,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html index c1ed71e6..db7252a0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Root

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html index b06497c7..f11d348f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedProfessionClasses

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html index c34ef574..dea77d2a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Entity

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Qualifications

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -288,10 +288,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html index 36281643..2c6e3c85 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Trainings

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html index 506757f7..9db4b041 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfOverall

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfParent

@@ -203,10 +203,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html index f8cbaa7b..5235b4e4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html @@ -147,10 +147,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -178,10 +178,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -209,10 +209,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfOverall

@@ -240,10 +240,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -281,10 +281,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html index 58c537fc..505b345e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html @@ -112,10 +112,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -143,10 +143,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -211,10 +211,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html index 6cf75c4b..76b5e77e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawSkills

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -258,10 +258,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html index 4c67dd7f..7a7d183b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Groups

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Percent

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html index 77841450..8a372c9a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Percent

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html index 1bc82876..34a4cc31 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html index b4e0a81c..e628ef5e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExistsInText

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html index 0d288bfc..e58d494e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyId

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyName

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html index be750019..3fa1e52e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TxDefaults

@@ -265,10 +265,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html b/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html index f4f89c98..16998225 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Date

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundDay

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundMonth

@@ -226,10 +226,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundYear

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrentDate

@@ -294,10 +294,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html b/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html index 0d0325b3..232cc155 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.TxClient.html b/docs/site-/sdk/Textkernel.Tx.TxClient.html index 0bdc53d2..5c27106f 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxClient.html +++ b/docs/site-/sdk/Textkernel.Tx.TxClient.html @@ -131,10 +131,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

TxClient(HttpClient, TxClientSettings)

@@ -184,10 +184,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

TxClient(String, String, DataCenter, IEnumerable<String>)

@@ -240,10 +240,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFullRequestBodyInExceptions

@@ -274,10 +274,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteProfession(String, IEnumerable<String>, String, Int32)

@@ -364,10 +364,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkill(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -460,10 +460,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkillV2(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -556,10 +556,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedJobWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -657,10 +657,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedResumeWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -758,10 +758,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessions(Int32, Int32, String)

@@ -841,10 +841,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessionsV2(Int32, Int32, String)

@@ -924,10 +924,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(Int32, String, SkillScore[])

@@ -1005,10 +1005,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(ParsedResume, Int32, String, Boolean)

@@ -1090,10 +1090,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(Int32, String, SkillScore[])

@@ -1171,10 +1171,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean)

@@ -1256,10 +1256,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateIndex(IndexType, String)

@@ -1328,10 +1328,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteDocument(String, String)

@@ -1399,10 +1399,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteIndex(String)

@@ -1464,10 +1464,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteMultipleDocuments(String, IEnumerable<String>)

@@ -1535,10 +1535,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -1551,10 +1551,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkills(String, String, String, Single)

@@ -1639,10 +1639,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkillsV2(String, String, String, Single)

@@ -1727,10 +1727,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResume(FormatResumeRequest)

@@ -1793,10 +1793,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplate(FormatResumeWithTemplateRequest)

@@ -1859,10 +1859,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateJobDescription(GenerateJobRequest)

@@ -1924,10 +1924,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, Address, GeocodeCredentials)

@@ -2002,10 +2002,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, GeocodeCredentials)

@@ -2074,10 +2074,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, Address, GeocodeCredentials)

@@ -2152,10 +2152,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, GeocodeCredentials)

@@ -2224,10 +2224,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2314,10 +2314,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2398,10 +2398,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2495,10 +2495,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2586,10 +2586,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2676,10 +2676,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2760,10 +2760,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2857,10 +2857,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2948,10 +2948,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAccountInfo()

@@ -2995,10 +2995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAllIndexes()

@@ -3042,10 +3042,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetJob(String, String)

@@ -3113,10 +3113,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomy(String, TaxonomyFormat)

@@ -3188,10 +3188,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomyMetadata()

@@ -3236,10 +3236,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetResume(String, String)

@@ -3307,10 +3307,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomy(TaxonomyFormat)

@@ -3374,10 +3374,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadata()

@@ -3422,10 +3422,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadataV2()

@@ -3470,10 +3470,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyV2(TaxonomyFormat)

@@ -3537,10 +3537,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

@@ -3621,10 +3621,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedResume, String, String, IEnumerable<String>)

@@ -3705,10 +3705,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexJobInfo>, String)

@@ -3776,10 +3776,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexResumeInfo>, String)

@@ -3847,10 +3847,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupProfessions(IEnumerable<Int32>, String)

@@ -3922,10 +3922,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkills(IEnumerable<String>, String)

@@ -3995,10 +3995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkillsV2(IEnumerable<String>, String)

@@ -4068,10 +4068,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(String, String, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4170,10 +4170,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedJob, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4266,10 +4266,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedResume, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4362,10 +4362,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeProfessions(IEnumerable<String>, String, String)

@@ -4444,10 +4444,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkills(IEnumerable<String>, String, String)

@@ -4526,10 +4526,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkillsV2(IEnumerable<String>, String, String)

@@ -4583,10 +4583,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJob(ParseRequest)

@@ -4664,10 +4664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResume(ParseRequest)

@@ -4745,10 +4745,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Search(IEnumerable<String>, FilterCriteria, SearchMatchSettings, PaginationSettings)

@@ -4828,10 +4828,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4904,10 +4904,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScoreV2(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4980,10 +4980,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5065,10 +5065,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

@@ -5150,10 +5150,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5241,10 +5241,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5326,10 +5326,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String)

@@ -5411,10 +5411,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5502,10 +5502,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

@@ -5579,10 +5579,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

@@ -5658,10 +5658,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

@@ -5737,10 +5737,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

@@ -5816,10 +5816,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(IEnumerable<Int32>, Int32, String, IEnumerable<String>)

@@ -5901,10 +5901,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -5986,10 +5986,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable<String>)

@@ -6071,10 +6071,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

@@ -6153,10 +6153,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedJob, Int32, String)

@@ -6234,10 +6234,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

@@ -6321,10 +6321,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(IEnumerable<SkillScore>, Int32, String, IEnumerable<String>)

@@ -6409,10 +6409,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -6496,10 +6496,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable<String>)

@@ -6589,10 +6589,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateJobUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6672,10 +6672,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateResumeUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6768,10 +6768,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html b/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html index 24ed68e7..1c0fc172 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AccountId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DataCenter

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ServiceKey

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TrackingTags

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.TxException.html b/docs/site-/sdk/Textkernel.Tx.TxException.html index 2846b2ae..557bd3fe 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxException.html @@ -166,10 +166,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

HttpStatusCode

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequestBody

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResponseMessage

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionId

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TxErrorCode

@@ -331,10 +331,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html b/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html index 01d8cfe1..2190d9a5 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html index 54a82e4a..b649a3f2 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html b/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html index 236f251d..b17ab905 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html index 35c860a9..d918a5e3 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html index a5b7eee7..ea5b65e7 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html index 977864e0..16d45372 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html b/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html index 93a19127..2b68dac8 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html @@ -183,10 +183,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -224,10 +224,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html index 1064506a..12ec6c71 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html @@ -183,10 +183,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -224,10 +224,10 @@

Implements

diff --git a/docs/site-/sdk/index.html b/docs/site-/sdk/index.html index b9964c0a..adae7f86 100644 --- a/docs/site-/sdk/index.html +++ b/docs/site-/sdk/index.html @@ -133,7 +133,7 @@

Matching/Searching/Bimetric Scoring

From 6351e6549b1e05c70bad68c65c16cbf6732416b3 Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 16:24:58 -0600 Subject: [PATCH 13/14] use .net 7 for build --- .github/workflows/build.yml | 4 +++- .github/workflows/nuget-publish.yml | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 840d3ca5..1d69d543 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -92,7 +92,9 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v4 with: - dotnet-version: 3.1.x + dotnet-version: | + 7.0.x + 2.0.x - name: Install dependencies run: dotnet restore working-directory: src/Textkernel.Tx.SDK diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml index ea0d4cf7..d77e0f73 100644 --- a/.github/workflows/nuget-publish.yml +++ b/.github/workflows/nuget-publish.yml @@ -13,9 +13,11 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 3.1.x + dotnet-version: | + 7.0.x + 2.0.x - name: Install dependencies run: dotnet restore working-directory: src/Textkernel.Tx.SDK From b0a3d45e0f5706158adb29651e230bf2e8937a7c Mon Sep 17 00:00:00 2001 From: Continuous Integration Date: Fri, 27 Dec 2024 22:28:19 +0000 Subject: [PATCH 14/14] --- auto-generation of docfx documentation --- --- docs/site-/index.html | 2 +- docs/site-/manifest.json | 694 +++++++++--------- ...extkernel.Tx.Batches.BatchErrorResult.html | 8 +- .../Textkernel.Tx.Batches.BatchParser.html | 12 +- ...xtkernel.Tx.Batches.BatchParsingRules.html | 28 +- .../Textkernel.Tx.Batches.BatchResult.html | 12 +- ....Batches.JobBatchPartialSuccessResult.html | 8 +- ...rnel.Tx.Batches.JobBatchSuccessResult.html | 8 +- ...tches.ResumeBatchPartialSuccessResult.html | 8 +- ...l.Tx.Batches.ResumeBatchSuccessResult.html | 8 +- ...el.Tx.Batches.TxInvalidBatchException.html | 4 +- docs/site-/sdk/Textkernel.Tx.DataCenter.html | 20 +- docs/site-/sdk/Textkernel.Tx.ITxClient.html | 324 ++++---- ...ls.API.Account.GetAccountInfoResponse.html | 4 +- .../Textkernel.Tx.Models.API.AccountInfo.html | 36 +- ...extkernel.Tx.Models.API.ApiResponse-1.html | 12 +- ...tkernel.Tx.Models.API.ApiResponseInfo.html | 28 +- ...nel.Tx.Models.API.ApiResponseInfoLite.html | 12 +- ...metricScoring.BimetricScoreJobRequest.html | 8 +- ....BimetricScoring.BimetricScoreRequest.html | 20 +- ...BimetricScoring.BimetricScoreResponse.html | 4 +- ...ricScoring.BimetricScoreResponseValue.html | 4 +- ...I.BimetricScoring.BimetricScoreResult.html | 28 +- ...ricScoring.BimetricScoreResumeRequest.html | 8 +- ....API.BimetricScoring.IParsedDocWithId.html | 8 +- ...s.API.BimetricScoring.ParsedJobWithId.html | 12 +- ...PI.BimetricScoring.ParsedResumeWithId.html | 12 +- ...PI.DataEnrichment.AutocompleteRequest.html | 20 +- ...PI.DataEnrichment.GetMetadataResponse.html | 4 +- ...ogy.Request.CompareProfessionsRequest.html | 16 +- ...uest.CompareSkillsToProfessionRequest.html | 16 +- ....Request.SkillsSimilarityScoreRequest.html | 12 +- ...ogy.Request.SuggestProfessionsRequest.html | 20 +- ...t.SuggestSkillsFromProfessionsRequest.html | 20 +- ...equest.SuggestSkillsFromSkillsRequest.html | 20 +- ...y.Response.CompareProfessionsResponse.html | 4 +- ...ponse.CompareProfessionsResponseValue.html | 16 +- ...nse.CompareSkillsToProfessionResponse.html | 4 +- ...ompareSkillsToProfessionResponseValue.html | 20 +- ...gy.Response.ProfessionExclusiveSkills.html | 12 +- ...richment.Ontology.Response.SkillScore.html | 16 +- ...esponse.SkillsSimilarityScoreResponse.html | 4 +- ...se.SkillsSimilarityScoreResponseValue.html | 8 +- ...y.Response.SuggestProfessionsResponse.html | 4 +- ...ponse.SuggestProfessionsResponseValue.html | 12 +- ...y.Response.SuggestProfessionsWarnings.html | 12 +- ...tology.Response.SuggestSkillsResponse.html | 4 +- ...y.Response.SuggestSkillsResponseValue.html | 8 +- ...Ontology.Response.SuggestedProfession.html | 20 +- ...ataEnrichment.Professions.ONETVersion.html | 4 +- ...sions.ProfessionNormalizationVersions.html | 8 +- ....Request.LookupProfessionCodesRequest.html | 12 +- ...s.Request.NormalizeProfessionsRequest.html | 16 +- ...ponse.AutoCompleteProfessionsResponse.html | 4 +- ....AutoCompleteProfessionsResponseValue.html | 8 +- ...sponse.GetProfessionsTaxonomyResponse.html | 4 +- ...e.GetTaxonomyProfessionsResponseValue.html | 8 +- ...esponse.LookupProfessionCodesResponse.html | 4 +- ...se.LookupProfessionCodesResponseValue.html | 8 +- ...Response.NormalizeProfessionsResponse.html | 4 +- ...nse.NormalizeProfessionsResponseValue.html | 8 +- ...t.Skills.Request.ExtractSkillsRequest.html | 20 +- ...nt.Skills.Request.LookupSkillsRequest.html | 12 +- ...Skills.Request.NormalizeSkillsRequest.html | 16 +- ...lls.Request.SkillsAutoCompleteRequest.html | 8 +- ...s.Response.AutoCompleteSkillsResponse.html | 4 +- ...ponse.AutocompleteSkillsResponseValue.html | 8 +- ...Skills.Response.ExtractSkillsResponse.html | 4 +- ...s.Response.ExtractSkillsResponseValue.html | 12 +- ...ls.Response.GetSkillsTaxonomyResponse.html | 4 +- ...sponse.GetSkillsTaxonomyResponseValue.html | 8 +- ...lls.Response.LookupSkillCodesResponse.html | 4 +- ...esponse.LookupSkillCodesResponseValue.html | 8 +- ...ills.Response.NormalizeSkillsResponse.html | 4 +- ...Response.NormalizeSkillsResponseValue.html | 8 +- ...els.API.DataEnrichment.TaxonomyFormat.html | 4 +- ...l.Tx.Models.API.Formatter.CompanyInfo.html | 32 +- ...ls.API.Formatter.CompanyInfoPlacement.html | 4 +- ...els.API.Formatter.EmployerNameOptions.html | 4 +- ...els.API.Formatter.FormatResumeOptions.html | 20 +- ...els.API.Formatter.FormatResumeRequest.html | 16 +- ...ls.API.Formatter.FormatResumeResponse.html | 4 +- ...I.Formatter.FormatResumeResponseValue.html | 8 +- ...atter.FormatResumeWithTemplateRequest.html | 28 +- ....Models.API.Formatter.MetadataOptions.html | 12 +- ...el.Tx.Models.API.Formatter.ResumeLogo.html | 28 +- ...el.Tx.Models.API.Formatter.ResumeType.html | 4 +- ...dels.API.Formatter.WorkHistoryOptions.html | 16 +- ...ernel.Tx.Models.API.Geocoding.Address.html | 24 +- ...I.Geocoding.GeocodeAndIndexJobRequest.html | 8 +- ....Geocoding.GeocodeAndIndexJobResponse.html | 4 +- ...oding.GeocodeAndIndexJobResponseValue.html | 8 +- ....API.Geocoding.GeocodeAndIndexRequest.html | 16 +- ...eocoding.GeocodeAndIndexResponseValue.html | 12 +- ...eocoding.GeocodeAndIndexResumeRequest.html | 8 +- ...ocoding.GeocodeAndIndexResumeResponse.html | 4 +- ...ng.GeocodeAndIndexResumeResponseValue.html | 8 +- ...dels.API.Geocoding.GeocodeCredentials.html | 12 +- ...odels.API.Geocoding.GeocodeJobRequest.html | 8 +- ...dels.API.Geocoding.GeocodeJobResponse.html | 4 +- ...API.Geocoding.GeocodeJobResponseValue.html | 8 +- ...x.Models.API.Geocoding.GeocodeOptions.html | 8 +- ...dels.API.Geocoding.GeocodeOptionsBase.html | 12 +- ....Models.API.Geocoding.GeocodeProvider.html | 4 +- ...ls.API.Geocoding.GeocodeResumeRequest.html | 8 +- ...s.API.Geocoding.GeocodeResumeResponse.html | 4 +- ....Geocoding.GeocodeResumeResponseValue.html | 8 +- .../Textkernel.Tx.Models.API.ITxResponse.html | 8 +- ...Models.API.Indexes.CreateIndexRequest.html | 8 +- ...odels.API.Indexes.CreateIndexResponse.html | 4 +- ...ls.API.Indexes.DeleteDocumentResponse.html | 4 +- ...odels.API.Indexes.DeleteIndexResponse.html | 4 +- ...dexes.DeleteMultipleDocumentsResponse.html | 4 +- ...els.API.Indexes.GetAllIndexesResponse.html | 4 +- ...x.Models.API.Indexes.GetIndexResponse.html | 4 +- ....Tx.Models.API.Indexes.GetJobResponse.html | 4 +- ....Models.API.Indexes.GetResumeResponse.html | 4 +- ...dels.API.Indexes.IndexDocumentRequest.html | 8 +- ...els.API.Indexes.IndexDocumentResponse.html | 4 +- ...el.Tx.Models.API.Indexes.IndexJobInfo.html | 8 +- ...Tx.Models.API.Indexes.IndexJobRequest.html | 8 +- ...API.Indexes.IndexMultipleDocumentInfo.html | 12 +- ...ndexes.IndexMultipleDocumentsResponse.html | 4 +- ...s.IndexMultipleDocumentsResponseValue.html | 8 +- ....API.Indexes.IndexMultipleJobsRequest.html | 8 +- ...I.Indexes.IndexMultipleResumesRequest.html | 8 +- ...Tx.Models.API.Indexes.IndexResumeInfo.html | 8 +- ...Models.API.Indexes.IndexResumeRequest.html | 8 +- ...s.API.Indexes.IndexSingleDocumentInfo.html | 8 +- ....Indexes.UpdateUserDefinedTagsRequest.html | 12 +- ...Indexes.UpdateUserDefinedTagsResponse.html | 4 +- ...els.API.Indexes.UserDefinedTagsMethod.html | 4 +- ...API.JobDescription.GenerateJobRequest.html | 28 +- ...PI.JobDescription.GenerateJobResponse.html | 4 +- ...bDescription.GenerateJobResponseValue.html | 8 +- ...s.API.JobDescription.GenerateJobSkill.html | 12 +- ....Tx.Models.API.JobDescription.JobTone.html | 4 +- ...dels.API.JobDescription.SkillPriority.html | 4 +- ...tion.SuggestSkillsFromJobTitleRequest.html | 16 +- ...ion.SuggestSkillsFromJobTitleResponse.html | 4 +- ...uggestSkillsFromJobTitleResponseValue.html | 8 +- ...PI.Matching.BaseScoredResponseValue-1.html | 12 +- ...tching.BaseSearchMatchResponseValue-1.html | 16 +- ...x.Models.API.Matching.CategoryWeights.html | 68 +- ...x.Models.API.Matching.MatchJobRequest.html | 8 +- ....Tx.Models.API.Matching.MatchResponse.html | 4 +- ...odels.API.Matching.MatchResponseValue.html | 4 +- ...odels.API.Matching.MatchResumeRequest.html | 8 +- ...els.API.Matching.Request.DistanceUnit.html | 4 +- ...s.API.Matching.Request.FilterCriteria.html | 140 ++-- ...s.API.Matching.Request.FilterLocation.html | 24 +- ...els.API.Matching.Request.IntegerRange.html | 12 +- ...s.API.Matching.Request.JobTitleFilter.html | 12 +- ...API.Matching.Request.LocationCriteria.html | 24 +- ...hing.Request.MatchByDocumentIdOptions.html | 4 +- ...els.API.Matching.Request.MatchRequest.html | 12 +- ...I.Matching.Request.PaginationSettings.html | 12 +- ...PI.Matching.Request.RevisionDateRange.html | 12 +- ...tching.Request.SearchMatchRequestBase.html | 16 +- ....Matching.Request.SearchMatchSettings.html | 16 +- ...Matching.Request.SkillExperienceLevel.html | 4 +- ...dels.API.Matching.Request.SkillFilter.html | 16 +- ...I.Matching.Response.CategoryScoreData.html | 12 +- ...tching.Response.CategoryScoreEvidence.html | 12 +- ....Matching.Response.DocumentTaxonomies.html | 12 +- ....Matching.Response.EducationScoreData.html | 16 +- ...I.Matching.Response.EnrichedScoreData.html | 36 +- ...s.API.Matching.Response.FoundJobTitle.html | 16 +- ...dels.API.Matching.Response.FoundSkill.html | 12 +- ...tching.Response.IBimetricScoredResult.html | 24 +- ....Matching.Response.JobTitlesScoreData.html | 12 +- ...ing.Response.ManagementLevelScoreData.html | 16 +- ...els.API.Matching.Response.MatchResult.html | 24 +- ...ls.API.Matching.Response.SearchResult.html | 12 +- ...hing.Response.SimpleCategoryScoreData.html | 12 +- ...API.Matching.Response.SkillsScoreData.html | 12 +- ...Matching.Response.TaxonomiesScoreData.html | 12 +- ...PI.Matching.Response.TaxonomyEvidence.html | 12 +- ...ls.API.Matching.Response.TaxonomyInfo.html | 16 +- ....Tx.Models.API.Matching.SearchRequest.html | 8 +- ...Tx.Models.API.Matching.SearchResponse.html | 4 +- ...dels.API.Matching.SearchResponseValue.html | 4 +- ...Models.API.Matching.UI.AIMatchDetails.html | 8 +- ...Models.API.Matching.UI.BasicUIOptions.html | 16 +- ....API.Matching.UI.BimetricScoreDetails.html | 8 +- ...I.Matching.UI.BimetricScoreJobDetails.html | 8 +- ...atching.UI.BimetricScoreResumeDetails.html | 8 +- ...atching.UI.GenerateUIDetailsRequest-1.html | 12 +- ...s.API.Matching.UI.GenerateUIRequest-1.html | 8 +- ...ls.API.Matching.UI.GenerateUIResponse.html | 12 +- ....Matching.UI.Hooks.BulkHookPostBody-1.html | 8 +- ....API.Matching.UI.Hooks.ClientSideHook.html | 12 +- ....Matching.UI.Hooks.DocumentIdentifier.html | 12 +- ....API.Matching.UI.Hooks.HookPostBody-1.html | 12 +- ...Models.API.Matching.UI.Hooks.JsAction.html | 16 +- ...ching.UI.Hooks.OnUpdateHookPostBody-1.html | 12 +- ...s.API.Matching.UI.Hooks.OnUpdateHooks.html | 12 +- ...ching.UI.Hooks.OnUpdateServerSideHook.html | 12 +- ....API.Matching.UI.Hooks.ServerSideHook.html | 12 +- ...ls.API.Matching.UI.Hooks.SourcingHook.html | 8 +- ...ching.UI.Hooks.SourcingHookPostBody-1.html | 20 +- ...odels.API.Matching.UI.Hooks.UrlAction.html | 12 +- ....API.Matching.UI.Hooks.UserActionHook.html | 12 +- ...ing.UI.Hooks.UserActionHookCollection.html | 20 +- ...ing.UI.Hooks.UserActionHookPostBody-1.html | 12 +- ...x.Models.API.Matching.UI.MatchDetails.html | 16 +- ...odels.API.Matching.UI.MatchUISettings.html | 16 +- ...x.Models.API.Matching.UI.StyleOptions.html | 24 +- ...g.UI.UIBimetricScoreJobDetailsRequest.html | 4 +- ...Matching.UI.UIBimetricScoreJobRequest.html | 4 +- ...I.UIBimetricScoreResumeDetailsRequest.html | 4 +- ...ching.UI.UIBimetricScoreResumeRequest.html | 4 +- ...atching.UI.UIMatchByDocumentIdOptions.html | 4 +- ...API.Matching.UI.UIMatchDetailsRequest.html | 4 +- ...els.API.Matching.UI.UIMatchJobRequest.html | 4 +- ....API.Matching.UI.UIMatchResumeRequest.html | 4 +- ...l.Tx.Models.API.Matching.UI.UIOptions.html | 52 +- ...odels.API.Matching.UI.UISearchRequest.html | 4 +- ....API.Matching.UI.UserDefinedTagOption.html | 12 +- ...I.Matching.UI.UserDefinedTagsPicklist.html | 12 +- ...ls.API.Parsing.BaseParseResponseValue.html | 24 +- ....Models.API.Parsing.BasicParseOptions.html | 24 +- ...Models.API.Parsing.ConversionMetadata.html | 24 +- ...nel.Tx.Models.API.Parsing.Conversions.html | 24 +- ...nel.Tx.Models.API.Parsing.FlexRequest.html | 20 +- ...odels.API.Parsing.FlexRequestDataType.html | 4 +- ...el.Tx.Models.API.Parsing.FlexResponse.html | 16 +- ...x.Models.API.Parsing.FlexResponseItem.html | 16 +- ...x.Models.API.Parsing.ParseJobResponse.html | 4 +- ...els.API.Parsing.ParseJobResponseValue.html | 8 +- ...el.Tx.Models.API.Parsing.ParseOptions.html | 36 +- ...el.Tx.Models.API.Parsing.ParseRequest.html | 16 +- ...odels.API.Parsing.ParseResumeResponse.html | 4 +- ....API.Parsing.ParseResumeResponseValue.html | 20 +- ...Tx.Models.API.Parsing.ParsingMetadata.html | 20 +- ...odels.API.Parsing.ProfessionsSettings.html | 12 +- ....Tx.Models.API.Parsing.SkillsSettings.html | 12 +- ...Models.DataEnrichment.BasicProfession.html | 12 +- ....Models.DataEnrichment.ExtractedSkill.html | 8 +- ...Models.DataEnrichment.LangDescription.html | 12 +- ...s.DataEnrichment.NormalizedProfession.html | 8 +- ...Models.DataEnrichment.NormalizedSkill.html | 8 +- ...l.Tx.Models.DataEnrichment.Profession.html | 36 +- ...Enrichment.ProfessionClassification-1.html | 12 +- ...chment.ProfessionMultipleDescriptions.html | 12 +- ...kernel.Tx.Models.DataEnrichment.Skill.html | 20 +- ...els.DataEnrichment.SkillAndConfidence.html | 8 +- ...l.Tx.Models.DataEnrichment.SkillMatch.html | 20 +- ...aEnrichment.SkillMultipleDescriptions.html | 12 +- ...nel.Tx.Models.DataEnrichment.Taxonomy.html | 8 +- ...odels.DataEnrichment.TaxonomyMetadata.html | 12 +- ...t.VersionedProfessionClassification-1.html | 8 +- .../sdk/Textkernel.Tx.Models.Document.html | 20 +- .../Textkernel.Tx.Models.GeoCoordinates.html | 12 +- ...tkernel.Tx.Models.GeocodedCoordinates.html | 8 +- ...rnel.Tx.Models.Job.ApplicationDetails.html | 36 +- ...extkernel.Tx.Models.Job.EmployerNames.html | 12 +- .../Textkernel.Tx.Models.Job.JobDegree.html | 20 +- .../Textkernel.Tx.Models.Job.JobMetadata.html | 4 +- .../Textkernel.Tx.Models.Job.JobTitles.html | 16 +- .../Textkernel.Tx.Models.Job.ParsedJob.html | 168 ++--- .../Textkernel.Tx.Models.Job.PayRange.html | 28 +- ....Models.Job.Skills.JobNormalizedSkill.html | 8 +- ...rnel.Tx.Models.Job.Skills.JobRawSkill.html | 8 +- ...tkernel.Tx.Models.Job.Skills.JobSkill.html | 8 +- ...x.Models.Job.Skills.JobSkillVariation.html | 8 +- ...l.Tx.Models.Job.Skills.JobSubTaxonomy.html | 8 +- ...rnel.Tx.Models.Job.Skills.JobTaxonomy.html | 4 +- ....Tx.Models.Job.Skills.JobTaxonomyRoot.html | 12 +- ...rnel.Tx.Models.Job.Skills.JobV2Skills.html | 16 +- .../sdk/Textkernel.Tx.Models.Location.html | 28 +- .../Textkernel.Tx.Models.Matching.Index.html | 16 +- ...xtkernel.Tx.Models.Matching.IndexType.html | 4 +- .../Textkernel.Tx.Models.ParsedDocument.html | 16 +- ...rnel.Tx.Models.ParsedDocumentMetadata.html | 24 +- ...xtkernel.Tx.Models.Resume.Association.html | 16 +- ...l.Tx.Models.Resume.CandidateReference.html | 36 +- ...kernel.Tx.Models.Resume.Certification.html | 16 +- ...Resume.ContactInfo.ContactInformation.html | 24 +- ....Models.Resume.ContactInfo.PersonName.html | 32 +- ...x.Models.Resume.ContactInfo.Telephone.html | 16 +- ....Models.Resume.ContactInfo.WebAddress.html | 12 +- ...els.Resume.ContactInfo.WebAddressType.html | 96 +-- ...nel.Tx.Models.Resume.Education.Degree.html | 20 +- ...els.Resume.Education.EducationDetails.html | 56 +- ...els.Resume.Education.EducationHistory.html | 12 +- ...ls.Resume.Education.GradePointAverage.html | 24 +- ...els.Resume.Education.NormalizedDegree.html | 12 +- ...el.Tx.Models.Resume.Employment.Bullet.html | 12 +- ...Employment.CompanyNameWithProbability.html | 8 +- ....Tx.Models.Resume.Employment.Employer.html | 16 +- ...s.Resume.Employment.EmploymentHistory.html | 12 +- ...s.Resume.Employment.ExperienceSummary.html | 44 +- ....Tx.Models.Resume.Employment.JobTitle.html | 20 +- ...mployment.ParsingNormalizedProfession.html | 28 +- ....Tx.Models.Resume.Employment.Position.html | 76 +- ...dNormalizedProfessionClassification-1.html | 8 +- ...l.Tx.Models.Resume.LanguageCompetency.html | 16 +- ...ernel.Tx.Models.Resume.LicenseDetails.html | 12 +- ...x.Models.Resume.Metadata.ReservedData.html | 24 +- ...Models.Resume.Metadata.ResumeMetadata.html | 16 +- ...sume.Metadata.ResumeQualityAssessment.html | 12 +- ....Resume.Metadata.ResumeQualityFinding.html | 16 +- ...ls.Resume.Metadata.ResumeQualityLevel.html | 28 +- ....Models.Resume.Metadata.ResumeSection.html | 20 +- ...odels.Resume.Military.MilitaryDetails.html | 24 +- ...odels.Resume.Military.MilitaryService.html | 16 +- ...ls.Resume.Military.SecurityCredential.html | 12 +- ...nel.Tx.Models.Resume.NationalIdentity.html | 12 +- ...nel.Tx.Models.Resume.NormalizedString.html | 12 +- ...tkernel.Tx.Models.Resume.ParsedResume.html | 120 +-- ...l.Tx.Models.Resume.PersonalAttributes.html | 88 +-- .../Textkernel.Tx.Models.Resume.Salary.html | 12 +- ...el.Tx.Models.Resume.SectionIdentifier.html | 12 +- ...s.Resume.Skills.ResumeNormalizedSkill.html | 16 +- ...x.Models.Resume.Skills.ResumeRawSkill.html | 16 +- ...l.Tx.Models.Resume.Skills.ResumeSkill.html | 16 +- ...ls.Resume.Skills.ResumeSkillVariation.html | 16 +- ...odels.Resume.Skills.ResumeSubTaxonomy.html | 8 +- ...x.Models.Resume.Skills.ResumeTaxonomy.html | 4 +- ...dels.Resume.Skills.ResumeTaxonomyRoot.html | 12 +- ...x.Models.Resume.Skills.ResumeV2Skills.html | 16 +- ...rnel.Tx.Models.Resume.TrainingDetails.html | 24 +- ...rnel.Tx.Models.Resume.TrainingHistory.html | 12 +- ...nel.Tx.Models.Skills.FoundSubTaxonomy.html | 12 +- ...rnel.Tx.Models.Skills.FoundTaxonomy-1.html | 20 +- ...xtkernel.Tx.Models.Skills.ITaxonomy-1.html | 16 +- ...rnel.Tx.Models.Skills.NormalizedSkill.html | 20 +- ...rnel.Tx.Models.Skills.ProfessionClass.html | 20 +- ...rnel.Tx.Models.Skills.ProfessionGroup.html | 20 +- .../Textkernel.Tx.Models.Skills.RawSkill.html | 8 +- .../Textkernel.Tx.Models.Skills.Skill.html | 16 +- ...xtkernel.Tx.Models.Skills.SubTaxonomy.html | 12 +- .../Textkernel.Tx.Models.Skills.Taxonomy.html | 20 +- .../sdk/Textkernel.Tx.Models.TxDate.html | 24 +- .../Textkernel.Tx.Models.TxPrimitive-1.html | 8 +- docs/site-/sdk/Textkernel.Tx.TxClient.html | 344 ++++----- .../sdk/Textkernel.Tx.TxClientSettings.html | 20 +- docs/site-/sdk/Textkernel.Tx.TxException.html | 24 +- .../Textkernel.Tx.TxGeocodeJobException.html | 4 +- ...extkernel.Tx.TxGeocodeResumeException.html | 4 +- .../Textkernel.Tx.TxIndexJobException.html | 4 +- .../Textkernel.Tx.TxIndexResumeException.html | 4 +- ...TxProfessionNormalizationJobException.html | 4 +- ...rofessionNormalizationResumeException.html | 4 +- .../Textkernel.Tx.TxUsableJobException.html | 8 +- ...Textkernel.Tx.TxUsableResumeException.html | 8 +- docs/site-/sdk/index.html | 2 +- 348 files changed, 3169 insertions(+), 3169 deletions(-) diff --git a/docs/site-/index.html b/docs/site-/index.html index 4dbe14e7..ff1fa70f 100644 --- a/docs/site-/index.html +++ b/docs/site-/index.html @@ -82,7 +82,7 @@

tx-dotnet

diff --git a/docs/site-/manifest.json b/docs/site-/manifest.json index d2066a68..860f2a04 100644 --- a/docs/site-/manifest.json +++ b/docs/site-/manifest.json @@ -20,7 +20,7 @@ "output": { ".html": { "relative_path": "index.html", - "hash": "QmMDjJbpqIpIXRhURs6fxi6lXpdZGT8txwjzOdziY0w=" + "hash": "o4hI+OCSGSkzkHJ6JWT9cwagQ9wyAFdKBlAoqgLktCg=" } }, "is_incremental": false, @@ -32,7 +32,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchErrorResult.html", - "hash": "nE2sAsxdL42HOg8IJAs7HFAIvuMt4BqR8UcPwdF3LJg=" + "hash": "s2Duzgypyf05heL8Aw4sbyLddoMI7sBcdzANcsI8dS0=" } }, "is_incremental": false, @@ -44,7 +44,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchParser.html", - "hash": "IH9+JrSxArkqIF5i8zgJffGKkpyYPX3Cm1EEbcXA8dc=" + "hash": "2WpJSCed5xUgm7+akE7ZAGAOMuSXYLqsu/h3cBklfoI=" } }, "is_incremental": false, @@ -56,7 +56,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchParsingRules.html", - "hash": "q3r9A02K/0dkmV3nTK10FnqVgACz2jv0f4cCngPfwbk=" + "hash": "aYlXyVRccqLkAoJZPVb1HYGC3nOLs5X7Ix2qGoR5IRg=" } }, "is_incremental": false, @@ -68,7 +68,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.BatchResult.html", - "hash": "LAejpXpy+hDq7DIEIwyoSneF19BlUwhZT/juz1l00l8=" + "hash": "26TvOgrnAgOW/G2dI6YF5fP9Ig8Jy9bqzYoyUWPZDuc=" } }, "is_incremental": false, @@ -80,7 +80,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html", - "hash": "fbU+EpMEKPi5k29VNuzMW7TDAhBtwwzwnGwODTq/s6o=" + "hash": "yQuOtAAULxDJ5bmn36QlvEUqGj0w+qhedBPSjAUwv3k=" } }, "is_incremental": false, @@ -92,7 +92,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html", - "hash": "sZDHmNSz1riomz58ICQWc7KXi+CDRvg9q7FQI/Butuk=" + "hash": "R91Rcs6MLbxf+ciAAM3H4CBfjab0zb6JtRes+TxFBkg=" } }, "is_incremental": false, @@ -104,7 +104,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html", - "hash": "ibomfDB01ctlLFayQiXuF1njWMZH4i/eatQn+xrU1IA=" + "hash": "VH22g6JtpEY2H8zn06tOf7WZ8s+IXyN6Citreaxh8CI=" } }, "is_incremental": false, @@ -116,7 +116,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html", - "hash": "JOB8SL9NLmuy9ukqlV98jsUEuRbUdI2bUEUJExTS3hI=" + "hash": "kLobc+slKFLrfC50iH+3Ldk3RMkzVHxfHUQfQxh2Dxc=" } }, "is_incremental": false, @@ -128,7 +128,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html", - "hash": "KaLcNi88+7H6MTt2z1P2bdQidL2dzz1t2QUrJfSj1Sw=" + "hash": "nqckKhAy9jqj+XxCbvKhh1frWrQrjvj0MMCyTu27lYI=" } }, "is_incremental": false, @@ -152,7 +152,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.DataCenter.html", - "hash": "8sHANdW3x7/AhoMOa63oTq/iblHgHnHgO0OprB5nhFo=" + "hash": "Vfg/6S/vC0L+mWEDGm3TvmmGqiGXtHQG58U9s7YRPkc=" } }, "is_incremental": false, @@ -164,7 +164,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.ITxClient.html", - "hash": "4EEXZBFOAqPR0KELPKm9y9rY5T7VnoqlEmPB0ltQY+Y=" + "hash": "jZlWQTpIOf8Hb42wwN6P5ysiFAOLsGxlW9eLVPtU3n8=" } }, "is_incremental": false, @@ -176,7 +176,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html", - "hash": "4xwCCibonWcAgWP6xPHeXx0ZTnLjFjVvH8vvRF/YuzA=" + "hash": "k3ZNjkNMj7zi+tLEo9Dl3FGTMKzKF6MobSGHePvaZIA=" } }, "is_incremental": false, @@ -200,7 +200,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.AccountInfo.html", - "hash": "bpq81gzTC/zzGG3cZSVVD09YXa8B6fgkHrXZsdLHwpc=" + "hash": "lt4CnmJnOY/x6vj+CPvTKMK2D68JN6A7HI/1ZvGU02o=" } }, "is_incremental": false, @@ -212,7 +212,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponse-1.html", - "hash": "oU/dBalVsEqc6OXROUx1FjlIY5f0fJtuVsTg0+nrx60=" + "hash": "LiCtuzjBwC+w0OsEEvIjUYP4QgMEGgPtFdcLTC3cY50=" } }, "is_incremental": false, @@ -224,7 +224,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html", - "hash": "V/HPohaOXmSc0EEpuGk3hdNe4sjyy+sr6+bqS9kDkvI=" + "hash": "XiORcmxxIGDuFXLYj/iDgFe0iLTvtZ+fpRRCmMfhRzw=" } }, "is_incremental": false, @@ -236,7 +236,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html", - "hash": "sw7dg4y7qX9FS2WKo6c2XKxAeWoqX0YW9E9lh7kxThE=" + "hash": "+obSGkSEBCaoA8hsxM64yaxEMu2MzlHDIW5qYEFcdmg=" } }, "is_incremental": false, @@ -248,7 +248,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html", - "hash": "I0vm+qqJ4gU+PxWI7i8i6WvZVX6dhEOXk7PlROKRI/U=" + "hash": "iM2RJ22m6IT83MZupBpa+DnPCAF2aobstF98NKWhrLs=" } }, "is_incremental": false, @@ -260,7 +260,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html", - "hash": "+2tyqUgru1h5qDuvd/DR6XDYlknNmDYDI9Ik+Ve1E0I=" + "hash": "vuGD0f0O5N9WBGW946dxdDKvsKTS0oGK3XIdMqs275o=" } }, "is_incremental": false, @@ -272,7 +272,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html", - "hash": "a65YoVtCd4StkJT+V+qybyQXwAtwchtCwZ6dDMSjmP8=" + "hash": "MU+R9nZq6BFQeAp10WNQErTdj3EvsvtCR1dB9aY8jQw=" } }, "is_incremental": false, @@ -284,7 +284,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html", - "hash": "x55AnA7jZHQr0HJ4z7r+V9dImpcQr9Y2ibKI5Jn+120=" + "hash": "/rJZ4tSJSDgf57Rvk+LCr1oW8LjQWJEGDK7ejUkZo30=" } }, "is_incremental": false, @@ -296,7 +296,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html", - "hash": "dSVpbbEABNXcLbmAeHLtmjKwDa5hYqPOI5WAgH6WkEg=" + "hash": "wrGoH9crTMF6e/NRKLowpm8gx47YgLop8NBaavjFiUs=" } }, "is_incremental": false, @@ -308,7 +308,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html", - "hash": "yzyCP9ECHW6UTQlnlYOtQTzWqC5r/LxMDB+8kQt/jT0=" + "hash": "ScdYlcTg5qLJ5PaO1U780/Dk6BQbRxSmrEhhkZM0q7M=" } }, "is_incremental": false, @@ -320,7 +320,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html", - "hash": "5OyWAYi6rZ5/qLIAJa/Si4+chfyBoB6mUoRWmvxPQB4=" + "hash": "cZv0Ft/wno1VI5htph5AcUo//ec/XTjj248ii30JSeM=" } }, "is_incremental": false, @@ -332,7 +332,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html", - "hash": "QjwujYN0ecz+9qCHwG9fNHJCAGxzm4klHLM4/WrHHQI=" + "hash": "AALGMniov6gC56N+thlrg54txUNqAnC1m3FLp1XnLZE=" } }, "is_incremental": false, @@ -344,7 +344,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html", - "hash": "XmzSBRAiTRx7H9/QlYbfGbMrKxDfo/BPJ0ss4vr3EGg=" + "hash": "SPnBAyRgo8JmVAAXWCv45sx+PgoNMiFnNihhTJMU36U=" } }, "is_incremental": false, @@ -368,7 +368,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html", - "hash": "Y3rHaMKeCC+gefwzYfu4eGZtzvcPSXccckhrRXpeI+k=" + "hash": "PbvVCtygPWvpnABYPJQXvGAeOefqNhaOurpXuuMQn/w=" } }, "is_incremental": false, @@ -380,7 +380,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html", - "hash": "fOHI7LAGc7h3c7zIcusMQvQxH/tvX7uznknexhGw+v4=" + "hash": "6zo9GbsCqiqgC+MWXXiG+vgr40A1AbRmc4gEkd2hoZQ=" } }, "is_incremental": false, @@ -392,7 +392,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html", - "hash": "TJbVhJcx4qJ34TLnsTViE2+m5AIbXxy2xXvSAI6vQfc=" + "hash": "qdIWUvZtKViSl2SQXMHGOTrGQJ2Htu0qs4rOAO2IGKY=" } }, "is_incremental": false, @@ -404,7 +404,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html", - "hash": "fj8E4EOK901zaJkQWM1TIp8iqCpV8vprShrqopgtHrU=" + "hash": "XKP8G89WylheX9M62NHdUVbFS/Uc8XTYu99ksxuhXV8=" } }, "is_incremental": false, @@ -416,7 +416,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html", - "hash": "uvd+x/Wz2fLono6/K+bmxJA4PaeSbo7XgQPPu/khgG0=" + "hash": "2r3IJNZrrqfyfe/M4meW3JoNsJ6KLtDhh0g3nYJjIxk=" } }, "is_incremental": false, @@ -428,7 +428,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html", - "hash": "u7wN9Var4jQWo7cll6FupkerBR22UlsXDCANfuRAv+s=" + "hash": "a2W3Y/TYCPwT3/M6WG1HLVeZr+mrOvvFruz11VjPls8=" } }, "is_incremental": false, @@ -440,7 +440,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html", - "hash": "DLB6+HQggz57kPnlTqc/dMvclnBpJRJCj57CpO35HPY=" + "hash": "QhfovzScrVUZYHpzvjCR8MDG/lOwoesGtvUveM0ZuUQ=" } }, "is_incremental": false, @@ -452,7 +452,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html", - "hash": "KAmvt+fbr1R2Htc2hbt0EGl5Xjrgc1viOt8EtQtqCuM=" + "hash": "Edpf375sfuGsqJSbAT8N6TFQ2nG8445BzszIuRsKCFg=" } }, "is_incremental": false, @@ -476,7 +476,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html", - "hash": "iXXBiHQckbFgYruoZVcmCs1jpLY28dNI8Yt0txc867k=" + "hash": "F6Inw3dC2SWThbstJMU4uwi3Sf924otkVmtpacbXS7A=" } }, "is_incremental": false, @@ -488,7 +488,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html", - "hash": "QTbuycBEJ7F7lfXjSdAX3gUemAuF/ZxLOGkoeTgM1eA=" + "hash": "kyGVm6ITI+r/73FjjZqPyA8KmWvsdX8qJkv2E49f/8s=" } }, "is_incremental": false, @@ -500,7 +500,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html", - "hash": "2Zh7uNU7/sLC3d5LM2j7xw4rlDoS5fM2ic9ubi1248Q=" + "hash": "OqXghKHBrDAlvr+VHGkA6Bv2SVQM1QEW/ghVs4S4EOM=" } }, "is_incremental": false, @@ -512,7 +512,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html", - "hash": "tIF0q3klz8gqz5Sq87GEzU5wHAts4e2FG0F0n4kNedU=" + "hash": "4agUpWTuPsN23VJEFteOfBV9ElM8fg7VkofuxND90Gw=" } }, "is_incremental": false, @@ -524,7 +524,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html", - "hash": "ZtUSBnvQAJ86W8uWfZRSc/HcuD6Z1SbgIWt9273MpNg=" + "hash": "/Uyrc029Gbq3V3GdxFebLLmvWtQUadNrSF3FeTqRHUw=" } }, "is_incremental": false, @@ -536,7 +536,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html", - "hash": "ir73RDekjBQCnr7gJPrJVUSsHb/gkrzUN2eE4lr5lWE=" + "hash": "bmS8IkGZAfa+BujuAbYiDA3nxSzSDRnDD85JcpNLgPg=" } }, "is_incremental": false, @@ -548,7 +548,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html", - "hash": "jWkE3KUh9O26JHPkx7ZajXo/brAqjmtayQ/Ng7y5liA=" + "hash": "dxPti+TzbqOpavMnATMOi42cqSSfRH/zUlWvC9nkPWs=" } }, "is_incremental": false, @@ -560,7 +560,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html", - "hash": "nqdOatbb41xHHC8b7S0aHA6ipyYQQBO6Nmbsh9HzbHE=" + "hash": "DvN0fmQSnm+4ORfLEURkWe45+IkozPyzbyU2bsQVTs4=" } }, "is_incremental": false, @@ -572,7 +572,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html", - "hash": "ABU1Lhg1WAn6phO5mvk8OeKWFCplrbn9tHP0KCO8WrI=" + "hash": "qAm2i/wTC3EU6vefYs8JW2ZYeo/vRrU/bWBEr3jmQiM=" } }, "is_incremental": false, @@ -584,7 +584,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html", - "hash": "D3hs/7W8xQRpo4X97FZMz1ljs9k28fyh2K3WH+YLudQ=" + "hash": "U5bkR13Q0hwTffKIl3xVux+CPLjlwZpSZCaRX2WvAU8=" } }, "is_incremental": false, @@ -596,7 +596,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html", - "hash": "kIiRtxxjlhrxGy7SwpXQEYVQ20zsx+qCa1i78XglZPU=" + "hash": "knzsXEKLQkTX/no/hw6NCF4yWxOuADFLM1WBvA/7uXQ=" } }, "is_incremental": false, @@ -608,7 +608,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html", - "hash": "lFtqugDLnRN3rBXvQF22vbqnPqyloCVYKIcFV/6PzK0=" + "hash": "P8aWA/eTeLsHYC1YPFUx7E05tk7yEi5dFSmpiRtyMNw=" } }, "is_incremental": false, @@ -620,7 +620,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html", - "hash": "EJ8Lj7V9kXvxtzPc6VNxPEmAYB/wN8472jEU80xlXxA=" + "hash": "SzgGM3XsfnrZ7mUCIF+T/gUQz7r6TsqYqwxDxEDilks=" } }, "is_incremental": false, @@ -632,7 +632,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html", - "hash": "Qh25t8wzOXHh9VG+RlJNjexCiZyXQa1NN5p0RcU1pSM=" + "hash": "GaYV9COP1a7wi4PqesfA9s/TY6/+VJfw++jdRyS/0Jw=" } }, "is_incremental": false, @@ -656,7 +656,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html", - "hash": "FN3ds1Hh9jaqPtPn6W/ip11nbfW4Qc5+IdMdSKFGhhk=" + "hash": "C0jaBiDZQ1eDxO8jT2wfEV/rOvpuR/i/YtH4xJyV7/8=" } }, "is_incremental": false, @@ -668,7 +668,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html", - "hash": "uD//yHZ0dSUjCAjVTzFJwyHnIUEZL2cR/TabsjZ4MyI=" + "hash": "qtIG7Q2NdhvuDsuDi4g/Ew1Z/Cy5k6NOlcUOpj05/vo=" } }, "is_incremental": false, @@ -680,7 +680,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html", - "hash": "LN3yqtP9DTJQ9vwnMOSZPLxjFOlhSM+oi4aqrX9uPwI=" + "hash": "yQWfvWM4wRslDjsxu199S5X+kkGOWqqEAqxnNTNHG8E=" } }, "is_incremental": false, @@ -692,7 +692,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html", - "hash": "YnfSExqV79Nk2Br0FcbEm/Cv+96Dh9sXhW8nxlhlwsg=" + "hash": "wc7gQFERbzSIQ5G3Ycm26lDJz74oof7HZeBi6rr1Uro=" } }, "is_incremental": false, @@ -716,7 +716,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html", - "hash": "jKNoyOLBWzCfCkYFjdwAq1NY8AxNelZWi1mkRINnS9A=" + "hash": "BTFNcSVtG9c7V6TZ17OYmNDrk6BSfd6axcTeCsO+svs=" } }, "is_incremental": false, @@ -728,7 +728,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html", - "hash": "CYxaaYcipM4wDrScnaPIjCW2AENhk/OxF9M3PewPZxw=" + "hash": "BcQvbsGKYDTt1RIkdoueaqzb8xCY9znseWiU4rSi+KM=" } }, "is_incremental": false, @@ -740,7 +740,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html", - "hash": "xwMAVjRbazwGabNrdI51azof3UfJqOtC7yxcJZHT4Qc=" + "hash": "tHkRkGaOpqDMatn7h+jAzC1oyCa4eGKfiDe+nRiHzXA=" } }, "is_incremental": false, @@ -752,7 +752,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html", - "hash": "qCqeaT7Y3cap4WuZKYFR6/EY/xJ0RZM3EmporBI3pGI=" + "hash": "mU5+m8UuoejzN7pCvxo+6h3Ld//7DlTIWvWys2wg0x8=" } }, "is_incremental": false, @@ -764,7 +764,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html", - "hash": "lzijyYxDHUmCGIqYvoiRv5ruFrXrF8uEZ+mR7gin810=" + "hash": "V/lPbkoyUssXT9IjMLdXtxJJ5DDOHt5KSqcI0ONb4oc=" } }, "is_incremental": false, @@ -776,7 +776,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html", - "hash": "GLUfDahJMzxq35TNK9N1ob4ORQ8M3MEbwgdJdZiIEpM=" + "hash": "PXp46Fammj4IAiPyeL5XVs+aKb9I8ka/b2q30riEDaA=" } }, "is_incremental": false, @@ -788,7 +788,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html", - "hash": "HcdYa4lAxwWDttVCnj2Cy7X/3McmWuLQSLqewGuXAKw=" + "hash": "kytmyO48amuG8jbqqgxgiDlyCE1MZ8FWAyJ8Bce9fKU=" } }, "is_incremental": false, @@ -800,7 +800,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html", - "hash": "wEu3nKXSg7C9E4ye9E/2Be1JinPR2+nV/WTZhCjeJcc=" + "hash": "+xgiPDz0y08A8OS0dVS75/ibTUKr2MJrPbk7IGH/Ips=" } }, "is_incremental": false, @@ -836,7 +836,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html", - "hash": "vdusPNI2qj/yq8riccqkzaGYs3dxvUaMq1AIrb3YQCk=" + "hash": "6TnSu8ewUcMNV74iGPjhsZnEoVyRrqBNjXGYynu853Q=" } }, "is_incremental": false, @@ -848,7 +848,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html", - "hash": "/Yylj6si4nEyiKrmd8foy7kAlUnKeAxEergBl45oGjs=" + "hash": "RScYC3KBp8zDPt8CKwB0xtuhgty9ujh9M7k2NdzcrwA=" } }, "is_incremental": false, @@ -860,7 +860,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html", - "hash": "XpkU/UE5XRgDGJmqM9bA+j1OsliV4ZlFPxPZEODGdO0=" + "hash": "MIRPu2vAL9u1rR74h7ZDPKueCr4tM7rBOmIPTXTUMhQ=" } }, "is_incremental": false, @@ -872,7 +872,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html", - "hash": "1z/p8lBd475NzC2aOp/BNJfcSIfbluQe3iSrbKiM/uY=" + "hash": "PBW4j/G2OLRq24fOSX+OGaN4/TtEcTM5yKGnMqSgV5Y=" } }, "is_incremental": false, @@ -896,7 +896,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html", - "hash": "ME+HkrG/LMbhDYsAQmkxb5Waq7uWJsEf/gG8/CpTBpE=" + "hash": "h9SmjGrdYUMW5yZJIspgbqzge2/L/wX78izVhsPD62k=" } }, "is_incremental": false, @@ -908,7 +908,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html", - "hash": "8HVeVOw82tBMcYNNThksJfgw9fQwv0k9JTznxzSCzSo=" + "hash": "SssvmmjW2oKix3iO2WJZcnl2fGutyaoBp6kvr9ILe0g=" } }, "is_incremental": false, @@ -920,7 +920,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html", - "hash": "Lf6LS7Ign+EIPIr/yANvpW5QdanI+oJzFqIGUKym9v0=" + "hash": "IX7Y1QkyAwwaZTzxTl+n7XERUtxYsSGV6gGWO9iEdo0=" } }, "is_incremental": false, @@ -932,7 +932,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html", - "hash": "C9GQ9vmZG+N+ie4beDBD4noZdtiGz7wVXgUb52+/GG8=" + "hash": "U+9WnXipuO+7RSCwiubNZgD9nvUD7K5bW6Zo82iFtf4=" } }, "is_incremental": false, @@ -944,7 +944,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html", - "hash": "PQNmCsdpBCFSvQ6KzmzAyB7ypVMF/yYeMMSWZK12PMk=" + "hash": "L1XerpSTa9GZwxIK2mTItjNosRNZLH0eVHPi/V4Fr5Y=" } }, "is_incremental": false, @@ -956,7 +956,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html", - "hash": "chMo6eaUzqnsGUh/D5Qy4wCDaseIQa4fNjsXi9711cE=" + "hash": "AmTy8/XrcWANgRRu70n+YrFWrfzMkNBpKfZq0VzXCK0=" } }, "is_incremental": false, @@ -968,7 +968,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html", - "hash": "0cLRbkTd/YE3y11u8Ri6jc6PF0OqNpxkRkLVPuxybdM=" + "hash": "UwlPBq6n1o6nKpMz2BFRGXffApZkaJrJOOnCWuTLZGw=" } }, "is_incremental": false, @@ -980,7 +980,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html", - "hash": "JRw9J6BdwLaheONkeoXE0LJM8bUqxagMiDjGVQ7TzBM=" + "hash": "obveSbAu/HaS8GKgLK4/EbiLA7gtjFm2VGDKzfq6f6M=" } }, "is_incremental": false, @@ -992,7 +992,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html", - "hash": "qKC+EsNEOHWzgnBqPHvt9111Gi3xnxFj/X1Q2B4P22o=" + "hash": "kUmgtFIE+IDijsKQgEOc7X6R7jJHw1iWFAwHCxE9Phg=" } }, "is_incremental": false, @@ -1004,7 +1004,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html", - "hash": "SulSx+AD60vvaXKHBi10wIF7bb2NwMDoo9a+Z3tl6z8=" + "hash": "OgpTXfqSNKDR5+j2dSWMhItY7Z8vYV8huAWbhhmuM00=" } }, "is_incremental": false, @@ -1028,7 +1028,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html", - "hash": "lI7SR7PHYLDKk4gFcSXIA5C4UXdtoElpG5r1Zn+0lLE=" + "hash": "mknqPb44bjEWC2MSn0ly0KrHsEeTGcOyfjQ0uZygW/k=" } }, "is_incremental": false, @@ -1052,7 +1052,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html", - "hash": "fDcIMNHEck4BcEKsZhDBd58KfNDtTWhGrhCkF1aXBdw=" + "hash": "IBGj7q8is8OuW6z7sxhwsG3hS4pv1nRw67YYwMVpjSA=" } }, "is_incremental": false, @@ -1064,7 +1064,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html", - "hash": "Ti53Es11I/bRdpP6/FAMuHWuAIPdnXJX/ZdlmiJh160=" + "hash": "LTyK6WhZWBhve3PKLK9mEk+KZXk4pwdx5xgoo69mNOo=" } }, "is_incremental": false, @@ -1076,7 +1076,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html", - "hash": "u7Tn47Yzui4jl61pqOC1VHQdJ039xr3ZQktrWL4M/YY=" + "hash": "X/Gh/CB9nAPGW7oFQ1M/HjMheLegEU+Zwy18KeI8FmU=" } }, "is_incremental": false, @@ -1088,7 +1088,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html", - "hash": "yxZ7YoWKPVs3K1Y75sAqL/RPCM7mQrahwDEjfLYLrqQ=" + "hash": "N5MqiSG9/dxpbn2pwRdXeNUTHr4m3g3ut22S2HhiAJc=" } }, "is_incremental": false, @@ -1100,7 +1100,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html", - "hash": "v8HUB8P5//TqRKgj/oD+TQ89oFCZqMZLgblZHDAynqQ=" + "hash": "I/1Gg0IS/v4wnGzKkecqLqjjcX7RiztyQjeKXrSc1v4=" } }, "is_incremental": false, @@ -1112,7 +1112,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html", - "hash": "mPFVJwgmh4WqVa2KtzO/bs9+lN8/sA7H25iPYIdLG0s=" + "hash": "y1VQAKyJAF20BVjHv4+sibAWl6sY3RODS8qEMUHvm64=" } }, "is_incremental": false, @@ -1124,7 +1124,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html", - "hash": "kKkb+vgc+qtMolUvqcwpKFocthg6ClXjseD/X1xUWPc=" + "hash": "WVBH3fd1pqJK559HTwd3f1ZWmr4Q4RZMMroWL2mWkas=" } }, "is_incremental": false, @@ -1136,7 +1136,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html", - "hash": "CId6EjbZK2v619jJhYH/TLxGkP3rhl19LONB0zLqjCQ=" + "hash": "Irwu32JEv1OEa1F/1E4sJnn2X+FktRfAfOQFOxAgHvk=" } }, "is_incremental": false, @@ -1148,7 +1148,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html", - "hash": "o34stIrglVduI5N6h1wMNj9fvomG1XduZ9vka6+zRWU=" + "hash": "xd7gO9D2EHWCVMasaOJ+AqhN2NjxYa4vch+98uaEmj4=" } }, "is_incremental": false, @@ -1160,7 +1160,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html", - "hash": "nQMt/Ht3X9EpdayrNVi0oOX2hj0GFUowT9yMYVLxcHc=" + "hash": "gunA1dCxhyOVfHnKLm7Tsw6MUNhtZJmgg1zli/9oJ3A=" } }, "is_incremental": false, @@ -1172,7 +1172,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html", - "hash": "BOtmbQdU7JG6ufMCPdbsBWLsM2PLTPzExdy0cNqEpQc=" + "hash": "waXxCoic68uXr+aXn0ndEhsjmCWQZtNW1C/660KpSP0=" } }, "is_incremental": false, @@ -1184,7 +1184,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html", - "hash": "Aze8ygSv5yjn0UkZnbcdG0JwMtr/pLB/PaEmptmshV4=" + "hash": "DPhLlKPO0RmgEVCp/oxPZC3WoDCvO/EW9aj0+dqbSRs=" } }, "is_incremental": false, @@ -1208,7 +1208,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.Address.html", - "hash": "jYKHX5qIPSEHArXWKrovWgY0Pf/WuJuUphWRBSJfmEs=" + "hash": "1V5jc4GEtYx1Xn0QxIWqgLYH7VstokWyIt7RGYZRU9s=" } }, "is_incremental": false, @@ -1220,7 +1220,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html", - "hash": "AohUOs7KnlFYHyZzmCFWACx8BEUUQajrFkDsTSV0iJA=" + "hash": "2cMSQwU1V+EstWeY/6rt0DjBIgl/VH1rQF64PjVfkF0=" } }, "is_incremental": false, @@ -1232,7 +1232,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html", - "hash": "egcstCpVav9MS+/HZT1ce9AVt0kWWmYtgffMifA7AoM=" + "hash": "hj8i1WRr37dmjnCKSNKyD1lV7eH0wC6+U+l4qzio3DU=" } }, "is_incremental": false, @@ -1244,7 +1244,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html", - "hash": "fOST4eGrxmgjKKm6ZL3xbbYfhd9S5ldyEgErukta0Hc=" + "hash": "/PRy9uxLfmOhczCHrIiXv39GQKBiUZOqxd3ibcY8TkQ=" } }, "is_incremental": false, @@ -1256,7 +1256,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html", - "hash": "tW7PfoDUmQYQFnc2R8+DN4Io3r2fkGxhRg0TPrzMf1k=" + "hash": "Snx2W0A0OWx7nGlFnvlgnLk7QpqHY2g5EXBeM1WW0Jc=" } }, "is_incremental": false, @@ -1268,7 +1268,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html", - "hash": "VqFONhZ3yAG/OGKqpMuwD0yfyhdEsGctRMI2CzEqbhw=" + "hash": "jUDr3sbVYR6GOVPhjAnqwQmUlZdLNkfugp3UBNGGaCo=" } }, "is_incremental": false, @@ -1280,7 +1280,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html", - "hash": "n8fmIvhl688b6tDwlziSk7zhpt90WWoT50WA7X9Npw4=" + "hash": "H0pXhYza1CQ9kr97WjxmFOzMEfKEU+dU9CihZr1+zqc=" } }, "is_incremental": false, @@ -1292,7 +1292,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html", - "hash": "WIfW0E3VMf7iC2K2D2pS/vZWAWzCUVXDJtwUsM8IT/E=" + "hash": "tWffcZcO856Ss4PtqxApw8BniEO38o16PqY+IlR92Dw=" } }, "is_incremental": false, @@ -1304,7 +1304,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html", - "hash": "XO8Pjvcd8VvhFb+kVPinQY3tzW8Ts3+iWiMhqe1y87k=" + "hash": "ZyXm+yksr1aJqhuFOgAwpEz9ywgxKVgzf6QpJkhSws8=" } }, "is_incremental": false, @@ -1316,7 +1316,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html", - "hash": "fM86eY605sEvRn28fSiNUSAMYE7veGv4h7lCFxqwXR4=" + "hash": "/I+mH9M0mTiEdlkDEIUy+uFNqmWVs0AUV3sIVIyRSDE=" } }, "is_incremental": false, @@ -1328,7 +1328,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html", - "hash": "GnMoyfDsKaTJDLwlvgRVFmGfTDimHEMh1z7TNVXDGbA=" + "hash": "p2h+c9wgqym7Nv2LHO+yUBYvwPnRDNH5/WPAAt7YV5Y=" } }, "is_incremental": false, @@ -1340,7 +1340,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html", - "hash": "X4JYuXpQ8tgkOBq4k7cgNKpHd63wpRGkWKIl6AQgdFw=" + "hash": "6cRztf4tUFmq5yrCVynRkYACE5sQpOpv10G8SbxUz4Q=" } }, "is_incremental": false, @@ -1352,7 +1352,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html", - "hash": "F0jtsnpmCljPww3qUjYy5ZNTPv0U9EmitIH5hp+jzQ4=" + "hash": "RJ240c58PyDWmFfZNnkK0tz3O1H0S24qi0Yb1g0afXU=" } }, "is_incremental": false, @@ -1364,7 +1364,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html", - "hash": "ZUJH7pOB9RRwi9SuTJLT3tdR+TtMs+uV+eQtCsd6GpQ=" + "hash": "sHtf3787qBiELiLMYSkVXyHDy2amdb+ksdjYfbzbV1A=" } }, "is_incremental": false, @@ -1376,7 +1376,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html", - "hash": "s5JCzJHFWrnxXjTcED/VhFqmmtiOw16WWk4Bl5xXa3Y=" + "hash": "oDG3zQ0ItGekzwplmrINkO5MIPiH6PqMXCW67M4i5Nc=" } }, "is_incremental": false, @@ -1388,7 +1388,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html", - "hash": "vomMdSoJwz9oH7iUIR+hMqKvv24svCJDa0U5NAnpeas=" + "hash": "hBqj7EofMlRq7QjpXVy23bM0/3BGQfEv5di4vSk0MiA=" } }, "is_incremental": false, @@ -1400,7 +1400,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html", - "hash": "/Du/ExXQT2+GLqnQR2evfoR+DJ0Qv/QLqWU7sM97XhI=" + "hash": "/GmAlGPvTFTvo1yjacleT49pLZ7NiSFy2/0axdpO5N4=" } }, "is_incremental": false, @@ -1412,7 +1412,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html", - "hash": "p0uyg0iyxZkGMPQszJDQedMkhNOBiWdHr1TtMtftaRc=" + "hash": "OkHtsAhtREkg0kiFqylzk2qO5VIJG75Do+4lhcvR5Z0=" } }, "is_incremental": false, @@ -1424,7 +1424,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html", - "hash": "IgzzKzoIw0gEUMavMwdtIHHUz0hd8fzyI4VVEo2ZTnA=" + "hash": "rxT0Aa1mNQdu+wcNurbrDqLtyPM/pbv8rsQj5IXn+WA=" } }, "is_incremental": false, @@ -1448,7 +1448,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.ITxResponse.html", - "hash": "C4nDthmOu5WYsBtAmdMJmHr5lNRGbdU6sFes7mP4Tks=" + "hash": "GiLNXHZiiO+PIpMoofcgOtoSdcMAp39x6oroXz5pPow=" } }, "is_incremental": false, @@ -1460,7 +1460,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html", - "hash": "xP13IsO6bj1MuTJVQgqNyW3NCQ6YpJIE51XVdTzbwxs=" + "hash": "jsYNDJ5ElW+K5jynL1mkaGjgFA+yXykspSmQDzZhtdc=" } }, "is_incremental": false, @@ -1472,7 +1472,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html", - "hash": "OYItQdEtgCGrq2Dd7XkLXPnW8BlFFkwl7D0aHpMgvdo=" + "hash": "ypEOWwnc+B7DquT6IXptJOOnhkE3nsgGZKqI+7t37Ds=" } }, "is_incremental": false, @@ -1484,7 +1484,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html", - "hash": "2WguC7YHDyaFzv9DFw02pH1+QcZQL/izIIJBKju0hYg=" + "hash": "0Rii5d51MlDD1UGJjbHByFFkNndwV5njK0RKPNuA4ns=" } }, "is_incremental": false, @@ -1496,7 +1496,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html", - "hash": "nokHCT7xWgKY6dmTo8z0PvuNJ4CRofAcLCuFJvg9MDI=" + "hash": "Lv/D0VnHBvhHOF+Ozr9Ynt84XM0c1965iNnhJhobwGc=" } }, "is_incremental": false, @@ -1508,7 +1508,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html", - "hash": "zJP66g15jxbR2v+3DiUY1EchVzhXa1E+giHqgjzJxh8=" + "hash": "vnDwRjm8GT+hJvrtq2wnePoZ3/fnyuDsEJFVABUAj/Y=" } }, "is_incremental": false, @@ -1520,7 +1520,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html", - "hash": "4LZWGDa3xgJdp9TzmkRn6OFLCPX035oE55BBarHgBAA=" + "hash": "qKQ8ZbeioepD/o34zbDC/bqqM7d+cjijQqdMvl127fU=" } }, "is_incremental": false, @@ -1532,7 +1532,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html", - "hash": "w5aW+hSn342AMnpK1P45PmhzL/GG+vuclZn3Dc5vt+w=" + "hash": "3bRGyfl5aiMSRmihtTdGXFyVZIL59cgsPeMYo2Wiiqc=" } }, "is_incremental": false, @@ -1544,7 +1544,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html", - "hash": "wRXRXLkkcdwnPV49QqmsrQkndm4MX2pouiEcd+nTYpY=" + "hash": "naZBgdtxFe/wp62gIqgChRA7hnSfiPsQxBQFYb8LIs0=" } }, "is_incremental": false, @@ -1556,7 +1556,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html", - "hash": "IFnLDhiDfE0CLktnk6+WsmSMou/Igw7z32WjtIu9YmQ=" + "hash": "6p7QzEftX6uhJ1SLf1aY55kdZJ5HFv5l9UCfQBx/4pg=" } }, "is_incremental": false, @@ -1568,7 +1568,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html", - "hash": "CxaNiFfg/3z4zcgVYoTjHy4sgfLidSaIrqVLSXYz8BQ=" + "hash": "qk8ht/CFXHr/+PgQZq7mUI4AwOooFjwSaPL+4eZtNnw=" } }, "is_incremental": false, @@ -1580,7 +1580,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html", - "hash": "ndO8+vYomgElKE3HCqr4YZGrSyjR5gMNCDCQLXtdpl4=" + "hash": "9XlOMIr2qbZXxpJ3Q4yruc4oTdmuWrEa6fPZPpOXOKo=" } }, "is_incremental": false, @@ -1592,7 +1592,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html", - "hash": "eV3LvYNLU6a7lWQyaaUcQOIETGOn2ztN4RAJISdPY0w=" + "hash": "wkgZjZgio3Nubds+BZPvcR6cIrMSwunkC+pq+OYtSts=" } }, "is_incremental": false, @@ -1604,7 +1604,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html", - "hash": "BJkvWjcD8llpoWynRdfeF0iwj8W3VvkpYu822h8cz9Q=" + "hash": "KumoksvYNWk1wmS/jzCdGkgKHUcDuVKcKuuthBZN9WQ=" } }, "is_incremental": false, @@ -1616,7 +1616,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html", - "hash": "XVKlwb+9oOg3ydN8DRYu167xSuf/r938GrlD73/1nAY=" + "hash": "OMVlTGrUbNK3UjUhNz45CPYrkB1Eeh4NVhvhVCmU1mI=" } }, "is_incremental": false, @@ -1628,7 +1628,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html", - "hash": "zpkoa9Ikn+SowJxCH33Dq5XDp+hS/wtnpfCvKOCtr9k=" + "hash": "d6Cx10MlN8uGKKI9n83i0YbR4lLV4q7kTTBCsignM24=" } }, "is_incremental": false, @@ -1640,7 +1640,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html", - "hash": "O15Y5iC4oaSZBYTbUV7YoIYBOY5ircJvlF0DrikV8mQ=" + "hash": "rBMXaskbVW/n6GSLnZUZwo1cL8hSX5S2g9rgtK9OZHs=" } }, "is_incremental": false, @@ -1652,7 +1652,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html", - "hash": "LXtEsD/auYp2nFXJvtt7sfTSUr/pQ5PjsDLFwoy9j9g=" + "hash": "yuuErrUGgdjgGYQsus1DiRwUuY3NzbsscWeSiCGKd9c=" } }, "is_incremental": false, @@ -1664,7 +1664,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html", - "hash": "3kQgn1T1h6+02uX2wFeNE0z0FrFC2m/lmjrNoALexV0=" + "hash": "SgJeuZgZlgq6SRE3ySzqMHP6i6MyAYow1g5FWeI9A/g=" } }, "is_incremental": false, @@ -1676,7 +1676,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html", - "hash": "Vp0LbVmoL/b/H4KxzdoaV6nwoUGl9oSo2qwWv9N0fiQ=" + "hash": "IeO0id3XaWhmodUIVopHwlh7XN1EEZp3tKBQc1SIhq8=" } }, "is_incremental": false, @@ -1688,7 +1688,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html", - "hash": "3iKBvdIVCqIl6ZcxqSsomr5ONn/lvyJ8HoN82bFWyoI=" + "hash": "HSnbqy2+6HoA1ypUwWFxRC8wwObjDySBOL3KTi2Gh2c=" } }, "is_incremental": false, @@ -1700,7 +1700,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html", - "hash": "i03e+dKcOiAc9777UnKDhnY4DJc7OzFFvlmnSjqvX8g=" + "hash": "JXI488AIF+DxZpHowDOQvpNvAUrb2gtMXVK6rFQzKIo=" } }, "is_incremental": false, @@ -1712,7 +1712,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html", - "hash": "78SkUbx2Cz4ZHTEHTQANN4YIgRbG+x4t1s4W1OOBCcA=" + "hash": "7vIpuA0QrNFpe+48KwZKNh8S4fKsiRvcVvn1NVSGVXQ=" } }, "is_incremental": false, @@ -1724,7 +1724,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html", - "hash": "puqY215uNJrQYMg/i5nwyQcspJudhHfm9TQy9KM9gQw=" + "hash": "LvxAlPq9AfJx+MC/yufK+0JfhAcsYUmc82p5S/hwBVo=" } }, "is_incremental": false, @@ -1736,7 +1736,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html", - "hash": "unO91S1obSQb0DAZ4YuZ+RsOmchq7YRjM61t7jzm0tk=" + "hash": "4s4j+GqSI5Owc54gNjAU8SakEvP4DA/sbzBy5FAGT2A=" } }, "is_incremental": false, @@ -1760,7 +1760,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html", - "hash": "677InGxyfiuGwdYZ98oIoY+Awuklr0q1Nmn/yc0pUzc=" + "hash": "EwA8Ku3jBBeBivxgINK3v/aOfNrHuJaQ7RVwF3M9OLI=" } }, "is_incremental": false, @@ -1772,7 +1772,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html", - "hash": "vKud1ZafRWnx1EtGUUzocglL6xQnuISFaZdUpR8iVso=" + "hash": "7a7+1kWfLlmV9z11V0S11Wg00/GouecB3Izf3kIg1qY=" } }, "is_incremental": false, @@ -1784,7 +1784,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html", - "hash": "6t4AJEyqejyHb4GM1q4a9mzfHS164wvMN+cquI8bcTM=" + "hash": "lrgvh3sQWl4gy3o8DbCc9KYwleyRfX31j3RJqbKWKqA=" } }, "is_incremental": false, @@ -1796,7 +1796,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html", - "hash": "pCVt0EGXRrqJQEW0xA8bdg9KqzEfbNtYaL2Jf4ndkeo=" + "hash": "PM02JeikLFyhK5auvDJsYItDcnW6fAYkVH7BbIqn8KM=" } }, "is_incremental": false, @@ -1808,7 +1808,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html", - "hash": "G+NQwQa9w9h9PWVZLH/8HE4nNHoCkxotWf6qF+kB84s=" + "hash": "VK5sox3aL9CEZlwsDiTEe5wGOeeQfgWWv1e9ng1Eyzc=" } }, "is_incremental": false, @@ -1820,7 +1820,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html", - "hash": "r8yuYrsrl7O4n94FGddbW+b5V7dRT/oBurU4129vq9Q=" + "hash": "ZmjNSb1ErSWm99byCb0GwQjo9Ajr2xK25ATfVhxd6go=" } }, "is_incremental": false, @@ -1832,7 +1832,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html", - "hash": "bdj365Oz4X+uesSH0EuJK3Q7OT5t0V37c4q9UyJ727Q=" + "hash": "H0kQ4mv2z0gO9oda+FW7/aACavstSKT9cQ01L5XnvMs=" } }, "is_incremental": false, @@ -1844,7 +1844,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html", - "hash": "ciSXbNxMyquFgU9rgydukABfZTeB9KJHjugqwzq3+sQ=" + "hash": "WoGwZo12pKQCVWhrnDvyuE6kYD2Zk8kG4xO6s1eZWtU=" } }, "is_incremental": false, @@ -1856,7 +1856,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html", - "hash": "DmvDA3UMq6adHWbDJ7I8FI2q1AnJUHLjJQg2eGSbCuk=" + "hash": "iBl2e5JkPMy0exVMRrkfcH5dW/3+boAdF5BsESaU+4g=" } }, "is_incremental": false, @@ -1880,7 +1880,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html", - "hash": "JZxBNq+921x90D23kQ+mm+mNmve1Q1Wf85oxAk862W0=" + "hash": "hL849VfuiMWemMgAqaGejfjMm39dcOmWgGVUWXdTkDE=" } }, "is_incremental": false, @@ -1892,7 +1892,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html", - "hash": "NDP5RYfzerLpdkkqIi6xWx8JslawGSO7011u47yyHsM=" + "hash": "7kDaHPTvNPSQyGoXYJx1YtwwbegYWqTQ3uKObt7HXOE=" } }, "is_incremental": false, @@ -1904,7 +1904,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html", - "hash": "B/YcJjdd2HOjtOSV0yOurngtLEWSt3/4ZERWoZ02E3o=" + "hash": "8l6BN9vonREMvXaWbvqQPIpphhKmco0iMjvZK3wrNks=" } }, "is_incremental": false, @@ -1916,7 +1916,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html", - "hash": "35UF4CYl5hZ1/m034zuzkpmGd58qjIzoWWhHYDkhS5E=" + "hash": "bXH6W7TOXBITqIFoj1nlA6RUkhMyagusdIBeZCbmDEE=" } }, "is_incremental": false, @@ -1928,7 +1928,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html", - "hash": "sclpMY4bLtmRAUViZ02onTzsTdVvVJKin1HKzfZN+3Q=" + "hash": "7czLF0ot7n/CMA36q2ByHM2bSMUMTB3gi58czXdf9a4=" } }, "is_incremental": false, @@ -1940,7 +1940,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html", - "hash": "Xkt4o0Iwa1j4vqYtwl2jOtp3Bf8g0U1JZWHQ1BnSQSQ=" + "hash": "lw2W1HZJ94xK4WYXXimpDEtr+YM9PPavq3WRd/j2r3Q=" } }, "is_incremental": false, @@ -1952,7 +1952,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html", - "hash": "scFLmWEYTFMKhfEWiY0X391JBrFbJeg0U2KM2GQ60cY=" + "hash": "neHZEc5SWmED2rI1emximF3kxpGscsxLbJtbuBGPTUI=" } }, "is_incremental": false, @@ -1964,7 +1964,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html", - "hash": "JerNi4kY7aFnh5AbQAA4KL7B9AyannJ9MTkXgEyVY4k=" + "hash": "SCjw+YLkULOCkK98SyD/VRP/58X3YdXY1fVEGaqjorI=" } }, "is_incremental": false, @@ -1976,7 +1976,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html", - "hash": "SeVN0U8dLYj/Sd3HFB4YRWrl9QECAR+04p6L1XliZJY=" + "hash": "4o2yjwdAqPskBnsFdbaJN0R4EtefxymwGOe9ubXQMYs=" } }, "is_incremental": false, @@ -1988,7 +1988,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html", - "hash": "05VoAqkl5fV1zM/Xz8WNEUEBxYSdpkAqS/I2ME6bB/g=" + "hash": "G8tPOWM8weRgjaz+AhSphcq/auOwZBBkeqBmkEJYsXM=" } }, "is_incremental": false, @@ -2000,7 +2000,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html", - "hash": "6SvG1nzsE4aM2wQ5FRRp7uwtZxZMojExWqCuQfj+Mi0=" + "hash": "XAy+ombJ/VTAuAQ8BptQc0o2p1BKS9wg/ZCWTMXzmSA=" } }, "is_incremental": false, @@ -2012,7 +2012,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html", - "hash": "1R2YUg6Vtsr5lMJ7tYp6FkyWkxYonTrf3G7wVaRJOJQ=" + "hash": "1j1GOT1ITXQwLTutMdFy0QmZOpL/6SCU1lMw6dtYqu0=" } }, "is_incremental": false, @@ -2024,7 +2024,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html", - "hash": "tOPTJ47JJ5HD1wai0QW26DSOdr15w10+U0Yc462Z+qk=" + "hash": "y5oqMEB7OeabmgYipkijgz4FznzoFrdXj3acwQVcIXk=" } }, "is_incremental": false, @@ -2036,7 +2036,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html", - "hash": "P9TVaN5azeKyEwfanfKEHRYRsGjZbPP89vnovKdRvIc=" + "hash": "FS/q8tLQ8RhH2Ut3FPt/BS9cJwrrxpGmKoCshC7sWFY=" } }, "is_incremental": false, @@ -2048,7 +2048,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html", - "hash": "EBmBg75LNhIcS5fuAuef4kSLcCtrz8nOC3+JKxmf1x0=" + "hash": "RFNLwIXHaAx0ffLzJR9Q1UaneH2vLYuZ3iE3bi6jrGs=" } }, "is_incremental": false, @@ -2060,7 +2060,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html", - "hash": "u2dQPvnF0qRh+azrtRL8oCdl8w8h7qxial0+LJyLyxg=" + "hash": "R0zGczlrWRqR/3MO+Anyp/+16nzYsOGub8I/orXpNtk=" } }, "is_incremental": false, @@ -2072,7 +2072,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html", - "hash": "uLLzdmKXjIfVJQIgGWGFCf4TaxyAmbiQuZABxLtmE7w=" + "hash": "EA/tzXfBkfJR9S78MwXlcMB0OYb0C68RKVy2eszrRIw=" } }, "is_incremental": false, @@ -2084,7 +2084,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html", - "hash": "OHfRBxHkJQTEhwjkg4mkL0iPTmEqs7gy2nW4OLyuWzc=" + "hash": "K66jcD3w1acqBxkFE6CX3buQmdZKV0FfXoUnQ2BhhAQ=" } }, "is_incremental": false, @@ -2096,7 +2096,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html", - "hash": "JEH6BvGEoJ7/W2Mf+FNitkUhMnLvU9zjXxtiHHcprnw=" + "hash": "mZcVevEc3HIwZ/Snyy5KS4+3MVj2toZBDrz6tLWz5Ps=" } }, "is_incremental": false, @@ -2108,7 +2108,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html", - "hash": "4G3bhO+7nPT0FlBk8nKCtTOXAKJuUXAeuUbjm8gDxOE=" + "hash": "Ty9a/Nc6c9afoig3g+AG2DEwnlPKTCKFYVMp85Kn3Ck=" } }, "is_incremental": false, @@ -2120,7 +2120,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html", - "hash": "bZOhVXP79ZHID8iQf6aPLKyi5GmsX0cPhUfVmeGwvnw=" + "hash": "I7hYvW97l/VnQ4fv9m/bRy4dTTxmriNfV/V9rDA9bQw=" } }, "is_incremental": false, @@ -2144,7 +2144,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html", - "hash": "+44qNEQhj/Df0T8ieZ3B35XK7yi85YbZECFUvFPCJC4=" + "hash": "TecAHHZNZzit4+3OBTvdbAaz1YmBGwSLEddpaH4NyXI=" } }, "is_incremental": false, @@ -2156,7 +2156,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html", - "hash": "xNdrZWspotStzeaup9RwInRHKTYHVDIe40PCG3CIcAw=" + "hash": "6IqFJW8QD4b8G+gIsv4YrFRbtNoCK/6P7G118hbmxjI=" } }, "is_incremental": false, @@ -2168,7 +2168,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html", - "hash": "W04KryjUG9FPyGx/eRiOb2KpT9NVG+3cxCd6hlLdlsY=" + "hash": "4ZVPFjj+tjKeOZuEFbQ90vjdDYBJXKLY7LVkMjhbYQQ=" } }, "is_incremental": false, @@ -2180,7 +2180,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html", - "hash": "jUPJdQQUxPTdgEn97HD1Lf0C4/fSjRdc63AKZwbfCZs=" + "hash": "x0ItXdUwl9okeul4d0GK9dtk9UtqLB0MyPzln1t56bw=" } }, "is_incremental": false, @@ -2192,7 +2192,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html", - "hash": "r4LKzP1paY4w1REuz8pOVh+mzctal4WPsChG/6sm7oY=" + "hash": "iZaKOpdQ5RgZGNJux6oIs1vRw4YwrThmTgQIH735FOQ=" } }, "is_incremental": false, @@ -2204,7 +2204,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html", - "hash": "fw7H4dD5JOjKdW9QIKsV2y3Bg3l4++79ZtQOgDK9eIM=" + "hash": "MlIiFq4fC+0Orh2XZps8nyBVTgSNBPyi/fjDV2h8mRY=" } }, "is_incremental": false, @@ -2216,7 +2216,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html", - "hash": "+RcMLLAoGpyuk74kStOBIOU9On4lV2Spl9jB4Sx7pLE=" + "hash": "QtLB3kxu8he7nVJ9by1aGDT5LqS33INq0mhCH0/eGAo=" } }, "is_incremental": false, @@ -2228,7 +2228,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html", - "hash": "+ob2kD+ytghiM6mR5ruJa/j8eQI9sx7YhH0fZyZvMmg=" + "hash": "5UshWcUzzcGCm48vo5iVJYKlTufx3KqsCWQuy5MU4SI=" } }, "is_incremental": false, @@ -2240,7 +2240,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html", - "hash": "Yx39wn2AnNcEgVi3qRFNzgfzg0StMYO346CC3tW0JcY=" + "hash": "w3E0SrT1TF4q/8OM1++2f/Af5egv6MJ9P/t1ZfDHWZs=" } }, "is_incremental": false, @@ -2252,7 +2252,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html", - "hash": "UCbo3NrBWOdbogVhJY+pSDMdg90JC/bHXRLUIOJvrpA=" + "hash": "5hHlLVL83Z46tpKGZMYKaB6mIAQr+yzbswL8vYli46E=" } }, "is_incremental": false, @@ -2264,7 +2264,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html", - "hash": "aVymHqCDVJd9Ag/f/DUZ1lDAIbN2qAh15uhYz2U/9wg=" + "hash": "cXvaLVOPTYgsEpk4rbNQoPul1lkKJOicDAIkcrKbh+E=" } }, "is_incremental": false, @@ -2276,7 +2276,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html", - "hash": "nlkGTL4oN6aIRmKxeePTGhzh3+UuNfKk4XyeLlwnw54=" + "hash": "+mPnWTXWr4YpVdaj9xo5TxsVy9dKXc8pViUpbi8Cgm0=" } }, "is_incremental": false, @@ -2288,7 +2288,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html", - "hash": "jVIvjc9cf6b9dZwIot7VOAYhU4KaqNG+8azOjSCJSvM=" + "hash": "HTgsAdm2nKUUUyimhAXneLNWCNPcj4qHXPI5g8ZqEqg=" } }, "is_incremental": false, @@ -2300,7 +2300,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html", - "hash": "AFtxkiFbe6JoXQl5yWriK95t0vvcZFMuyFhj2Olht3Y=" + "hash": "t9WIotaLDXFDjYTlVca8vrekGyiSC/Bdf0IJVuA9mOU=" } }, "is_incremental": false, @@ -2312,7 +2312,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html", - "hash": "sPXVZqDgc9R6hY9RFJInnE/vQKfRkfTyePy7bld3Ofs=" + "hash": "GA/2Bhj5VdAdM/5Z0qhcw72gUnQy3dIH5UEPpygaPBE=" } }, "is_incremental": false, @@ -2324,7 +2324,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html", - "hash": "4YlsBev4HbNiRi8JUnv+V0TZ3Ep10dgz2mEeVpHShGc=" + "hash": "SvkkDv+TnelMHXLMpRmYYodKwsf+IZX9DtbDb/bvp/A=" } }, "is_incremental": false, @@ -2336,7 +2336,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html", - "hash": "+O3Hu5u5PVDNQXATdlp6lj2UxxSXiBmqzaGtnwt1KLc=" + "hash": "LZC7Fg1s9tLDurHPGGQQ0c7dfttmDhfvgwX5hdECCQQ=" } }, "is_incremental": false, @@ -2360,7 +2360,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html", - "hash": "yWsohqxrpPE47lvCOIyjVHAO67GiE33ETrMkWhCCBts=" + "hash": "qOhiBFYa8itKH9f6UneDoqb9m20quVe9RthQk6FGiXo=" } }, "is_incremental": false, @@ -2372,7 +2372,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html", - "hash": "IYQOcmLe3Yim2oKcn4phfNM2AI06KLXaeXxrh2Qt8BA=" + "hash": "iHx3+Tpe5IMQBMeXYip+hWQkhpBSJ1UeowJ3hOoi0NE=" } }, "is_incremental": false, @@ -2384,7 +2384,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html", - "hash": "yuoBInXZ+uTf4QCh9x03VLzsWtSENA6As+VIVHWlZJY=" + "hash": "IjQqsOIJ+e9mJtvw5t/WB4HIh6NC6Z6kz14fmVX8Odk=" } }, "is_incremental": false, @@ -2396,7 +2396,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html", - "hash": "fAL+DPwQeS8d0MmUBsULbBe0R+rwz2WUgIM2Ecskrvs=" + "hash": "ervnCbp9QxP94N5N1GVccSdsIAjQ60cnJDMtEXk4SvU=" } }, "is_incremental": false, @@ -2408,7 +2408,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html", - "hash": "RzSWSC4If+FU/cSHmYYl342OB+CAu4+6ya0jeD9Hsnk=" + "hash": "qdKCJJH2C2dmD/Q2NOWNWd7eZIdKk2J8Z+0oeNUM++A=" } }, "is_incremental": false, @@ -2420,7 +2420,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html", - "hash": "hek3t89YUgBN52kns90M5qkwJIQCUHi3VS9G9gXjmZ4=" + "hash": "4k9/qkVXF5/DZAfsvX1qxSYMocQQU2ra+RyMPshUXV4=" } }, "is_incremental": false, @@ -2432,7 +2432,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html", - "hash": "qxQcKnEbNqEeRWD2BWPlSMarolCUSxiqB1z2rjdxuJE=" + "hash": "iyl0lBMoWfyMCvA9tKgBRWWGQ8UddzdeOt34HEoUvaw=" } }, "is_incremental": false, @@ -2444,7 +2444,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html", - "hash": "sHjZC/ZwnrtbGnQMf2edd0JPs4h0lF4gureKYb05Ae4=" + "hash": "SJ104DMyH35owZWk6EfhdeZh9uCmvB2UrkI0J9O2+Xg=" } }, "is_incremental": false, @@ -2456,7 +2456,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html", - "hash": "MYoc3euj8OzQF00o4jNM7VT3CU2w2Wa2CxsV/sumses=" + "hash": "HtlvPrPyi/JR1v3C2Xnfim3ed4mkSsdXY4R02ftsVO4=" } }, "is_incremental": false, @@ -2468,7 +2468,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html", - "hash": "YVs/y7bNONdPRhsVAGVdWE/24jjeOsvBt6xJwgvItnc=" + "hash": "lx/yQGGcl1rBRUxzDE8HWSmo7uD2VJPV/K4QseFHGmI=" } }, "is_incremental": false, @@ -2480,7 +2480,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html", - "hash": "6pYLJ0aUULUzZ/PoxhJ/f+6zKHb2Rnl2H9cbGiJ87JU=" + "hash": "3KHEPxepd84Kx7pzcpcG+tfkycGOJzexFTjK6CIiVs8=" } }, "is_incremental": false, @@ -2492,7 +2492,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html", - "hash": "SDT0lCVwmeuRsO6F7HTV/gDh6hCE2HFE45CN+eupryM=" + "hash": "VTh+Un4m83swcodAOc0t5b173xPC9DkkADzPf0vUfYE=" } }, "is_incremental": false, @@ -2504,7 +2504,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html", - "hash": "klTMNZAlowtJjT/RbJzpCoKO2B2qIaXLotdKORJbBEs=" + "hash": "SC/gc41r/Z45y8cjW/DMQOa4t0iIjgzdmAoNbgpWMxM=" } }, "is_incremental": false, @@ -2516,7 +2516,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html", - "hash": "gM3B4lqIwu4Gb0DmNBSNqJ+YwSVAtFWrVn0AWonArnE=" + "hash": "SQY9ygA/8LG35ujl/ZeaKvSV1X1sSzVOs6StcmUloNk=" } }, "is_incremental": false, @@ -2528,7 +2528,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html", - "hash": "H/7nmn9yPgWb4fYaeYSDdJCUPEgctBZAN8ckVUW6WaI=" + "hash": "yaZI0Y33LJW3UDa+g8AIIYvYkC5qHKbH/WObmuolJWQ=" } }, "is_incremental": false, @@ -2540,7 +2540,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html", - "hash": "j3nXK4F3BKfyG3mAWMPG3DIbsyGBGImyt1VpSIvg+P0=" + "hash": "xZ+zt4nUaliB3pPrPU/mI+DrgB+EQO8tltm8/Tkm5O4=" } }, "is_incremental": false, @@ -2552,7 +2552,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html", - "hash": "wJPcD+brMkvb0R6eK1LodYZ7GnBL0v5oUde30CPaR8g=" + "hash": "GaMepIFiQSX5oa09kiTOEnytjXNCDuT0LKa0ZPWuWJA=" } }, "is_incremental": false, @@ -2564,7 +2564,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html", - "hash": "uDze3nFTB/IjguH6bN9qBJs8HTFabv20rhJDluLgzBA=" + "hash": "k3Y1bZeZitiQd3ZYUHMveyfxhYfn6ImWDjy6SuqKHtE=" } }, "is_incremental": false, @@ -2576,7 +2576,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html", - "hash": "CAndrsgUgcnyu48uSVECAe/eMeCK/gvsgCNvbgaQc8Q=" + "hash": "m0It1u2AMs6iAvIHoSgcXgv8TSAzDjQfK05rLURblpg=" } }, "is_incremental": false, @@ -2588,7 +2588,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html", - "hash": "HAqLY+SzUybS9y5rZMckD5XFI2SBxeHPH+Cwtps+NjM=" + "hash": "s1OV7b1OIupGUiK12rV6SDXZ7ba3J7n10WCErwqBK6M=" } }, "is_incremental": false, @@ -2600,7 +2600,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html", - "hash": "V/k1kwdkCMv7wYs/VzzwbrlOvpry81H5DZITa7yDsTQ=" + "hash": "gPKop+iWcTv/iRLSPtlj4uyHMhIPpComvEGNXYcNkkE=" } }, "is_incremental": false, @@ -2612,7 +2612,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html", - "hash": "YGfwKki+cNZ/c30Ski8fvVT8X4cI+GlSv3dPzgVTCbw=" + "hash": "377+fUiW3al2cOqANO0ztabGbW5jotrAcRia/leoFb4=" } }, "is_incremental": false, @@ -2624,7 +2624,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html", - "hash": "J2krfJ4P2/w6j+QbvUmh+h21aViaGkCbFxVsJ9FhVXk=" + "hash": "OU/sUdsUqlmX/TOBmVzepABIl3qneENKvmgc6+9pcxg=" } }, "is_incremental": false, @@ -2636,7 +2636,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html", - "hash": "nA5hAy/uMeOsVncqkHiSL294BuZJv1CFhvMLBWjc5uI=" + "hash": "ZfBxug9/vwVNJ5ZQW8vq1ErluAHTN6oiVAR4uoE+OVk=" } }, "is_incremental": false, @@ -2648,7 +2648,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html", - "hash": "wLsV0O0YlcTTayvFU2vh/SoDEj/r05VidVKaS7MCWAA=" + "hash": "sb7u5ymGFfv9E6BrCZyflqOeGA1eHwkdSJzYPbi5kug=" } }, "is_incremental": false, @@ -2660,7 +2660,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html", - "hash": "IIJ/CCi7Bm/vxoRFZwiVX8NT8CQW8ph78meD10ZANeI=" + "hash": "NdFfUUIvjZ5xysfi4NHe3avWn5wYtMxHA+N1/A00z+c=" } }, "is_incremental": false, @@ -2684,7 +2684,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html", - "hash": "OJA9rjEdF3bNWIUYIc7twJukftPsdb3WmxRuliM6yxs=" + "hash": "wqCYUP38rLH6a2y1ze80j52qP4WPgtT41EaRxpTIcqk=" } }, "is_incremental": false, @@ -2696,7 +2696,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html", - "hash": "BGDgE54XVLX3LSZz7PoRoVZqFyZPC3EVTnI7VZhuQTc=" + "hash": "uhQmAYWO1taH0QhWxTbcYL7nkCAAtKtQ/QRq5WFc/cY=" } }, "is_incremental": false, @@ -2708,7 +2708,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html", - "hash": "nRJ907eCHr/aW6tG97G39Ncq0tNeNfYs8b2E6xVAARE=" + "hash": "DSt9CiQ73l90O9CmYWFfaiAP0BTqrzjR2OY601qMblI=" } }, "is_incremental": false, @@ -2720,7 +2720,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html", - "hash": "qZAC26FjH8tzVfqWQFjek8VB3Zz22uwaX3ObuEW2DJk=" + "hash": "LskxJ96wk1r954S4jjcH6igFnyz7+WqiV2JLNssF6yU=" } }, "is_incremental": false, @@ -2732,7 +2732,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html", - "hash": "CaRoXL3HBR9XhxxSO5Na3lQRKXzPo8phvPJVAsp8Ki8=" + "hash": "yoV6NF0RmUnNM/oEkuYCVcBjNxsPZW4/ka3YOi0JLTA=" } }, "is_incremental": false, @@ -2744,7 +2744,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html", - "hash": "JVITP/RgC61Of3yiez8KRrEsA78sZjYxMZsLkoyqltI=" + "hash": "N7ZVw0U877B4bL7c6WP3sVrpSwAmGiRigf8Rv646vOU=" } }, "is_incremental": false, @@ -2756,7 +2756,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html", - "hash": "evKA+rRFC4Mw27ETtlu2/1dFb2OXbECDCRyyUG2t7CI=" + "hash": "9XRCMycDKOt247NJQsDio/KCpqRjVgpTy8nsrsZETP0=" } }, "is_incremental": false, @@ -2768,7 +2768,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html", - "hash": "j7YGBAZvSjrpBXQP3+LUKI1ur8I9gzl3iwketdxEY8c=" + "hash": "BpIir6vJLhPDWx/Nu+l0oolkbBZeMrusGvphm7Fty/I=" } }, "is_incremental": false, @@ -2780,7 +2780,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html", - "hash": "vEXsIPydDCvCXbojphS9oXfApn8bsWVhs8a9pgzYjEE=" + "hash": "zvRjWmAr3bBV6y1pQpwP9iBOTlpjL4BjVCpVdhVJcbQ=" } }, "is_incremental": false, @@ -2792,7 +2792,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html", - "hash": "xXhNVBVzrV7IXZS6uILNMdlIsOuH0H6epmvHoMPFypI=" + "hash": "wAx9tFsSnmcQine2Y4oSzeTXsIrs67ARnUZ1DKOZWdA=" } }, "is_incremental": false, @@ -2804,7 +2804,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html", - "hash": "FPsonjOujk0Ugvc2dOEQHzW1eAUIk5VuT/WfY0idyuU=" + "hash": "o+iHDvKRzhF+XqKlw25qOskshQxB1CH1QUWr9hARzJ8=" } }, "is_incremental": false, @@ -2816,7 +2816,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html", - "hash": "azL+AIMlwmtfFyA1cEZDsAcEC80pop1RYVrz2sTcdKE=" + "hash": "lah5Z7Rjz9M1JyJ3LetD1P1i1i4NuMk3OxIepODXPOk=" } }, "is_incremental": false, @@ -2828,7 +2828,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html", - "hash": "WQmGbXjMHAjZnMKISkA7wDnAqAf0IOwVT2NqEKMnN/c=" + "hash": "uYIEtSA6hUI0oEBeafyrF2N5hxvmox8nTUfKyku3luw=" } }, "is_incremental": false, @@ -2840,7 +2840,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html", - "hash": "3muM//jHjw17davhCeSrh2tVTI42jbp9FL0752PssOo=" + "hash": "1rVqo3yjuq1RYLWW0+LwtqTgSKQH+67wOU6tyBm7Zj8=" } }, "is_incremental": false, @@ -2852,7 +2852,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html", - "hash": "+6FTnMTihqu27AEZMh/wO7U90ju5jbp5Dpyyk9+S7/s=" + "hash": "lCExoqUlIfQw80OOj/tE/SJlqEn3EbXrwQiR6nHK+Es=" } }, "is_incremental": false, @@ -2888,7 +2888,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html", - "hash": "kB7gvmJgI//1M7H8GZjPrROJcWvgAcj98JMCKee6DaQ=" + "hash": "RlrV0ek+1XG7PKtwU/oGXpOfT66EDmQfflMKsN9Ipd8=" } }, "is_incremental": false, @@ -2900,7 +2900,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html", - "hash": "nGCxfuy3Wap6O5RO5AISPyItunBwzDlUfK/62lckQo4=" + "hash": "hwJmGykGL59iPsu9z9h2+LgYYS9SNX/6yNTnsVKO5So=" } }, "is_incremental": false, @@ -2912,7 +2912,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html", - "hash": "O5kgJGboSZKtjDKPNCGOgYb9IBrIyOXR7pKiakdc+6s=" + "hash": "Dk5OHz33GXfGDRRYwM5WEpdo++SnuKPVF/U2A3vFNmI=" } }, "is_incremental": false, @@ -2924,7 +2924,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html", - "hash": "vX4Rx1WMK2FS+V8RF/JIvlHBLual5DHphGgB+2PxMhw=" + "hash": "PZF0ScRrz5v+rJnRQyZ6zDJhSwtRKopks6rnekx9T4M=" } }, "is_incremental": false, @@ -2936,7 +2936,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html", - "hash": "03Sx6m3CPROA5q9sOhPuLWE06t3PQ45SkiW+84sWwuc=" + "hash": "z+YT5deuW6gLaTN0GslCFNeZaczApCeOJ3n2Uskkg9g=" } }, "is_incremental": false, @@ -2948,7 +2948,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html", - "hash": "GpSfjnhAnjBIOcmn1mfDQ6CYvSwSE4Nfb2t1fb8HBXc=" + "hash": "uXl1YIS6kJYIG7EVxUKF/w5Xny6t8B3DHwRH04g4H34=" } }, "is_incremental": false, @@ -2960,7 +2960,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html", - "hash": "BLfu7lCYMj8LpnBsz/bYBn+/TRbxjEX7TjSjoceJcaQ=" + "hash": "M1rPOQCXhl7gZRqeccohYV9hNTxq28HayCKxBML0XXA=" } }, "is_incremental": false, @@ -2972,7 +2972,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html", - "hash": "CYyct6Q4xJx6nOd7vvkU1ak4pwoSKmeeVFfP1CaFVdM=" + "hash": "RliTKE28q+J6eheZ++p3TrN+wXG2zhe+85ChG/dXvN8=" } }, "is_incremental": false, @@ -2984,7 +2984,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html", - "hash": "PPd7g7RSBSXCQMCDupDD53l19ie4NznouedaNMzyxBI=" + "hash": "9BtU3bM02dV1ipeGttxqawlRlUDbU98ydJt8vPt3py4=" } }, "is_incremental": false, @@ -2996,7 +2996,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html", - "hash": "TVVKokwe5a7rTzjT0ubIECzyUuIpbkM6hScU68rQCtQ=" + "hash": "siu9+Pyot30BYPAY2X/hZK+TTc9r7kDsMrskvIGGycc=" } }, "is_incremental": false, @@ -3008,7 +3008,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html", - "hash": "XTs7JEd6oQW9uLWzRyYit4ELSQPKe5BdT29O/lVWe5o=" + "hash": "2bHOcQFr86Uz1LCZNVD2f275EGfnlwyM5Fy/F1HPL+o=" } }, "is_incremental": false, @@ -3020,7 +3020,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html", - "hash": "XymVLcOggAS0h+YOzHySAxD9skmmYMsnEWbWbs1+SF4=" + "hash": "aUtaqWl0fUjNwlsZ5T23eLncNFZO6Mga7xItopwqP30=" } }, "is_incremental": false, @@ -3032,7 +3032,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html", - "hash": "sILuSMwoJMGHWzx2tfEr0Rx91l3c33AXfac3yFIDJOA=" + "hash": "v3go5nmPE0t0/83n/ieiijGQQSH8bZC50ZA+BDDLzJY=" } }, "is_incremental": false, @@ -3044,7 +3044,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html", - "hash": "jJtJ2PPnIxVj6D+4qaAy9FoBFyhfWuepFKs+rL5DC1U=" + "hash": "aT3RQjiaIm07uqtuPhb1xNCkK/Yo1tJDbjslIbz6bKw=" } }, "is_incremental": false, @@ -3056,7 +3056,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html", - "hash": "lirMI3R3wVyBm63PEYd+pFPu56rw2kQmPklg4eAYoJQ=" + "hash": "39uV0h4W/3xabuOC5AJ/MT8UbG7kOBaWAyZjUcid0f0=" } }, "is_incremental": false, @@ -3068,7 +3068,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html", - "hash": "mClk8EZ4PtFqiYTg1QmYy3xbciO9fqSxYNtV6P8aWZo=" + "hash": "E8TMC5EXHm/3VkdssJtRrK2JtzJZQjgLi5X3qk5r7C0=" } }, "is_incremental": false, @@ -3080,7 +3080,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html", - "hash": "ndlLmK00jQaehUWzA6Fm0vpiEc/viymQeHqPAbpYqOY=" + "hash": "jH6hc9MLB4wYWppVtE1LWe6KR2T587/VJ8M26nFIajQ=" } }, "is_incremental": false, @@ -3116,7 +3116,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html", - "hash": "AYWU79mMxlUuIQoFAB2molLcDznWbdR9u1ykEFuJYgU=" + "hash": "A9fWBP0ftgokqNk8KcyzS1fG24mL4mB+5EMXp0LhVrc=" } }, "is_incremental": false, @@ -3128,7 +3128,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html", - "hash": "drpVT6MGS84yPDD3xLjbokm1b4ZwZkuoAhht1ox9dc8=" + "hash": "ApGGSOj/YC+Eaq01x9MjTRkVygTVFS5cXSQ0xCsMUxU=" } }, "is_incremental": false, @@ -3140,7 +3140,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html", - "hash": "lk+IhS+SyLZbhLWwUE+aHDm65O+PpLV1aDnQxitqvX0=" + "hash": "4bNCBMFIH4Oko5ZZpU3BdL01xT4KGl9PbfobsxnO1tI=" } }, "is_incremental": false, @@ -3152,7 +3152,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html", - "hash": "52jxawCGfApupkHvArSXoLIUOfErh65IgqRaJ9v8Vhw=" + "hash": "0we8BNhHml2esJgF6CrZOzQPrE+AYMFQpmpZdLOexoM=" } }, "is_incremental": false, @@ -3164,7 +3164,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html", - "hash": "Ct3vxsqVLVTYId1NXfAafdWMCZ+pVAagfNGauXLle3g=" + "hash": "PudzmvWwDl4C3TBXCEKWUC8ZO3MVV2UxDneiYWWjr5s=" } }, "is_incremental": false, @@ -3176,7 +3176,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html", - "hash": "dv82x5H03uTBnRRbVtU1DXAE4vVmep5f55fj1u5MNoY=" + "hash": "QqLDfllZ7lC9+NBHu3SPLgWi1IVVQm8rBhGROmLZ6D0=" } }, "is_incremental": false, @@ -3188,7 +3188,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html", - "hash": "6mtmmyNjHM43p3x00anUTfRO7RDkCLPEh2qr0buujEY=" + "hash": "8rRMFyD9wzxZ3bUE8UqnGDwYR5TjrDrXU52WS9+ClC4=" } }, "is_incremental": false, @@ -3200,7 +3200,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html", - "hash": "IJCc1/E6UDVHhC84Ua7V1rDgkFs/+K1rKuyFC8QkK5I=" + "hash": "4hWGuJ7ARiSMStMFAJZ7KWiUE3E85bKNGsjIZLU2rqI=" } }, "is_incremental": false, @@ -3212,7 +3212,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html", - "hash": "0Hk5Vmb+Dj1AwT4BFzEx/mXJsGUu2w7W6fOxQt68ygQ=" + "hash": "qGB0yDQOKSn0caRD6EcH7FeNUYBnSmQFY/cqIHzhlfk=" } }, "is_incremental": false, @@ -3224,7 +3224,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html", - "hash": "+nxRRXhs/lPbU74bpEC47fms5tev8ayTFPQFagEWZG4=" + "hash": "LBLamAmkqPst66P9m0ZY48zYFgap5psWSKIT6ffz5es=" } }, "is_incremental": false, @@ -3236,7 +3236,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html", - "hash": "Rp7Dv7/O2Czp6shrgnGOzyj/9LGcziSQnKw1HwaAGc4=" + "hash": "WD54OjeOz7BtjsLWlL6m5sKhMqbtsGZwg1LRtbAF0OE=" } }, "is_incremental": false, @@ -3248,7 +3248,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html", - "hash": "+zWygdsKGF8QSDlPksfFSnCIfE1EVCi6W3xr+Zn2U18=" + "hash": "n+EVDzt7NaSG591009W5r03aBXcYNhsYqdWumicswpc=" } }, "is_incremental": false, @@ -3260,7 +3260,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html", - "hash": "lDAOSzfMnE7f2AGopZ5rWjXjS9W/2LHm5O39RgihCk8=" + "hash": "8Fr2knC5Ln42VCBJIYkrllXYeOre+jC/kaePwhcDgFE=" } }, "is_incremental": false, @@ -3272,7 +3272,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html", - "hash": "bg+bllAYX71vPMoDyRMprg0SfAZGunObEBPW9y4D+iI=" + "hash": "kltUYqEI9VDnljcVT7Z+GpnimrZ+6sX9HZnAciWFSNI=" } }, "is_incremental": false, @@ -3284,7 +3284,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html", - "hash": "xGouuF/ocHnznq2Z/NjZu4bjb5g0Xgs8ogbwn6iIZMQ=" + "hash": "qtRu1V+x3ttO7Vrh41e3lWSbMN7sIsp4YNnP8XaS6JM=" } }, "is_incremental": false, @@ -3308,7 +3308,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Document.html", - "hash": "LSLDW6FjgNRUeZfIILVadVudoQCTpkP6Vh4o3bzQIOs=" + "hash": "qXyCNZyHUomlJMYl+5y1LilQj8dHYhc8df8KSMJz7FA=" } }, "is_incremental": false, @@ -3320,7 +3320,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.GeoCoordinates.html", - "hash": "BYAQcWMDu1MimSQu7FQ1tFxd7qfljOl67bPPnHAbcaQ=" + "hash": "NNuIZImG2rBWPwl2YrgYMhxEu3erhKCdIpFwtxcGsg8=" } }, "is_incremental": false, @@ -3332,7 +3332,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.GeocodedCoordinates.html", - "hash": "aeJlRdevvg0UBx+EDSisEoxMgSGMGArQeQsbG4lcRPk=" + "hash": "4V5WFQHje38ag/ZR6iVBareg/aW9PYkAGf4uXztq6n8=" } }, "is_incremental": false, @@ -3344,7 +3344,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html", - "hash": "+Zp93qQkkGnVRUqy3iDV4gJZSUOtFpdF2QCDRVoQ4Uw=" + "hash": "LXxQ85rmUxeQxoQtRgxwQ5JX64ZWGsGm5lSfYJqrEpE=" } }, "is_incremental": false, @@ -3356,7 +3356,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.EmployerNames.html", - "hash": "zqIK8k02n5jPp/ikX+m83PnnX29O4J7TTJW47fBQh1s=" + "hash": "mFQR8xUK4ObwtfBaPD1OJcUWocRPjEPyv6tfs72TdRU=" } }, "is_incremental": false, @@ -3368,7 +3368,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobDegree.html", - "hash": "KB6M/yi4ss/EY+l4jnBe+OtFrqdVKzl6uqmYiucWzVU=" + "hash": "drtEUIjVojttgZ/9jw+Ym6Q2epQjhqQ9aUl96Jo5cF8=" } }, "is_incremental": false, @@ -3380,7 +3380,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobMetadata.html", - "hash": "R1ybKdTo/QRan+Ik5UyQg6+R94WFpU+i1zGJ8T1vVhY=" + "hash": "bZhWAlU3RQlXAwEu1P08WPuNvqFwhiZr35zt5ltmgpQ=" } }, "is_incremental": false, @@ -3392,7 +3392,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.JobTitles.html", - "hash": "R5HgkLQAaVXz+a70Z4SlbatjdFtdH9HCZCXdOC02SGQ=" + "hash": "Z4PQ1VO+6I8jSj031v20Yy+SF9xoEkedhiSvNsRgVpk=" } }, "is_incremental": false, @@ -3404,7 +3404,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.ParsedJob.html", - "hash": "SSd5eacR2KdnTHc7sksABmeRKBECK1m8ICavIZnm8eI=" + "hash": "viRP+/StWSmh4Ly4W2Sp2R76tDW0BcTlyTrfxzC5PLk=" } }, "is_incremental": false, @@ -3416,7 +3416,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.PayRange.html", - "hash": "qH5wLWa5szbsqvbWVEXNvhd/F4A9g30XGkBa2cCGPGA=" + "hash": "IcqoCt7F9SQXQTGnc9Z1+ecF/m4Aw55FKaK4034INPA=" } }, "is_incremental": false, @@ -3428,7 +3428,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html", - "hash": "ttyeSsK3V5ZjKUxyXx3b9MgJMkiZlotkUK04cova6ZI=" + "hash": "i1rzA+65jAFFou7kPJ/udpgzUFN8V1exObB4Vax+44I=" } }, "is_incremental": false, @@ -3440,7 +3440,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html", - "hash": "nBIOmI7ldOaHjjdBgKExSQVDOIJxxGu7Q/ckzJHANBs=" + "hash": "/M8c9NaSW6kQaAmIyh5hucLKm6rwR0nST4mo0PrvncE=" } }, "is_incremental": false, @@ -3452,7 +3452,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html", - "hash": "TyDIm/Kln6kKGxtAV0dhW8AKADEY2BF4HEgbhNoKjLI=" + "hash": "kslsyVQh73B5YLAoIja6EFhjofexzc1MKa8yUZFjeGE=" } }, "is_incremental": false, @@ -3464,7 +3464,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html", - "hash": "3KkLZlmnfPZFtSAL+NYW1XnFw460W0l/niDo/TyeE+s=" + "hash": "BQ6orJxR21wAiQRN3LgqtTFllG/zLENMTFp8VHhWKXA=" } }, "is_incremental": false, @@ -3476,7 +3476,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html", - "hash": "a7l/Zt8YGiLYfTIH0qb0YPj6ZWybzXcpCroyadI++Pk=" + "hash": "5pRqtDsJeL5ZapW/1P0rz7XMj3utDb1RgO1jBRhh50o=" } }, "is_incremental": false, @@ -3488,7 +3488,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html", - "hash": "FsdHrk6spYFOkmhhO+9Rvu1DNL09kXG5YW/vjlhMguc=" + "hash": "TwZZxvifndO6y/kZK1jlqPKkFmHJvMiN7r4V0wB2b38=" } }, "is_incremental": false, @@ -3500,7 +3500,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html", - "hash": "1eYa3x7PdaTrAMx0uNi8McmyG2hEdYZUZc1PRlafsCI=" + "hash": "ZELYLeD+s8W75333Fi2pGEXSOAbePFIxFBr0TfCAlGk=" } }, "is_incremental": false, @@ -3512,7 +3512,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html", - "hash": "5dPU4tNAfE7OzUCAdpcWdXoIKw25EAFZCSde67so5Qg=" + "hash": "mRdc9RlHO8Y+y++FeKEP2mbQknFG4BTqPFk6Ursw25A=" } }, "is_incremental": false, @@ -3548,7 +3548,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Location.html", - "hash": "kI07A/XmzWEkSiCCTi1k0Wrvg2pqd3GM8fhJszFGVOU=" + "hash": "8D3klHpKbJtaMVxliJpT/29LQH/Op7+k+/B5nKDo0wk=" } }, "is_incremental": false, @@ -3560,7 +3560,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Matching.Index.html", - "hash": "WQjGtM1s+rlfpiE3izkpSXJaJ0sJuaey4/L3T7Jmb2Q=" + "hash": "YWUWEp0tOxMLCnpfsR7/M+SzrOKGK8sK284+4XBbz5E=" } }, "is_incremental": false, @@ -3572,7 +3572,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Matching.IndexType.html", - "hash": "j+WHtwaXf195POf2p0xRdEncz/R+Fs3rpEtdvyg+/sc=" + "hash": "/W5mQLYYaUKyIaxaBHoZ/MoVZks7gaDAcGQD6MLAusQ=" } }, "is_incremental": false, @@ -3596,7 +3596,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.ParsedDocument.html", - "hash": "95vit4SmcZFwLy2AyiLpshEReXsmPi/8OuXhkxAsPrw=" + "hash": "MjtTee9KB8wdxjOW/WmtlbvrQCIiuCpkCpbK1wZIw2k=" } }, "is_incremental": false, @@ -3608,7 +3608,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html", - "hash": "tga3EOLYqYixGum63evuaZGh1wiPx44uEzeY81moa2k=" + "hash": "FXtDkidHXnlapw1MWa9mgpBHdUBNfaXhU1j2wB9An+M=" } }, "is_incremental": false, @@ -3620,7 +3620,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Association.html", - "hash": "hzYVmo7R63SaomCpe93m3Jmj8bocogl126yhOKxURME=" + "hash": "D0bitoANROiyK9JdXAY8P/UXU0jgBluvU4DkPkRjNQE=" } }, "is_incremental": false, @@ -3632,7 +3632,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.CandidateReference.html", - "hash": "/llwDR6Ga2b5HRd40jbDIsHEnepgBZPMuLuxZuzHvOk=" + "hash": "9xUk0uFIbrb637X+E+Oxsw+bkOtf9j8zBKYtjRI3XkA=" } }, "is_incremental": false, @@ -3644,7 +3644,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Certification.html", - "hash": "sg8KbwlUVV+lT/0o/MB4EDR9INhlhrLWkAFX1tXoauU=" + "hash": "yR2uyGFPXQBY5kn9Mdy8Zc6prO3+tNSF2emBet9Dv5c=" } }, "is_incremental": false, @@ -3656,7 +3656,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html", - "hash": "4LvapOekTZdPyEIlHSzMmjgbyEY/1f3N23WNnywD3qo=" + "hash": "xtOi2ui0W6WGaszl9EPvcLXrs5BC9NBh3ZctyyICZH8=" } }, "is_incremental": false, @@ -3668,7 +3668,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html", - "hash": "Gq6w8q5Yl9h/cCU7WecN9SdmX3frIItvMRakx0etNmo=" + "hash": "9PfOtn0tDJcPAeHXhH5fdhvVyBGFjsFwVr+uVEKt2no=" } }, "is_incremental": false, @@ -3680,7 +3680,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html", - "hash": "28rXY7HVKTxnuhl3/dEedAvzSSvGtcz/MD31STSPXAM=" + "hash": "J6Fs2Z3wNbevjYkvMNHaUwi1MfXtuC+31KbqMuBvFCs=" } }, "is_incremental": false, @@ -3692,7 +3692,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html", - "hash": "yAQSKSOLUrXABLKmK1KIOafOyQQmCvPBpq9Kv+82Z3A=" + "hash": "bVSrqTxz53Z13o8GxY+ENeMKMMjTglPI9RNnwcrUlpQ=" } }, "is_incremental": false, @@ -3704,7 +3704,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html", - "hash": "X/U8HafXsM0yzvxvkQHpCA2SzxfnWx87QI++SZtK/F8=" + "hash": "XRqHLiegAWJSW3PBstBUDFgyAMTj6kAvCjaeMyncoYk=" } }, "is_incremental": false, @@ -3728,7 +3728,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.Degree.html", - "hash": "bGAQOisluaY++D4f9EXpRlmcawIkoSrgnUYhbue5Sm4=" + "hash": "lwdeoHzRJme7zIY2tpc+Tc3yMyIo00uxeXcKtJlVS74=" } }, "is_incremental": false, @@ -3740,7 +3740,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html", - "hash": "/urtlH/VteD8VcO0NyJ0A3/LgYmxAIzHawxw/N7sBrU=" + "hash": "t7gWa6x/RqLDqVAyXnatbuDZv/qUARBXgrH7ewcanLo=" } }, "is_incremental": false, @@ -3752,7 +3752,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html", - "hash": "qMKREI5vnEgDanAqJCXrfe0viVaCtwEATRFyGaG7zxU=" + "hash": "7pVGuy+moJpIjzcCHYKA+C/gbnLvsX+FnNWhpVw5PeI=" } }, "is_incremental": false, @@ -3764,7 +3764,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html", - "hash": "7/bC5Rwn0RLtZDRLS+I2eTWlfMtfPqmUd/pEZHcJ0Ww=" + "hash": "nHN4sN0pUJYwV/0UvfZQP6OABZ6nn8cjjmCJzs2GG+Q=" } }, "is_incremental": false, @@ -3776,7 +3776,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html", - "hash": "/ZGbqYbA5ggG/wWI5hGFi0UAEvJri7cMb8XTbI2LWMk=" + "hash": "71a4tzYWFymRzp/BVYIRamXGiBi1lZKVZa6bWSTDcfQ=" } }, "is_incremental": false, @@ -3800,7 +3800,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html", - "hash": "SwC2RKUFU65puklg4+cSKMpZf817MYr4kfoMo7VkBBo=" + "hash": "u1C7VjDdGx4ZC4cFdxQdtO/bnnz7NttQvf5isGNatuc=" } }, "is_incremental": false, @@ -3812,7 +3812,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html", - "hash": "qqwMMfBzFxi7vE9kf5T23xHVqXaiums53bCs+NkRXsc=" + "hash": "z0FZT49TAl8PZJTtNruT6+bpehdwGLNEmNXSvlx5Izg=" } }, "is_incremental": false, @@ -3824,7 +3824,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html", - "hash": "4kA5SO+C0rpfGsH96/61CwnUxJU+7tPUWzj7BXx8BtM=" + "hash": "kOVrbM8Dnpg4E6LESfJiq106zJmYcYXDa9CStUZjpZY=" } }, "is_incremental": false, @@ -3836,7 +3836,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html", - "hash": "hiwvGRlo+VnsZzDk/iPKawv02GLB9FxicStfMklQl5k=" + "hash": "ehSBI/udAC4nkcnd3zA8ia/9ww19TYNVKrwab9Y+R0Y=" } }, "is_incremental": false, @@ -3848,7 +3848,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html", - "hash": "upk0vRcA68qDt67bux49OzVIvoqu5sagvyeIAPYjwFk=" + "hash": "PH6XdGs9bLkmAw3C0Z2uctgyu1sZA+OkUQdMvFmuCOg=" } }, "is_incremental": false, @@ -3860,7 +3860,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html", - "hash": "MxtLkw7XFCY082g+392PW+dyJ6r7NOUoampzF2GV32Y=" + "hash": "3Zo0PmemCixAqDUVmP6THluDXb+Er603KJaRfXNmKRI=" } }, "is_incremental": false, @@ -3872,7 +3872,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html", - "hash": "C6QxapFUJvvvhuiXszpJf2mHDQKOFmq5lauA8QQELWA=" + "hash": "3lDqgH6eyCIFjXpBaNFwFHmBWwG+mqDOj/Kcflep4bM=" } }, "is_incremental": false, @@ -3884,7 +3884,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.Position.html", - "hash": "BkguBC8AuZ/8xcvLAur7mlY0b9Hc1+mCpGgbY5WMmJ4=" + "hash": "c6BFB23WSNDyWbHu7syKA/k0kap6Cr5Rgk/irtv7jJM=" } }, "is_incremental": false, @@ -3896,7 +3896,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html", - "hash": "WF3sTw0MBgXVisVwosC3tBYpU8MlOUclF2C4Q9oEd2k=" + "hash": "U4ia4vb5bBl093j8qbYlh5G6Ma3UNHW2EE8dyM3X3Yo=" } }, "is_incremental": false, @@ -3920,7 +3920,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html", - "hash": "eoJk3VZY8tLOUoXHqQK4tc4zg4VFgyePfWDtO/RgtOQ=" + "hash": "+yeohsDXA7i+F6UYk4TPF5G8A4aSLA2A73AfhQ79WeM=" } }, "is_incremental": false, @@ -3932,7 +3932,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html", - "hash": "fdKZ4+vn63rSh76YvKED2IuQfE9WZg8ADavmOTeKWC4=" + "hash": "odDNuACRd+2ALuHe5QAJKyZ9VhytGu5wljkqPJXkiCo=" } }, "is_incremental": false, @@ -3944,7 +3944,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html", - "hash": "vS4WD0cuC8GqTBiu03rYyWmFxz4aUSpbdTipjlnddVc=" + "hash": "96c5kopU3KrcmscRb/rtOxbRAcIfdV1wCNpbWleCmXk=" } }, "is_incremental": false, @@ -3956,7 +3956,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html", - "hash": "diebIJbobW/xXP5ydo4NMx8PniAKBL+PJDhGkB/Krlw=" + "hash": "1OA4QPq3LQq/hjolzLB6m/Q0Qwcmg7/aBj25qukMMGw=" } }, "is_incremental": false, @@ -3968,7 +3968,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html", - "hash": "uaxDDZDvI8OvmrtjLFimu94wnzncAuTOzXgg8UVtpzE=" + "hash": "P+Urc2ey8COwT8qQwjKvAiRZ/G9R6d1h8Ygg1+2PKhI=" } }, "is_incremental": false, @@ -3980,7 +3980,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html", - "hash": "qmZwSEF0mEjmzEAx6dPKhhtmLZprvbzlJvZZgdphP68=" + "hash": "fZLLrMzXpsYEdPcFMGEZGN3NLMj0M4LScV9VGp3cfwE=" } }, "is_incremental": false, @@ -3992,7 +3992,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html", - "hash": "Yyupdb+eAT6Vjagb3G6GJzcvYDHCtWx5JW12GUDsl74=" + "hash": "wUTFtf6BKFFTy2sYLFc9HbGU4nkx10ZcpoWeDUFmlJM=" } }, "is_incremental": false, @@ -4004,7 +4004,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html", - "hash": "tm+yLtgjF4220+D3HV7n5JIGbKDrcCFKZbzvlj1Ynng=" + "hash": "afKX3Y3plqPlkr9tDbzZcssXs+rcGGv9knLvRnbLtzA=" } }, "is_incremental": false, @@ -4028,7 +4028,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html", - "hash": "OgukhqDguENylCFy6gfUMDc8yPzYzcdsy1gQipZIavc=" + "hash": "7TMHmkXd2nGMngfDeUXLWokwA0LaVGEjl9L2orDBKI4=" } }, "is_incremental": false, @@ -4040,7 +4040,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html", - "hash": "r2+p5SY3F3OePES+SCxe/IE790Ix/CWS0JQc2wSqGy0=" + "hash": "2dgH4dwUPLjU4KH9gCUN7unnw8Ky1Ujqid4L3kdE1lU=" } }, "is_incremental": false, @@ -4052,7 +4052,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html", - "hash": "orh8/WWngReebJL6kwAd75Yui9POrMPcFNHC6hH/leM=" + "hash": "OXhgHFfP/zT+iIMbxZh19WgH5ffasrp935io+2ox5jE=" } }, "is_incremental": false, @@ -4076,7 +4076,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html", - "hash": "PXcM8UHwIICGNmzDuWVAIZ3+TUP/bM9Jb/yVoFJdcB0=" + "hash": "NL1hAEHmEkf5S+kYllV8Cki/NunFxMyXFazAJRyxRo0=" } }, "is_incremental": false, @@ -4088,7 +4088,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.NormalizedString.html", - "hash": "ryhgpjR3srGbvNzn4FFSSD76lV0B98Gq+tzh4qgSa+Y=" + "hash": "ZfpEqPn4ejzTQHS/lPXg061yIDkdoGQXZqKNM2MIWTw=" } }, "is_incremental": false, @@ -4100,7 +4100,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.ParsedResume.html", - "hash": "qXkGqyV4cNK8CBbwXULFrbHQBSqFMlFfgfX03NlFC7k=" + "hash": "tOAPryspyo571xhFtB+i3qSbzSp8kPK8PFnHJvtMh3A=" } }, "is_incremental": false, @@ -4112,7 +4112,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html", - "hash": "d57YQI4/1NhnGGWrON/uj1uSxeYUMhjT37JZ8L7k05Q=" + "hash": "/OEtc/yKhgpGRDMnPpnFYn//GdUXgXYCeaYXJXhCyio=" } }, "is_incremental": false, @@ -4124,7 +4124,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Salary.html", - "hash": "ldym+QESj/dNkoOjujWokmovfRdL4YG6IoGL4QCTgBY=" + "hash": "Nqt6VofdwRl/0qUcKwL7cUfu1E2grhDvPQA9WcTlefI=" } }, "is_incremental": false, @@ -4136,7 +4136,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html", - "hash": "mNLDqD8ZoqOnq7CaCig9XzvOs6FZ+Q+crhRNx/Io2AA=" + "hash": "qdLEo90ol7OoxHXJ2aj4dtU2Ogw4Is4w34cTR5cb5R4=" } }, "is_incremental": false, @@ -4148,7 +4148,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html", - "hash": "iVVmKf3LoGlUk4R9CTOPnchSEKp6b+lzB0pCctBN/8M=" + "hash": "n1mFpoS2bI5c9BMSMKTx12mnH4G+zMMtKw/XK/I/o9s=" } }, "is_incremental": false, @@ -4160,7 +4160,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html", - "hash": "d9fvKZjHjgm5QxzI0CNK46Uq9NyUUZOQqla66yeP7xc=" + "hash": "LkVA7Dn6VuOhUJtXMqVGTVq81Iby7Q3XD7dYB5TYYPs=" } }, "is_incremental": false, @@ -4172,7 +4172,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html", - "hash": "2WaDdPMOlPMVc7cB8feIMobXZD07pql6nhbZ/qNrX8c=" + "hash": "+wuXJY5CLTWUatv5f+nkne7/K2zhQIbePxEz6/Y+M4c=" } }, "is_incremental": false, @@ -4184,7 +4184,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html", - "hash": "KTGJH6SJQT4qfnA+Jmt4pF5G4W6A45Q6PITULc+d27k=" + "hash": "YHGt+8reagSm7WYSUVvrCcPMeBpZ+rn9af+0XDo2JKY=" } }, "is_incremental": false, @@ -4196,7 +4196,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html", - "hash": "3xMXu0TXu/q0IHtwZ+t6XCOUk7LHVhR54hfJDmtYYCQ=" + "hash": "71oVEAveJEzYouChRCi8lylKwy4Y9zz4TYc7MyBaHHo=" } }, "is_incremental": false, @@ -4208,7 +4208,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html", - "hash": "GWxQq1Bs5Ihc6T6dZoNsqKc+P+8UZBSRR68DzpvROLs=" + "hash": "Te747qshu0qRFjj36NNQFg3IIaAKmerGTgRzTHa9i5I=" } }, "is_incremental": false, @@ -4220,7 +4220,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html", - "hash": "ieqCYgRoFCzPol2xlj/r2VPItNyD7sde++gNl0dvY4E=" + "hash": "T3vnaae5Z6s4SminNG7UOJ6LlI4SZfs5Ie+W6ised+k=" } }, "is_incremental": false, @@ -4232,7 +4232,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html", - "hash": "Q9Cm2eh4YoK0d6WJIukjXzG7S6NKo0mmnb223vaeMf4=" + "hash": "hdQtfqwk9M3BpzvGrIemKNyp7l15jgXOtCcKbaIOSdg=" } }, "is_incremental": false, @@ -4256,7 +4256,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html", - "hash": "Chi/bGjvoM5MUlgX3B/riYc23d8p38d9XZ22KCyWw9Y=" + "hash": "ucLcZZQI76hVZbD0AYTrifyGx1PIufxx9Ose3osMYnA=" } }, "is_incremental": false, @@ -4268,7 +4268,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html", - "hash": "T69TTMXQ38St/B2c0ULlCi2hSKMvvCbM0FC69WHXeok=" + "hash": "vzO26tyN45hc5USAlvVvoc8CIIsmW3jvNdQ6npYoeNw=" } }, "is_incremental": false, @@ -4292,7 +4292,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html", - "hash": "Gp2cWXT1jfy8X0zr1HxVwb0zYD7KjFK6B3+5rfMMpX8=" + "hash": "PmWAH4dbU6I+jj/WLtUhL82Ck956KXTBDSArsNXJFzc=" } }, "is_incremental": false, @@ -4304,7 +4304,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html", - "hash": "sin38mHHrnbJcrl3FtvR8NigjMAwjMcFSYfK2WrjXNE=" + "hash": "R9T5GvePmObfu4qgE8RtNgMZ9tbtdcWMgQIDE3fDReM=" } }, "is_incremental": false, @@ -4316,7 +4316,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html", - "hash": "N8KSvjeHKaq6zROCPxiaJJE+fjlxJv40qswR4wRZwTg=" + "hash": "ga3OGIehBDraQ+/SmY/xMX2fvpQIl3Ntotj54p0kFLE=" } }, "is_incremental": false, @@ -4328,7 +4328,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html", - "hash": "Lzg9N/E7X468YEa5K3skNxBddwjcwmkXs7Qroaopnxc=" + "hash": "X8K8lzOM3t+68r5v57lBjrCajMmqu06MhbuS1Rx1API=" } }, "is_incremental": false, @@ -4340,7 +4340,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html", - "hash": "4Dh6gSU8/HJfVR74jbjugXGfeK5xuRrOwx4zyWnJ2Vs=" + "hash": "fphSH+xzO6iKRfWbU/yo4Ytb4x1TA6KWPxfcJ6sqinI=" } }, "is_incremental": false, @@ -4352,7 +4352,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html", - "hash": "dMJhiz/y9+t29p294hAsd9IlUmtbtbQUYJxoM4t7aPI=" + "hash": "VMP/SBIZ06pPv3s0fZCuemgxSywwaSwLAG/WDQrgIC0=" } }, "is_incremental": false, @@ -4364,7 +4364,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.RawSkill.html", - "hash": "FhijFxzWVqajW9DlqaUCs9DUIx9nGnqeyHYOfvcn7TY=" + "hash": "WUFwRJr6pbKTUSt/bHfzWre0hbUUh74XtvrsK7ijqPQ=" } }, "is_incremental": false, @@ -4376,7 +4376,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.Skill.html", - "hash": "+J3cAv4hyZLuo5J2UjQIXwS3DoPN9xFnAKuDTA0iopU=" + "hash": "5HXXhR9+9FpmXuG6yRK8+XpRDlfO2JIIVl7o8I69sdc=" } }, "is_incremental": false, @@ -4388,7 +4388,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html", - "hash": "MJzxkp/l7F4eAswcm1YioPJmPNmx0FM/7P2sOIZwz8g=" + "hash": "bnjmOy+VJitT/fClR5ezz1SuYSHE8DvW025g9vCaNk4=" } }, "is_incremental": false, @@ -4400,7 +4400,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.Skills.Taxonomy.html", - "hash": "s4/lHqRpl3ECYzpFtiK6b5VhDRVn6BuI9fvxeoNV4fY=" + "hash": "OR2aj760aFAklcflt+2JwGfweiLQnjER1PyZDoHD0hE=" } }, "is_incremental": false, @@ -4424,7 +4424,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.TxDate.html", - "hash": "FIHUbzht6VLKCfj0sydGNj56XUSIqlCWR5gFRsTC6wo=" + "hash": "53M14G9AcuSADTXCVTIQxE5iqQqK8VDg416Oiv/VmO4=" } }, "is_incremental": false, @@ -4436,7 +4436,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.Models.TxPrimitive-1.html", - "hash": "8Gs1pFHyeSiezs3aazHUkx1pz0cAbVix65aLbPTVzVE=" + "hash": "m1V0tiJ5+H9bNfq1AxH9VVZ4Kaqrua8sN8OYI/2HKAA=" } }, "is_incremental": false, @@ -4460,7 +4460,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxClient.html", - "hash": "VMZS4J0Av3f3xP0AUbrwCOcXazPhrA541uaJCG/neQo=" + "hash": "IWdEUfeGXnE+GcSAzYHJ2bpIu3C4B5E+Az6hZRFKJls=" } }, "is_incremental": false, @@ -4472,7 +4472,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxClientSettings.html", - "hash": "iTQ2BECTFBUKQRUyTpw7vh5w/aP/9DkNhb2Vwi9VTow=" + "hash": "oygmBfFJSpFeHre1bV2hUvIWg5JY4epENdGeKOOyzqc=" } }, "is_incremental": false, @@ -4484,7 +4484,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxException.html", - "hash": "bpbCJaNn7h1dUH7bHDd47rqsSRwHLEk+1FQyaoP/ulU=" + "hash": "K4FiCPv8LrF3P0L2Ve7NHrEhBrpr9hYFKBekTkSaJDo=" } }, "is_incremental": false, @@ -4496,7 +4496,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxGeocodeJobException.html", - "hash": "hAHVmnu2hp571GPxUZWWWo9oK/hQRphjbcr8DUnhzOM=" + "hash": "+6WtqkuNrCaSXzVF4D/9JKTSoXQ9Z+4/Wcv0jJQJgrY=" } }, "is_incremental": false, @@ -4508,7 +4508,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxGeocodeResumeException.html", - "hash": "yyoAXCtMvCQmk5r/JmxPpuyYkN+3X8/THyoDz2JTNbg=" + "hash": "iK1WOMIVFskqD++b2s5/6qTpe6QMuBHMDrFhgLqy63Y=" } }, "is_incremental": false, @@ -4520,7 +4520,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxIndexJobException.html", - "hash": "wr9yGHPDCwNh4d7KEhI7PKpFKtsF607EtyPz7L6WV/A=" + "hash": "NQZorb4SjJAR88+z9VjryWcMsKg3cj23Z//ACK8q3Wo=" } }, "is_incremental": false, @@ -4532,7 +4532,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxIndexResumeException.html", - "hash": "4Q4/VBFJZFAnOhVZRoiDS6Gszj1liCHeuYKr/Xl5j3Q=" + "hash": "YoKvhOs7VR7tPxvXjqV4Cg/YnJB6M9oMFT3I1uCYr0s=" } }, "is_incremental": false, @@ -4544,7 +4544,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html", - "hash": "lUS3gI4ZBRYttkVjaZKP4OYzjCLiSbUdfhn2f60gPOI=" + "hash": "FEEJmWO0gjV2BFbdwXx3JR+kH2++nJ28hEo2xPeXwR0=" } }, "is_incremental": false, @@ -4556,7 +4556,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html", - "hash": "5T2qzUrunfdmFIZO98Po1/fLmYq1YB9KzCCIYsvqaXc=" + "hash": "mI3jvvjGYGhugfm4jwZZj0Y7RhOFAWR/mfZ7frk1AEc=" } }, "is_incremental": false, @@ -4568,7 +4568,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxUsableJobException.html", - "hash": "7vNAkAfvplb2/ICT8twAAGLXueb9X14Y12bhnooh/Ro=" + "hash": "FHoeJ/Lb/AR1YmZ+Y93glCj9FklWZt2fC+07qhf7kpI=" } }, "is_incremental": false, @@ -4580,7 +4580,7 @@ "output": { ".html": { "relative_path": "sdk/Textkernel.Tx.TxUsableResumeException.html", - "hash": "H65BkWaOFnQ+vEmtUj1tbmhpTe0fw+T4Mjvt6M4EYMU=" + "hash": "R/EhQ/ebs7VWcjh0RtuYEvzv1Yevs8hDzLYsKk87VFA=" } }, "is_incremental": false, @@ -4604,7 +4604,7 @@ "output": { ".html": { "relative_path": "sdk/index.html", - "hash": "AoZ4l44BjKnNVTCMmfZqOxgdei2I+f9N6haBtaVS4kQ=" + "hash": "DEU3100X4XJ3/2g/QAnTbByDQ6rDuuc0paaS+2al61Q=" } }, "is_incremental": false, diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html index 058b64d8..ed7c7d68 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchErrorResult.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html index 64de935d..ff11de12 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParser.html @@ -126,10 +126,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJobs(TxClient, ParseOptions, BatchParsingRules, String, SearchOption, Func<JobBatchSuccessResult, Task>, Func<JobBatchPartialSuccessResult, Task>, Func<BatchErrorResult, Task>, Func<String, String>)

@@ -239,10 +239,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResumes(TxClient, ParseOptions, BatchParsingRules, String, SearchOption, Func<ResumeBatchSuccessResult, Task>, Func<ResumeBatchPartialSuccessResult, Task>, Func<BatchErrorResult, Task>, Func<String, String>)

@@ -358,10 +358,10 @@
Exceptions
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html index 82213f4b..d674ab06 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchParsingRules.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

BatchParsingRules(Int32, IEnumerable<String>, IEnumerable<String>, Func<String, Boolean>)

@@ -185,10 +185,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DefaultDisallowedFileTypes

The default file types that will result in invalid parse transactions (and cost unnecessary credits)

@@ -217,10 +217,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AllowedFileTypes

@@ -248,10 +248,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DisallowedFileTypes

@@ -279,10 +279,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxBatchSize

@@ -311,10 +311,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShouldProcessFile

@@ -348,10 +348,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html index 53d7dae6..b673a34a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.BatchResult.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

File

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html index 2c214ead..1561df92 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchPartialSuccessResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html index 597776c7..e3aa88a0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.JobBatchSuccessResult.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -171,10 +171,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html index 53132dac..466c4fd4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchPartialSuccessResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Error

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html index 4ce4afe6..0fb23040 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.ResumeBatchSuccessResult.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -171,10 +171,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html b/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html index e5ff38c7..5eeb9ebc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html +++ b/docs/site-/sdk/Textkernel.Tx.Batches.TxInvalidBatchException.html @@ -172,10 +172,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.DataCenter.html b/docs/site-/sdk/Textkernel.Tx.DataCenter.html index 47283864..67a3c3f5 100644 --- a/docs/site-/sdk/Textkernel.Tx.DataCenter.html +++ b/docs/site-/sdk/Textkernel.Tx.DataCenter.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

DataCenter(String)

@@ -162,10 +162,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

AU

Represents the AU datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -192,10 +192,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EU

Represents the EU datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -222,10 +222,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

US

Represents the US datacenter. You can find out which datacenter your account is in at https://cloud.textkernel.com/tx/console/

@@ -258,10 +258,10 @@
Field Value
diff --git a/docs/site-/sdk/Textkernel.Tx.ITxClient.html b/docs/site-/sdk/Textkernel.Tx.ITxClient.html index 08ae8182..35109c0d 100644 --- a/docs/site-/sdk/Textkernel.Tx.ITxClient.html +++ b/docs/site-/sdk/Textkernel.Tx.ITxClient.html @@ -97,10 +97,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteProfession(String, IEnumerable<String>, String, Int32)

@@ -187,10 +187,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkill(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -283,10 +283,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkillV2(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -379,10 +379,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedJobWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -480,10 +480,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedResumeWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -581,10 +581,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessions(Int32, Int32, String)

@@ -664,10 +664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessionsV2(Int32, Int32, String)

@@ -747,10 +747,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(Int32, String, SkillScore[])

@@ -828,10 +828,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(ParsedResume, Int32, String, Boolean)

@@ -913,10 +913,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(Int32, String, SkillScore[])

@@ -994,10 +994,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean)

@@ -1079,10 +1079,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateIndex(IndexType, String)

@@ -1151,10 +1151,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteDocument(String, String)

@@ -1222,10 +1222,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteIndex(String)

@@ -1287,10 +1287,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteMultipleDocuments(String, IEnumerable<String>)

@@ -1358,10 +1358,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkills(String, String, String, Single)

@@ -1446,10 +1446,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkillsV2(String, String, String, Single)

@@ -1534,10 +1534,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResume(FormatResumeRequest)

@@ -1600,10 +1600,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplate(FormatResumeWithTemplateRequest)

@@ -1666,10 +1666,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateJobDescription(GenerateJobRequest)

@@ -1731,10 +1731,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, Address, GeocodeCredentials)

@@ -1809,10 +1809,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, GeocodeCredentials)

@@ -1881,10 +1881,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, Address, GeocodeCredentials)

@@ -1959,10 +1959,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, GeocodeCredentials)

@@ -2031,10 +2031,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2121,10 +2121,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2205,10 +2205,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2302,10 +2302,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2393,10 +2393,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2483,10 +2483,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2567,10 +2567,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2664,10 +2664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2755,10 +2755,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAccountInfo()

@@ -2802,10 +2802,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAllIndexes()

@@ -2849,10 +2849,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetJob(String, String)

@@ -2920,10 +2920,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomy(String, TaxonomyFormat)

@@ -2995,10 +2995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomyMetadata()

@@ -3043,10 +3043,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetResume(String, String)

@@ -3114,10 +3114,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomy(TaxonomyFormat)

@@ -3181,10 +3181,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadata()

@@ -3229,10 +3229,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadataV2()

@@ -3277,10 +3277,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyV2(TaxonomyFormat)

@@ -3344,10 +3344,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

@@ -3428,10 +3428,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedResume, String, String, IEnumerable<String>)

@@ -3512,10 +3512,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexJobInfo>, String)

@@ -3583,10 +3583,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexResumeInfo>, String)

@@ -3654,10 +3654,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupProfessions(IEnumerable<Int32>, String)

@@ -3729,10 +3729,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkills(IEnumerable<String>, String)

@@ -3802,10 +3802,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkillsV2(IEnumerable<String>, String)

@@ -3875,10 +3875,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(String, String, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -3977,10 +3977,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedJob, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4073,10 +4073,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedResume, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4169,10 +4169,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeProfessions(IEnumerable<String>, String, String)

@@ -4251,10 +4251,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkills(IEnumerable<String>, String, String)

@@ -4333,10 +4333,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJob(ParseRequest)

@@ -4414,10 +4414,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResume(ParseRequest)

@@ -4495,10 +4495,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Search(IEnumerable<String>, FilterCriteria, SearchMatchSettings, PaginationSettings)

@@ -4578,10 +4578,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4654,10 +4654,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScoreV2(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4730,10 +4730,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -4815,10 +4815,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

@@ -4900,10 +4900,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

@@ -4991,10 +4991,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5076,10 +5076,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String)

@@ -5161,10 +5161,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5252,10 +5252,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

@@ -5329,10 +5329,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

@@ -5408,10 +5408,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

@@ -5487,10 +5487,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

@@ -5566,10 +5566,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(IEnumerable<Int32>, Int32, String, IEnumerable<String>)

@@ -5651,10 +5651,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -5736,10 +5736,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable<String>)

@@ -5821,10 +5821,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

@@ -5903,10 +5903,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedJob, Int32, String)

@@ -5984,10 +5984,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

@@ -6071,10 +6071,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(IEnumerable<SkillScore>, Int32, String, IEnumerable<String>)

@@ -6159,10 +6159,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -6246,10 +6246,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable<String>)

@@ -6339,10 +6339,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateJobUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6422,10 +6422,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateResumeUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6511,10 +6511,10 @@
Exceptions
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html index 7138de34..fd9914d7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Account.GetAccountInfoResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html index ca198e65..4f2f0b13 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.AccountInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AccountId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CreditsRemaining

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CreditsUsed

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExpirationDate

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IPAddress

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumConcurrentRequests

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html index ddfb8591..a62babff 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponse-1.html @@ -184,10 +184,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Info

@@ -215,10 +215,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -256,10 +256,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html index 76e303fd..615bdf72 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfo.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApiVersion

@@ -165,10 +165,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CustomerDetails

@@ -196,10 +196,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EngineVersion

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TotalElapsedMilliseconds

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionCost

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionId

@@ -327,10 +327,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html index 69be4a36..71f1f460 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ApiResponseInfoLite.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html index 61af1c72..77ec1bec 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreJobRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SourceJob

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html index 44148f22..c45d5f32 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Settings

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetJobs

@@ -229,10 +229,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetResumes

@@ -267,10 +267,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html index 22a7b86f..5e2caaa5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html index 25be9274..607579b8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResponseValue.html @@ -147,10 +147,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html index e9a2962b..f7d37096 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResult.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -291,10 +291,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -340,10 +340,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html index 752c2fd1..42c6c2c5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.BimetricScoreResumeRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SourceResume

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html index a1a65c68..6cd87c9f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.IParsedDocWithId.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -134,10 +134,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html index 2261ef59..bf6a6ead 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedJobWithId.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -202,10 +202,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html index 4f138ea4..ee884a4b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.BimetricScoring.ParsedResumeWithId.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -202,10 +202,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html index d04817fe..9310287d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.AutocompleteRequest.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prefix

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html index 7ff77ac5..a9979133 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.GetMetadataResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html index 3b89d1d2..e5bf14f2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionACodeId

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionBCodeId

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html index 386ef8ac..5cdac66e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.CompareSkillsToProfessionRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeId

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html index 809412e5..8c8f9a7a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SkillsSimilarityScoreRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsA

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsB

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html index 331767ee..f55ac40b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReturnMissingSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html index bf25742c..77c630b0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeIds

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html index 0840c7e1..c5bce22e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Request.SuggestSkillsFromSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html index f1a1dc06..df11cfea 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html index cdfa2ce8..5429a7da 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CommonSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExclusiveSkillsByProfession

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html index a3558e3e..d4350b84 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html index 5b317db0..a8203882 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.CompareSkillsToProfessionResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CommonSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

InputSkillsNotInProfession

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MissingSkillsFoundInProfession

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html index 2b1c12e5..9b9f0d3f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.ProfessionExclusiveSkills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionCodeId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsFoundOnlyInThisProfession

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html index 9c46e810..52fb195d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillScore.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html index 0e679a65..4d18b9df 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html index 3ee8dfce..519e9048 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SkillsSimilarityScoreResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SimilarityScore

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html index 96fa7fcc..6b68c542 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html index 85618eec..9349e649 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedProfessions

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Warnings

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html index f54a2cc2..fe492009 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestProfessionsWarnings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

InvalidSkills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsWithoutProfessionRelation

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html index ba56d71e..ab48c6a4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html index aa614e76..a9a5db4a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedSkills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html index 70531817..bcdc3067 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response.SuggestedProfession.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MissingSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html index 78fdc494..ff6db366 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ONETVersion.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html index 7721002e..7857120c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.ProfessionNormalizationVersions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ONET

@@ -164,10 +164,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html index dafa2c8d..1f7ac0eb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.LookupProfessionCodesRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeIds

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html index c7855231..95b08a35 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Request.NormalizeProfessionsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html index e5a9fcc5..4592b423 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html index e67a5025..1e8ab656 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.AutoCompleteProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html index 3051d3d1..2ae68b34 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetProfessionsTaxonomyResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html index 02c73c4d..c4172dc8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.GetTaxonomyProfessionsResponseValue.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html index 879f358d..ac840ad1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html index 7029e1cc..64de1ed7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.LookupProfessionCodesResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html index f48f87aa..ee68cf90 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html index c5aded60..bd908ab1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Professions.Response.NormalizeProfessionsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Professions

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html index 83ebf10f..e9c29dc6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.ExtractSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Threshold

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html index f861d0bb..e25fa7af 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.LookupSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillIds

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html index 0628c29e..097f04af 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.NormalizeSkillsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputLanguage

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html index eb5f33b8..5d088fbb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Request.SkillsAutoCompleteRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Types

@@ -176,10 +176,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html index 63b98f11..c335a101 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutoCompleteSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html index 32de1bd0..51fc2adb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.AutocompleteSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html index e195b3d9..5a536a3a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html index 1ae43442..f3e0991e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.ExtractSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Truncated

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html index ea050e48..49c78ddc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html index c6adb1ee..3b5efbf6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.GetSkillsTaxonomyResponseValue.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html index e26dd17a..4c15b85e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html index ddc78815..23f91dfe 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.LookupSkillCodesResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html index 464a53b7..69def3fe 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html index 84ad4295..fc2e884b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.Skills.Response.NormalizeSkillsResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html index 7bf8ac5e..77869807 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.DataEnrichment.TaxonomyFormat.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html index 0ac1c279..a2a2ae9a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CompanyName

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Email

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phone

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Placement

@@ -350,10 +350,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html index 4f1a7105..9b5b70ea 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.CompanyInfoPlacement.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html index f0e6fce5..2a20a2a8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.EmployerNameOptions.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html index c410139e..74223bd4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CompanyInfo

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Metadata

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputType

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WorkHistory

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html index 6f9bc713..488bcf03 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeRequest.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeRequest(ParsedResume, ResumeType)

@@ -169,10 +169,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Options

@@ -200,10 +200,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -238,10 +238,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html index cfd8b991..e7f3b017 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html index 93be0fea..e80d1010 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentAsBase64String

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html index 5893824a..5f4513d6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.FormatResumeWithTemplateRequest.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplateRequest(ParsedResume, Byte[], ResumeType)

@@ -172,10 +172,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplateRequest(ParsedResume, String, ResumeType)

@@ -220,10 +220,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomData

@@ -256,10 +256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputType

@@ -288,10 +288,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -319,10 +319,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Template

@@ -359,10 +359,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html index 2141c41c..b98cc186 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.MetadataOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

HideCandidateSummary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HideTopSkills

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html index 300f944f..4fa43777 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeLogo.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo()

@@ -142,10 +142,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo(Byte[], Int32, Int32)

@@ -188,10 +188,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeLogo(String, Int32, Int32)

@@ -236,10 +236,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Height

@@ -267,10 +267,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source @@ -298,10 +298,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Width

@@ -335,10 +335,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html index a3d09063..a86babd2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.ResumeType.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html index d903e618..84e8263f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Formatter.WorkHistoryOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerNames

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaxYearsOfWorkHistory

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumPositions

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html index a912d8f8..090a7b38 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.Address.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AddressLine

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html index 1d9f9996..c70b9f05 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html index 7952c314..0d7be88d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html index f70fb3d9..454f5f36 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexJobResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html index ce354d50..672056f2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexIfGeocodeFails

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingOptions

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html index e52ac3bb..14be11fd 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResponseValue.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeResponse

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingResponse

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html index e46aa793..ab927a1e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html index a905887b..b973bd18 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html index a9ece7c3..b16db151 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeAndIndexResumeResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html index ec573590..7b8025d7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeCredentials.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Provider

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProviderKey

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html index cb7b8b4a..02b26316 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobRequest.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html index c8724d15..ea808f1a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html index c8d63400..af4c4f8c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeJobResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html index 1eca62ba..75fa7581 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptions.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IncludeGeocoding

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html index 2087e73f..fe50f90d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeOptionsBase.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeoCoordinates

@@ -170,10 +170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalAddress

@@ -209,10 +209,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html index 2e3dc131..94703d1a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeProvider.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html index 6710c049..eacac971 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeRequest.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html index 294b2f5c..11064ad3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html index 64a5dbb4..7494c82e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Geocoding.GeocodeResumeResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html index 92a24b6c..f2296836 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.ITxResponse.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Info

@@ -134,10 +134,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html index 78762d56..06f1e611 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexType

@@ -164,10 +164,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html index cde2a371..82269a58 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.CreateIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html index cc4732e9..c279e35a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteDocumentResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html index 8744050f..bd8d2610 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html index a2491ce4..399714e4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.DeleteMultipleDocumentsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html index efc525de..79ca0cd5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetAllIndexesResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html index da943f5d..0950927b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetIndexResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html index d1df21e0..78905f35 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html index e4efff8f..7992fd01 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.GetResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html index fbf39ad9..9038fa7e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html index 6dd466d3..0f94cf5c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexDocumentResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html index aefc1f49..ac174f2f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html index 32153acc..3bab9a88 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexJobRequest.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html index 48ae18a5..c00931b9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentInfo.html @@ -129,10 +129,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -162,10 +162,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -199,10 +199,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html index 23b5e9d7..42af476c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html index 6f01b82b..f18c4284 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleDocumentsResponseValue.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html index 27da4851..c9080459 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleJobsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Jobs

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html index 5f8d0f45..fb7d6cbb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexMultipleResumesRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Resumes

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html index 529f41f9..b8961c01 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html index 5f656fe0..a2279dcf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexResumeRequest.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html index 17de0dc8..3b238a09 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.IndexSingleDocumentInfo.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html index 5e7622cd..01da11c9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Method

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html index 49d10da0..64637d42 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UpdateUserDefinedTagsResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html index a3b799a8..783e26ab 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Indexes.UserDefinedTagsMethod.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html index e0401870..2053fe15 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Organization

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Tone

@@ -319,10 +319,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html index e47fcc9b..3a150ee3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html index 3dcd3505..7e8adc7d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobDescription

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html index 294bff3f..e11e2638 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.GenerateJobSkill.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Priority

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html index e4f9bb67..a46e1983 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.JobTone.html @@ -128,10 +128,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html index a2aa13aa..68778461 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SkillPriority.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html index d1a9d958..85fdd40f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleRequest.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Limit

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html index a599504f..ed6c9e86 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html index cb16d9da..2cfbaa20 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.JobDescription.SuggestSkillsFromJobTitleResponseValue.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedSkills

@@ -163,10 +163,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html index 11309e60..f30125c2 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseScoredResponseValue-1.html @@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AppliedCategoryWeights

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedCategoryWeights

@@ -236,10 +236,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html index 750f1899..71452588 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.BaseSearchMatchResponseValue-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentCount

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Matches

@@ -205,10 +205,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TotalCount

@@ -242,10 +242,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html index 347b5295..9e4e4642 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.CategoryWeights.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CertificationsHasData

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EducationHasData

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveTypeHasData

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Industries

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndustriesHasData

@@ -374,10 +374,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitlesHasData

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesHasData

@@ -498,10 +498,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -529,10 +529,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevelHasData

@@ -560,10 +560,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -591,10 +591,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsHasData

@@ -628,10 +628,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html index f8dfe04f..bdacc3af 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchJobRequest.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html index e07b950a..ee859764 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html index 55fa6bd0..e40e7d8b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResponseValue.html @@ -147,10 +147,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html index f2e8f0be..116e47e8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.MatchResumeRequest.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html index 2d56cff4..ae29fada 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.DistanceUnit.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html index 2685f51f..042a5d57 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterCriteria.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AverageMonthsPerEmployer

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentManagementLevel

@@ -226,10 +226,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DegreeNames

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DegreeTypes

@@ -310,10 +310,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentIds

@@ -341,10 +341,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLanguages

@@ -372,10 +372,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Employers

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployersMustAllBeCurrentEmployer

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HasPatents

@@ -509,10 +509,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HasSecurityCredentials

@@ -540,10 +540,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsAuthor

@@ -571,10 +571,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrentStudent

@@ -602,10 +602,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsMilitary

@@ -633,10 +633,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsPublicSpeaker

@@ -664,10 +664,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsRecentGraduate

@@ -695,10 +695,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsTopStudent

@@ -726,10 +726,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobPredictiveIndex

@@ -758,10 +758,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -789,10 +789,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesKnown

@@ -821,10 +821,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguagesKnownMustAllExist

@@ -853,10 +853,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LocationCriteria

@@ -884,10 +884,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -915,10 +915,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsManagementExperience

@@ -946,10 +946,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RevisionDateRange

@@ -977,10 +977,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolNames

@@ -1010,10 +1010,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SearchExpression

@@ -1042,10 +1042,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SecurityCredentials

@@ -1075,10 +1075,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -1106,10 +1106,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsMustAllExist

@@ -1138,10 +1138,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -1170,10 +1170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -1202,10 +1202,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTagsMustAllExist

@@ -1240,10 +1240,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html index 09a056cc..5c6ebf9a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.FilterLocation.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeoPoint

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Region

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html index 90020391..bc4a82a4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.IntegerRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html index 3672d680..b12cb4e6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.JobTitleFilter.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Title

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html index a7524654..ec891227 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.LocationCriteria.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Distance

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DistanceUnit

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeProvider

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeProviderKey

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Locations

@@ -291,10 +291,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html index b8ba1cca..a88f3f69 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchByDocumentIdOptions.html @@ -147,10 +147,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html index d900a015..0ef276bc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.MatchRequest.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Take

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html index d9c29237..89259fe5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.PaginationSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skip

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Take

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html index cf40c691..7b3e46fe 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.RevisionDateRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html index 4c41f784..c4b4de40 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchRequestBase.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FilterCriteria

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexIdsToSearchInto

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Settings

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html index 7683e08a..4bd7c71d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SearchMatchSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeJobTitles

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeJobTitlesLanguage

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PositionTitlesMustHaveAnExactMatch

@@ -235,10 +235,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html index 9cd3ebec..490abba6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillExperienceLevel.html @@ -133,10 +133,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html index 5e2addaf..3004f492 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Request.SkillFilter.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExperienceLevel

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillName

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html index 1e49ac7e..c7ee28a3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreData.html @@ -132,10 +132,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Evidence

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UnweightedScore

@@ -200,10 +200,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html index 5757eb8a..be0a6f61 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.CategoryScoreEvidence.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Fact

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -197,10 +197,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html index 52d25977..3d134646 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.DocumentTaxonomies.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Primary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Secondary

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html index 4dcce6d4..3423e22b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EducationScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ActualEducation

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Comparison

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExpectedEducation

@@ -235,10 +235,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html index 23ceadf2..b6af025a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.EnrichedScoreData.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Languages

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html index b16b9ba0..472716e4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundJobTitle.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawTerm

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

VariationOf

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html index dbb84b19..f9da0b0a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.FoundSkill.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skill

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html index 6a1b8a05..e1402306 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.IBimetricScoredResult.html @@ -97,10 +97,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -128,10 +128,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -272,10 +272,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html index e3090ec8..e6ae6658 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.JobTitlesScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html index ca335323..77d77220 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.ManagementLevelScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Actual

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

AmountOfExperienceMatches

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Desired

@@ -232,10 +232,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html index a3a81e1d..8dce577f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.MatchResult.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedRCSScoreData

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnrichedScoreData

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReverseCompatibilityScore

@@ -233,10 +233,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SovScore

@@ -267,10 +267,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeightedScore

@@ -316,10 +316,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html index 1a04550f..bba102f1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SearchResult.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html index fb0bfc30..1c03deee 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SimpleCategoryScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html index a7162603..33e384d9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.SkillsScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Found

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NotFound

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html index 692cc3e9..83b37c9f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomiesScoreData.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ActualTaxonomies

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DesiredTaxonomies

@@ -201,10 +201,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html index ed90f3d7..5b601700 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyEvidence.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Subtaxonomy

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomy

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html index 371a0787..ec5be6fc 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.Response.TaxonomyInfo.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Matched

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html index 07a609e5..b18f6e52 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchRequest.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PaginationSettings

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html index a3b98ff6..2e4c0c9c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html index 3a6ffbb5..14df1767 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.SearchResponseValue.html @@ -140,10 +140,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html index 79518008..a82ea9a9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.AIMatchDetails.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Result

@@ -173,10 +173,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html index 8e3bc05a..f780315e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BasicUIOptions.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SovScoreName

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Style

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Username

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html index 960171ae..eb4d44de 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreDetails.html @@ -138,10 +138,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Result

@@ -175,10 +175,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html index 5427fea4..bbcc982a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreJobDetails.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html index fdd35735..f900181b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.BimetricScoreResumeDetails.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html index 81b3e8ef..19cc1b86 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIDetailsRequest-1.html @@ -145,10 +145,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MatchDetails

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UIOptions

@@ -213,10 +213,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html index bcf112f8..8bc8bb6c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIRequest-1.html @@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SaasRequest

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html index 2d23bc60..ba6d6740 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.GenerateUIResponse.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExpiresIn

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

URL

@@ -202,10 +202,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html index cd1c9b81..9df2ce54 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.BulkHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Documents

@@ -186,10 +186,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html index 104231d3..3f4e8bf5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ClientSideHook.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JsAction

@@ -167,10 +167,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UrlAction

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html index 3d8a35a6..4cc91178 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.DocumentIdentifier.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html index 4b966d64..0a0e2c05 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.HookPostBody-1.html @@ -146,10 +146,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomInfo

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Username

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html index bc9447cc..e6cfbffb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.JsAction.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Data

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Target

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TargetOrigin

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html index 96938ab0..3f3c19df 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FilterCriteria

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredCategoryWeights

@@ -217,10 +217,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html index e9502617..e6532cd3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateHooks.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Client

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Server

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html index d3d71929..6f35611d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.OnUpdateServerSideHook.html @@ -134,10 +134,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -167,10 +167,10 @@
Overrides
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkText

@@ -206,10 +206,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html index 77483c90..ccbb6582 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.ServerSideHook.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CustomInfo

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Url

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html index dc23410a..64f50f30 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHook.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -176,10 +176,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html index c2f62ac6..1a1a04a5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.SourcingHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobBoard

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobBoardDocumentId

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -242,10 +242,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SourceDocument

@@ -279,10 +279,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html index 7c1502c0..ce515298 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UrlAction.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Target

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Url

@@ -200,10 +200,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html index b17b0a5d..b5262c63 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHook.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsBulk

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkText

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html index ffd7017a..d5bacd2b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookCollection.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Client

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OnUpdate

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Server

@@ -227,10 +227,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Sourcing

@@ -267,10 +267,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html index d4b4b97e..1655b300 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.Hooks.UserActionHookPostBody-1.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentId

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexId

@@ -217,10 +217,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html index 7c6f5e37..9c41f747 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchDetails.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AppliedCategoryWeights

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HtmlDocument

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SourceDocumentType

@@ -230,10 +230,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html index 29969a6b..1dcf5f9f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.MatchUISettings.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseOptions

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UIOptions

@@ -228,10 +228,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html index 968f3427..8a094dad 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.StyleOptions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FontFamily

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FontUrl

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HeaderColor

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PrimaryColor

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SquareCorners

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html index e3635c30..57e207b4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobDetailsRequest.html @@ -137,10 +137,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html index 50d6d407..efce2014 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreJobRequest.html @@ -144,10 +144,10 @@
S diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html index 31abb6cc..61b766d7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeDetailsRequest.html @@ -137,10 +137,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html index 5a77cfa4..bf05b583 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIBimetricScoreResumeRequest.html @@ -144,10 +144,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html index f9feca18..c1265aa1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchByDocumentIdOptions.html @@ -144,10 +144,10 @@
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html index 695ca71c..af53c42f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchDetailsRequest.html @@ -137,10 +137,10 @@
Synta diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html index a0213c3d..92cfa555 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchJobRequest.html @@ -144,10 +144,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html index 48f0923a..fee1a144 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIMatchResumeRequest.html @@ -144,10 +144,10 @@
Syntax diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html index c715d885..a32eabcd 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UIOptions.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExecuteImmediately

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Hooks

@@ -200,10 +200,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowBanner

@@ -231,10 +231,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowDetailsButton

@@ -262,10 +262,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFilterCriteria

@@ -293,10 +293,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFindSimilar

@@ -324,10 +324,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowJobBoards

@@ -356,10 +356,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowSavedSearches

@@ -387,10 +387,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowWebSourcing

@@ -418,10 +418,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ShowWeights

@@ -449,10 +449,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsAutoCompleteCustomSkillsList

@@ -480,10 +480,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTagsPicklists

@@ -518,10 +518,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html index 12a1b118..7ab4910b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UISearchRequest.html @@ -144,10 +144,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html index b734640b..e107b614 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagOption.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html index ec9ad6f5..bb9a430f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Matching.UI.UserDefinedTagsPicklist.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Label

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Options

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html index 1b052b72..9b690818 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BaseParseResponseValue.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ConversionMetadata

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Conversions

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParsingMetadata

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParsingResponse

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionNormalizationResponse

@@ -296,10 +296,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html index 8617bee2..afbd88bf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.BasicParseOptions.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Configuration

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizerData

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionsSettings

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -256,10 +256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSettings

@@ -293,10 +293,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html index 155008ca..44af9cb1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ConversionMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DetectedType

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentHash

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ElapsedMilliseconds

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputValidityCode

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedFileExtension

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html index fa1c7df4..1ef827ad 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.Conversions.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateImage

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateImageExtension

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HTML

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PDF

@@ -254,10 +254,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RTF

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html index 03bc9358..09424d8f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequest.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DataType

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EnumerationValues

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Identifier

@@ -222,10 +222,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prompt

@@ -259,10 +259,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html index 27ca9954..2a45865a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexRequestDataType.html @@ -138,10 +138,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html index ae3dd5b9..be63da89 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponse.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Responses

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html index ac7bdfcb..58e94a8d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.FlexResponseItem.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Identifier

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Reply

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReplyList

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html index a0c1d174..09f32f46 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html index 000f90ec..51af8b11 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseJobResponseValue.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobData

@@ -186,10 +186,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html index ad379192..75915880 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseOptions.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FlexRequests

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeOptions

@@ -208,10 +208,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexingOptions

@@ -243,10 +243,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputCandidateImage

@@ -274,10 +274,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputHtml

@@ -305,10 +305,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputPdf

@@ -336,10 +336,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OutputRtf

@@ -367,10 +367,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UseLLMParser

@@ -406,10 +406,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html index fe7e6ba5..4e8ceb40 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseRequest.html @@ -167,10 +167,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParseRequest(Document, ParseOptions)

@@ -209,10 +209,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentAsBase64String

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLastModified

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html index eeaef67d..2b2e1ac7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponse.html @@ -145,10 +145,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html index b4290267..574a8f77 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParseResumeResponseValue.html @@ -149,10 +149,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EducationNormalizationResponse

@@ -180,10 +180,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FlexResponse

@@ -211,10 +211,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RedactedResumeData

@@ -244,10 +244,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeData

@@ -281,10 +281,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html index 023f9b66..92197ebe 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ParsingMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ElapsedMilliseconds

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LicenseSerialNumber

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimedOut

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimedOutAtMilliseconds

@@ -257,10 +257,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html index 7b463c0e..5160b014 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.ProfessionsSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalize

@@ -176,10 +176,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -213,10 +213,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html index a46c1357..ec52c8a8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.API.Parsing.SkillsSettings.html @@ -125,10 +125,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalize

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyVersion

@@ -214,10 +214,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html index 08791c7f..8615ac84 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.BasicProfession.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html index fc03d8f0..fc60cc75 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ExtractedSkill.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Matches

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html index e395a49d..07f2476a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.LangDescription.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsoCode

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html index 6e2ab268..4359e34f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedProfession.html @@ -158,10 +158,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html index ae0eed82..e76692be 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.NormalizedSkill.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

RawText

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html index 6374b02e..558958ae 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Profession.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Class

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Isco

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Kldb2020

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Onet

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Onet2019

@@ -321,10 +321,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UkSoc2010

@@ -352,10 +352,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UwvBoc

@@ -389,10 +389,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html index 5c141310..367b24a0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionClassification-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CodeId

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -211,10 +211,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html index 0f634f61..8743dfc7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.ProfessionMultipleDescriptions.html @@ -155,10 +155,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -187,10 +187,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Descriptions

@@ -224,10 +224,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html index fffb77a7..4e0a4bfd 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Skill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsoCode

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -258,10 +258,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html index ff75c287..d338bff3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillAndConfidence.html @@ -141,10 +141,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -178,10 +178,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html index 190c15b7..0ed9d63f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMatch.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

BeginSpan

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndSpan

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Likelihood

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawText

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html index 22f5cf71..5802a620 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.SkillMultipleDescriptions.html @@ -136,10 +136,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Descriptions

@@ -205,10 +205,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html index 0944a888..f34735ff 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.Taxonomy.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CsvOutput

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html index 8e7e2ed8..330e19e9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.TaxonomyMetadata.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ServiceVersion

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyReleaseDate

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html index 63224ab9..09927be3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.DataEnrichment.VersionedProfessionClassification-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -185,10 +185,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Document.html b/docs/site-/sdk/Textkernel.Tx.Models.Document.html index 9d188e72..a0d877d1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Document.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Document.html @@ -126,10 +126,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

Document(Byte[], DateTime)

@@ -168,10 +168,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

Document(String)

@@ -205,10 +205,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AsBase64

@@ -236,10 +236,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastModified

@@ -273,10 +273,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html b/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html index d53f8d1c..c0720694 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.GeoCoordinates.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Latitude

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Longitude

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html b/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html index bf6b6507..dbe8fcb9 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.GeocodedCoordinates.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Source

@@ -170,10 +170,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html index 3dde17e4..535d4c5a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.ApplicationDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDeadline

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDescription

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactEmail

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactPerson

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactPhone

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostedDate

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReferenceNumber

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Website

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html index cf01de68..2b320686 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.EmployerNames.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MainEmployerName

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html index d460fad9..48e4ecd5 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobDegree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

InternationalEducationLevel

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LocalEducationLevel

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html index b3e00154..82fe122c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobMetadata.html @@ -146,10 +146,10 @@
Syntax
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html index cbd0cfab..da2a3633 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.JobTitles.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MainJobTitle

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedProfession

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html index 1e8d3d67..5b631778 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.ParsedJob.html @@ -130,10 +130,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParsedJob()

@@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ApplicationDetails

@@ -185,10 +185,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Benefits

@@ -216,10 +216,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CertificationsAndLicenses

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContractType

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentJobIsManagement

@@ -321,10 +321,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentLocation

@@ -352,10 +352,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Degrees

@@ -383,10 +383,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DriversLicenses

@@ -414,10 +414,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerDescription

@@ -445,10 +445,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmployerNames

@@ -476,10 +476,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmploymentType

@@ -511,10 +511,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -542,10 +542,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -573,10 +573,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HighestManagementScore

@@ -604,10 +604,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsRemote

@@ -635,10 +635,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobDescription

@@ -666,10 +666,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobMetadata

@@ -697,10 +697,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobRequirements

@@ -728,10 +728,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitles

@@ -759,10 +759,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCodes

@@ -790,10 +790,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementLevel

@@ -821,10 +821,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumWorkingHours

@@ -852,10 +852,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumYears

@@ -883,10 +883,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaximumYearsManagement

@@ -914,10 +914,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumWorkingHours

@@ -945,10 +945,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumYears

@@ -976,10 +976,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumYearsManagement

@@ -1007,10 +1007,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Owners

@@ -1038,10 +1038,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequiredDegree

@@ -1069,10 +1069,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Salary

@@ -1100,10 +1100,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolNames

@@ -1131,10 +1131,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -1162,10 +1162,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -1194,10 +1194,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -1225,10 +1225,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TermsOfInterest

@@ -1256,10 +1256,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -1290,10 +1290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WorkingHours

@@ -1325,10 +1325,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

FromFile(String)

@@ -1374,10 +1374,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

FromJson(String)

@@ -1423,10 +1423,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -1481,10 +1481,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html index ec9b9bd5..05703751 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.PayRange.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Currency

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Maximum

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minimum

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawMaximum

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawMinimum

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TimeScale

@@ -331,10 +331,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html index ab3996ce..362fd23d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobNormalizedSkill.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -176,10 +176,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html index c0365c95..c51b33ae 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobRawSkill.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -167,10 +167,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html index 2ca5ae10..cdea8cca 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkill.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html index d1b32797..04f0fede 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSkillVariation.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Required

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html index 32cf8df5..d42c776b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobSubTaxonomy.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html index bf72af95..e6ce8feb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomy.html @@ -151,10 +151,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html index 40622957..403b1969 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobTaxonomyRoot.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Root

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html index 0e4d70ea..c5216ffb 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Job.Skills.JobV2Skills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedProfessionClasses

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Location.html b/docs/site-/sdk/Textkernel.Tx.Models.Location.html index 4ed5411d..1d236815 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Location.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Location.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CountryCode

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GeoCoordinates

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Municipality

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PostalCode

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Regions

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StreetAddressLines

@@ -318,10 +318,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html index 23dfd1d7..43cb6f89 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Matching.Index.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IndexType

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html b/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html index 0911f83d..9d193ba7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Matching.IndexType.html @@ -123,10 +123,10 @@

Fields diff --git a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html index 2aa6f6a3..029fa47f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocument.html @@ -125,10 +125,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

ToFile(String, Boolean)

@@ -165,10 +165,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -215,10 +215,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -254,10 +254,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html index b149eb37..87c05581 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.ParsedDocumentMetadata.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentCulture

@@ -163,10 +163,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLanguage

@@ -198,10 +198,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DocumentLastModified

@@ -230,10 +230,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ParserSettings

@@ -261,10 +261,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PlainText

@@ -298,10 +298,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html index 5495db79..ce7ed6ba 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Association.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Organization

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Role

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html index bbecd4d2..72f8d32e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.CandidateReference.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Company

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReferenceName

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telephones

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Title

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WebAddresses

@@ -380,10 +380,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html index 13731988..7e476591 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Certification.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

IsVariation

@@ -160,10 +160,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MatchedFromList

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -229,10 +229,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html index 6cf25868..39068ed0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.ContactInformation.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

CandidateName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telephones

@@ -252,10 +252,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WebAddresses

@@ -289,10 +289,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html index d0bee28d..23dbe006 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.PersonName.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FamilyName

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FormattedName

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GivenName

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MiddleName

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Moniker

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Prefix

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Suffix

@@ -349,10 +349,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html index e1b62d3f..d8f6252c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.Telephone.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AreaCityCode

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

InternationalCountryCode

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubscriberNumber

@@ -232,10 +232,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html index 2d3c310a..dee1dee1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddress.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Address

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -215,10 +215,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html index f2421cdb..4d728e12 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ContactInfo.WebAddressType.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

Facebook

A Facebook profile URL

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Gab

A Gab username

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GitHub

A GitHub username/URL

@@ -216,10 +216,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ICQ

An ICQ username

@@ -246,10 +246,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Instagram

An Instagram username

@@ -276,10 +276,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LinkedIn

A LinkedIn URL

@@ -306,10 +306,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MeWe

A MeWe username/URL

@@ -336,10 +336,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Parler

A Parler username

@@ -366,10 +366,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PersonalWebsite

A personal website URL

@@ -396,10 +396,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QQ

A QQ username/number

@@ -426,10 +426,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Quora

A Quora username

@@ -456,10 +456,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Reddit

A Reddit username/URL

@@ -486,10 +486,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Signal

A Signal username/number

@@ -516,10 +516,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skype

A Skype username/URL

@@ -546,10 +546,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StackOverflow

A Stack Overflow username/URL

@@ -576,10 +576,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telegram

A Telegram username

@@ -606,10 +606,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Telegraph

A Telegraph username

@@ -636,10 +636,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Twitter

A Twitter handle

@@ -666,10 +666,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Unknown

An unknown internet handle/URL (the platform/website/app was not specified)

@@ -696,10 +696,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WeChat

A WeChat username

@@ -726,10 +726,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WhatsApp

A WhatsApp username/number

@@ -758,10 +758,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -791,10 +791,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(String to WebAddressType)

@@ -846,10 +846,10 @@
Returns
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html index 48499325..17988466 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.Degree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedInternational

@@ -191,10 +191,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedLocal

@@ -225,10 +225,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html index ef887c70..eb5d7b05 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Degree

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

GPA

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Graduated

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastEducationDate

@@ -313,10 +313,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Majors

@@ -375,10 +375,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Minors

@@ -406,10 +406,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolName

@@ -437,10 +437,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SchoolType

@@ -478,10 +478,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -509,10 +509,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -546,10 +546,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html index 53090075..2b63a86f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.EducationHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EducationDetails

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HighestDegree

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html index 219ac392..65c2b141 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.GradePointAverage.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MaxScore

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MinimumScore

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedScore

@@ -224,10 +224,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Score

@@ -255,10 +255,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ScoringSystem

@@ -292,10 +292,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html index ceadac4b..bb740797 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Education.NormalizedDegree.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Code

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html index 510f5982..02c002b8 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Bullet.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html index c8a903c5..c2916a3f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.CompanyNameWithProbability.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Probability

@@ -174,10 +174,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html index 129c87d8..933edb1a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Employer.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Location

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OtherFoundName

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html index 6bcb0209..8d3255e4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.EmploymentHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExperienceSummary

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Positions

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html index 610d7285..c61b413d 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ExperienceSummary.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AttentionNeeded

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

AverageMonthsPerEmployer

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentManagementLevel

@@ -229,10 +229,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -266,10 +266,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ExecutiveType

@@ -309,10 +309,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FulltimeDirectHirePredictiveIndex

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementScore

@@ -379,10 +379,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ManagementStory

@@ -410,10 +410,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsOfManagementExperience

@@ -447,10 +447,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsOfWorkExperience

@@ -489,10 +489,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html index 980a776c..4086105b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.JobTitle.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Probability

@@ -193,10 +193,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -224,10 +224,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -262,10 +262,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html index 9b320ca9..bd8b0f34 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.ParsingNormalizedProfession.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Class

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Confidence

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ISCO

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ONET

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Profession

@@ -318,10 +318,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html index a19d33c4..5406ed1e 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.Position.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Bullets

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Employer

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -282,10 +282,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrent

@@ -313,10 +313,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsSelfEmployed

@@ -344,10 +344,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobLevel

@@ -382,10 +382,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobTitle

@@ -413,10 +413,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

JobType

@@ -450,10 +450,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedProfession

@@ -481,10 +481,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NumberEmployeesSupervised

@@ -512,10 +512,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedToByCompanyName

@@ -543,10 +543,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedToByDates

@@ -574,10 +574,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -605,10 +605,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyName

@@ -638,10 +638,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyName

@@ -671,10 +671,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TaxonomyPercentage

@@ -709,10 +709,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html index 520c39ba..87c1de76 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Employment.VersionedNormalizedProfessionClassification-1.html @@ -148,10 +148,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -185,10 +185,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html index e78a5b66..bd26977b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LanguageCompetency.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Language

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCode

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html index d17c561f..4c70855f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.LicenseDetails.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

MatchedFromList

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html index 5ff3bfd4..d62e34be 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ReservedData.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EmailAddresses

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Names

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

OtherData

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phones

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Urls

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html index 75ce5f12..c7f9ee42 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeMetadata.html @@ -142,10 +142,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundSections

@@ -173,10 +173,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ReservedData

@@ -204,10 +204,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeQuality

@@ -254,10 +254,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html index 6fcc9afc..3261db66 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityAssessment.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Findings

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Level

@@ -198,10 +198,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html index ef352df3..79e479be 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityFinding.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Message

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QualityCode

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionIdentifiers

@@ -226,10 +226,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html index 39f14414..7ef3e4ee 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeQualityLevel.html @@ -126,10 +126,10 @@

Fields

| - Improve this Doc + Improve this Doc - View Source + View Source

DataMissing

Some data was missing that should be included in a resume

@@ -156,10 +156,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FatalProblem

A fatal issue was found in the resume. Parse results may have severe inaccuracies

@@ -186,10 +186,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MajorIssue

A major issue was found in the resume that will reduce the quality of parse results

@@ -216,10 +216,10 @@
Field Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestedImprovement

Only minor issues were found

@@ -248,10 +248,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -281,10 +281,10 @@

Operators

| - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(String to ResumeQualityLevel)

@@ -336,10 +336,10 @@
Returns
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html index 328a4169..a8c98f81 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Metadata.ResumeSection.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FirstLineNumber

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HeaderTextFound

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastLineNumber

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionType

@@ -283,10 +283,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html index 9362ca40..ea6cffcf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Country

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Service

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -287,10 +287,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html index d3647621..d3338993 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.MilitaryService.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Branch

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Rank

@@ -225,10 +225,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html index f211f62a..8b1a74b6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Military.SecurityCredential.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundInContext

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html index ea9b3047..331d560c 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NationalIdentity.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Number

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Phrase

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html index 36dc5a80..08d40558 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.NormalizedString.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -196,10 +196,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html index 9fbb1084..a66c4922 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.ParsedResume.html @@ -130,10 +130,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

ParsedResume()

@@ -154,10 +154,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Achievements

@@ -185,10 +185,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Associations

@@ -216,10 +216,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Certifications

@@ -247,10 +247,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ContactInformation

@@ -278,10 +278,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CoverLetter

@@ -309,10 +309,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Education

@@ -340,10 +340,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

EmploymentHistory

@@ -371,10 +371,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Hobbies

@@ -402,10 +402,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LanguageCompetencies

@@ -434,10 +434,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Licenses

@@ -466,10 +466,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MilitaryExperience

@@ -497,10 +497,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Objective

@@ -528,10 +528,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Patents

@@ -559,10 +559,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PersonalAttributes

@@ -590,10 +590,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ProfessionalSummary

@@ -621,10 +621,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Publications

@@ -652,10 +652,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

QualificationsSummary

@@ -683,10 +683,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

References

@@ -714,10 +714,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResumeMetadata

@@ -745,10 +745,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SecurityCredentials

@@ -776,10 +776,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -807,10 +807,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsData

@@ -839,10 +839,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SpeakingEngagements

@@ -870,10 +870,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Training

@@ -901,10 +901,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

UserDefinedTags

@@ -937,10 +937,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

FromFile(String)

@@ -986,10 +986,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

FromJson(String)

@@ -1035,10 +1035,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ToJson(Boolean)

@@ -1093,10 +1093,10 @@
Overrides
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html index 5efb8d85..72025eab 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.PersonalAttributes.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Availability

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Birthplace

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentLocation

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

CurrentSalary

@@ -250,10 +250,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DateOfBirth

@@ -281,10 +281,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DrivingLicense

@@ -312,10 +312,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FamilyComposition

@@ -343,10 +343,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FathersName

@@ -374,10 +374,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Gender

@@ -405,10 +405,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HukouArea

@@ -436,10 +436,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

HukouCity

@@ -467,10 +467,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MaritalStatus

@@ -498,10 +498,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MothersMaidenName

@@ -529,10 +529,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MotherTongue

@@ -560,10 +560,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NationalIdentities

@@ -591,10 +591,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Nationality

@@ -622,10 +622,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PassportNumber

@@ -653,10 +653,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PreferredLocation

@@ -684,10 +684,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequiredSalary

@@ -715,10 +715,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

VisaStatus

@@ -746,10 +746,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

WillingToRelocate

@@ -783,10 +783,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html index 7d3e50ca..26d5da63 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Salary.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Amount

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Currency

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html index aa0c9471..e5939847 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.SectionIdentifier.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SectionType

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html index c150e31a..83c8ba6a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeNormalizedSkill.html @@ -139,10 +139,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -170,10 +170,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -201,10 +201,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -238,10 +238,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html index 7ac0260c..20df6283 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeRawSkill.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -229,10 +229,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html index 4d8907c1..58c445e0 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkill.html @@ -146,10 +146,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ChildrenLastUsed

@@ -177,10 +177,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ChildrenMonthsExperience

@@ -208,10 +208,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Variations

@@ -245,10 +245,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html index f9032850..34cbf07a 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSkillVariation.html @@ -137,10 +137,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

FoundIn

@@ -168,10 +168,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

LastUsed

@@ -199,10 +199,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

MonthsExperience

@@ -236,10 +236,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html index 0ddd5738..4451ce65 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeSubTaxonomy.html @@ -140,10 +140,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Skills

@@ -177,10 +177,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html index fb4815c5..f52e25d7 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomy.html @@ -151,10 +151,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html index db7252a0..f5ec072b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeTaxonomyRoot.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Root

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Taxonomies

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html index f11d348f..f2e4290f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.Skills.ResumeV2Skills.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Normalized

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Raw

@@ -189,10 +189,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RelatedProfessionClasses

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html index dea77d2a..68003d9f 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingDetails.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

EndDate

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Entity

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Qualifications

@@ -220,10 +220,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

StartDate

@@ -251,10 +251,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -288,10 +288,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html index 2c6e3c85..fdbdc029 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Resume.TrainingHistory.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Trainings

@@ -194,10 +194,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html index 9db4b041..d4061290 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundSubTaxonomy.html @@ -135,10 +135,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfOverall

@@ -166,10 +166,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfParent

@@ -203,10 +203,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html index 5235b4e4..d5ac2426 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.FoundTaxonomy-1.html @@ -147,10 +147,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -178,10 +178,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -209,10 +209,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

PercentOfOverall

@@ -240,10 +240,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -281,10 +281,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html index 505b345e..a42c1acf 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ITaxonomy-1.html @@ -112,10 +112,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -143,10 +143,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -174,10 +174,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -211,10 +211,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html index 76b5e77e..10f1e183 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.NormalizedSkill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RawSkills

@@ -221,10 +221,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -258,10 +258,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html index 7a7d183b..154e7da1 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionClass.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Groups

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Percent

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html index 8a372c9a..01f8743b 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.ProfessionGroup.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizedSkills

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Percent

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html index 34a4cc31..031c0283 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.RawSkill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -165,10 +165,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html index e628ef5e..8bf5bbca 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Skill.html @@ -128,10 +128,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ExistsInText

@@ -159,10 +159,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -190,10 +190,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -227,10 +227,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html index e58d494e..338399d4 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.SubTaxonomy.html @@ -127,10 +127,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyId

@@ -158,10 +158,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomyName

@@ -195,10 +195,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html index 3fa1e52e..a4f7f2e6 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.Skills.Taxonomy.html @@ -130,10 +130,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Id

@@ -161,10 +161,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -192,10 +192,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

SubTaxonomies

@@ -223,10 +223,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TxDefaults

@@ -265,10 +265,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html b/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html index 16998225..1c0fef07 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.TxDate.html @@ -133,10 +133,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Date

@@ -164,10 +164,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundDay

@@ -195,10 +195,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundMonth

@@ -226,10 +226,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

FoundYear

@@ -257,10 +257,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

IsCurrentDate

@@ -294,10 +294,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html b/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html index 232cc155..725571d3 100644 --- a/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html +++ b/docs/site-/sdk/Textkernel.Tx.Models.TxPrimitive-1.html @@ -143,10 +143,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -180,10 +180,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.TxClient.html b/docs/site-/sdk/Textkernel.Tx.TxClient.html index 5c27106f..40341611 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxClient.html +++ b/docs/site-/sdk/Textkernel.Tx.TxClient.html @@ -131,10 +131,10 @@

Constructors

| - Improve this Doc + Improve this Doc - View Source + View Source

TxClient(HttpClient, TxClientSettings)

@@ -184,10 +184,10 @@
Parameters
| - Improve this Doc + Improve this Doc - View Source + View Source

TxClient(String, String, DataCenter, IEnumerable<String>)

@@ -240,10 +240,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

ShowFullRequestBodyInExceptions

@@ -274,10 +274,10 @@

Methods

| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteProfession(String, IEnumerable<String>, String, Int32)

@@ -364,10 +364,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkill(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -460,10 +460,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

AutocompleteSkillV2(String, IEnumerable<String>, String, IEnumerable<String>, Int32)

@@ -556,10 +556,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedJobWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -657,10 +657,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

BimetricScore<TTarget>(ParsedResumeWithId, List<TTarget>, CategoryWeights, SearchMatchSettings)

@@ -758,10 +758,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessions(Int32, Int32, String)

@@ -841,10 +841,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareProfessionsV2(Int32, Int32, String)

@@ -924,10 +924,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(Int32, String, SkillScore[])

@@ -1005,10 +1005,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfession(ParsedResume, Int32, String, Boolean)

@@ -1090,10 +1090,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(Int32, String, SkillScore[])

@@ -1171,10 +1171,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CompareSkillsToProfessionV2(ParsedResume, Int32, String, Boolean)

@@ -1256,10 +1256,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

CreateIndex(IndexType, String)

@@ -1328,10 +1328,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteDocument(String, String)

@@ -1399,10 +1399,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteIndex(String)

@@ -1464,10 +1464,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

DeleteMultipleDocuments(String, IEnumerable<String>)

@@ -1535,10 +1535,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -1551,10 +1551,10 @@
Declaration
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkills(String, String, String, Single)

@@ -1639,10 +1639,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ExtractSkillsV2(String, String, String, Single)

@@ -1727,10 +1727,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResume(FormatResumeRequest)

@@ -1793,10 +1793,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

FormatResumeWithTemplate(FormatResumeWithTemplateRequest)

@@ -1859,10 +1859,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GenerateJobDescription(GenerateJobRequest)

@@ -1924,10 +1924,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, Address, GeocodeCredentials)

@@ -2002,10 +2002,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedJob, GeocodeCredentials)

@@ -2074,10 +2074,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, Address, GeocodeCredentials)

@@ -2152,10 +2152,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Geocode(ParsedResume, GeocodeCredentials)

@@ -2224,10 +2224,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2314,10 +2314,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2398,10 +2398,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2495,10 +2495,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedJob, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2586,10 +2586,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, Address, GeocodeCredentials, Boolean)

@@ -2676,10 +2676,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeocodeCredentials, Boolean)

@@ -2760,10 +2760,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, Address, GeocodeCredentials, Boolean)

@@ -2857,10 +2857,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GeocodeAndIndex(ParsedResume, IndexSingleDocumentInfo, GeoCoordinates, GeocodeCredentials, Boolean)

@@ -2948,10 +2948,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAccountInfo()

@@ -2995,10 +2995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetAllIndexes()

@@ -3042,10 +3042,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetJob(String, String)

@@ -3113,10 +3113,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomy(String, TaxonomyFormat)

@@ -3188,10 +3188,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetProfessionsTaxonomyMetadata()

@@ -3236,10 +3236,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetResume(String, String)

@@ -3307,10 +3307,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomy(TaxonomyFormat)

@@ -3374,10 +3374,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadata()

@@ -3422,10 +3422,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyMetadataV2()

@@ -3470,10 +3470,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

GetSkillsTaxonomyV2(TaxonomyFormat)

@@ -3537,10 +3537,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedJob, String, String, IEnumerable<String>)

@@ -3621,10 +3621,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexDocument(ParsedResume, String, String, IEnumerable<String>)

@@ -3705,10 +3705,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexJobInfo>, String)

@@ -3776,10 +3776,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

IndexMultipleDocuments(IEnumerable<IndexResumeInfo>, String)

@@ -3847,10 +3847,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupProfessions(IEnumerable<Int32>, String)

@@ -3922,10 +3922,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkills(IEnumerable<String>, String)

@@ -3995,10 +3995,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

LookupSkillsV2(IEnumerable<String>, String)

@@ -4068,10 +4068,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(String, String, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4170,10 +4170,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedJob, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4266,10 +4266,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Match(ParsedResume, IEnumerable<String>, CategoryWeights, FilterCriteria, SearchMatchSettings, Int32)

@@ -4362,10 +4362,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeProfessions(IEnumerable<String>, String, String)

@@ -4444,10 +4444,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkills(IEnumerable<String>, String, String)

@@ -4526,10 +4526,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

NormalizeSkillsV2(IEnumerable<String>, String, String)

@@ -4583,10 +4583,10 @@
Returns
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseJob(ParseRequest)

@@ -4664,10 +4664,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

ParseResume(ParseRequest)

@@ -4745,10 +4745,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

Search(IEnumerable<String>, FilterCriteria, SearchMatchSettings, PaginationSettings)

@@ -4828,10 +4828,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScore(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4904,10 +4904,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SkillsSimilarityScoreV2(IEnumerable<SkillScore>, IEnumerable<SkillScore>)

@@ -4980,10 +4980,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5065,10 +5065,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedJob, Int32, Boolean, String)

@@ -5150,10 +5150,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkills(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5241,10 +5241,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(IEnumerable<SkillScore>, Int32, Boolean, String)

@@ -5326,10 +5326,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedJob, Int32, Boolean, String)

@@ -5411,10 +5411,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestProfessionsFromSkillsV2(ParsedResume, Int32, Boolean, String, Boolean)

@@ -5502,10 +5502,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromJobTitle(String, String, Nullable<Int32>)

@@ -5579,10 +5579,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(IEnumerable<Int32>, Int32, String)

@@ -5658,10 +5658,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedJob, Int32, String)

@@ -5737,10 +5737,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessions(ParsedResume, Int32, String)

@@ -5816,10 +5816,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(IEnumerable<Int32>, Int32, String, IEnumerable<String>)

@@ -5901,10 +5901,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -5986,10 +5986,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromProfessionsV2(ParsedResume, Int32, String, IEnumerable<String>)

@@ -6071,10 +6071,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(IEnumerable<SkillScore>, Int32, String)

@@ -6153,10 +6153,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedJob, Int32, String)

@@ -6234,10 +6234,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkills(ParsedResume, Int32, String, Boolean)

@@ -6321,10 +6321,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(IEnumerable<SkillScore>, Int32, String, IEnumerable<String>)

@@ -6409,10 +6409,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedJob, Int32, String, IEnumerable<String>)

@@ -6496,10 +6496,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

SuggestSkillsFromSkillsV2(ParsedResume, Int32, String, Boolean, IEnumerable<String>)

@@ -6589,10 +6589,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateJobUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6672,10 +6672,10 @@
Exceptions
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateResumeUserDefinedTags(String, String, IEnumerable<String>, UserDefinedTagsMethod)

@@ -6768,10 +6768,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html b/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html index 1c0fc172..9db83485 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html +++ b/docs/site-/sdk/Textkernel.Tx.TxClientSettings.html @@ -126,10 +126,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

AccountId

@@ -157,10 +157,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

DataCenter

@@ -188,10 +188,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ServiceKey

@@ -219,10 +219,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TrackingTags

@@ -256,10 +256,10 @@
Property Value
diff --git a/docs/site-/sdk/Textkernel.Tx.TxException.html b/docs/site-/sdk/Textkernel.Tx.TxException.html index 557bd3fe..6f744a42 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxException.html @@ -166,10 +166,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

HttpStatusCode

@@ -197,10 +197,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

RequestBody

@@ -228,10 +228,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

ResponseMessage

@@ -259,10 +259,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TransactionId

@@ -290,10 +290,10 @@
Property Value
| - Improve this Doc + Improve this Doc - View Source + View Source

TxErrorCode

@@ -331,10 +331,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html b/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html index 2190d9a5..adb9a105 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxGeocodeJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html index b649a3f2..e6e68d26 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxGeocodeResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html b/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html index b17ab905..c8f0b068 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxIndexJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html index d918a5e3..c28beccf 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxIndexResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html index ea5b65e7..557c7bf1 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationJobException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html index 16d45372..c1bff3cc 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxProfessionNormalizationResumeException.html @@ -192,10 +192,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html b/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html index 2b68dac8..640613b4 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxUsableJobException.html @@ -183,10 +183,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -224,10 +224,10 @@

Implements

diff --git a/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html b/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html index 12ec6c71..d92b264c 100644 --- a/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html +++ b/docs/site-/sdk/Textkernel.Tx.TxUsableResumeException.html @@ -183,10 +183,10 @@

Properties

| - Improve this Doc + Improve this Doc - View Source + View Source

Response

@@ -224,10 +224,10 @@

Implements

diff --git a/docs/site-/sdk/index.html b/docs/site-/sdk/index.html index adae7f86..afaec12a 100644 --- a/docs/site-/sdk/index.html +++ b/docs/site-/sdk/index.html @@ -133,7 +133,7 @@

Matching/Searching/Bimetric Scoring