@semantha/sdk 10.10.0 → 11.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -679,6 +679,7 @@ interface DocumentClassNode {
679
679
  name: string;
680
680
  id?: string;
681
681
  parentId?: string;
682
+ shortId?: string;
682
683
  documentsCount?: number;
683
684
  customFields?: CustomField[];
684
685
  }
@@ -692,6 +693,7 @@ interface DocumentClass {
692
693
  name: string;
693
694
  id?: string;
694
695
  parentId?: string;
696
+ shortId?: string;
695
697
  documentsCount?: number;
696
698
  subClasses?: DocumentClassNode[];
697
699
  customFields?: CustomField[];
@@ -714,6 +716,7 @@ interface DocumentClassBulk {
714
716
  name: string;
715
717
  id?: string;
716
718
  documentIds?: string[];
719
+ shortId?: string;
717
720
  subClasses?: DocumentClassBulk[];
718
721
  tags?: string[];
719
722
  color?: string;
@@ -1344,6 +1347,15 @@ interface PromptExecution {
1344
1347
  arguments?: string[];
1345
1348
  }
1346
1349
 
1350
+ /**
1351
+ * @author semantha
1352
+ *
1353
+ * This is a generated file do not change manually!
1354
+ */
1355
+ declare const PromptLabelEnumValues: readonly ["COMPARE", "REQUIREMENTS", "SEARCH", "LIBRARY"];
1356
+ type PromptLabelEnum = (typeof PromptLabelEnumValues)[number];
1357
+ declare function isPromptLabelEnumValue(value: any): value is PromptLabelEnum;
1358
+
1347
1359
  /**
1348
1360
  * @author semantha
1349
1361
  *
@@ -2171,7 +2183,7 @@ declare class BulkdomainsReferencedocumentsEndpoint {
2171
2183
  * @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
2172
2184
  * @param color string? - Use this parameter to specify the color for your reference document. Possible values are RED, MAGENTA, AQUA, ORANGE, GREY, or LAVENDER.
2173
2185
  * @param comment string? - Use this parameter to add a comment to your reference document.
2174
- * @param documentclassid string? - List of documentclass ID for the target. The limit here is 1 ID.
2186
+ * @param documentclassid string? - Documentclass the uploaded reference document should be linked to. Accepts a single documentclass UUID `id`.
2175
2187
  * @param addparagraphsasdocuments boolean? - Use this parameter to create individual reference documents in the library for each paragraph in your document. The parameter is of type boolean and is set to false by default.
2176
2188
  */
2177
2189
  post(data: {
@@ -3014,21 +3026,21 @@ declare class PromptEndpoint {
3014
3026
  private readonly ENDPOINT;
3015
3027
  constructor(restClient: RestClient, parentEndpoint: string, id: string);
3016
3028
  /**
3017
- * Read one entity.
3029
+ * Read one prompt.
3018
3030
  */
3019
3031
  get(): Promise<Prompt>;
3020
3032
  /**
3021
- * Delete one entity. Needs roles: 'Domain Admin' or 'Expert User'
3033
+ * Delete one prompt. Needs roles: 'Domain Admin' or 'Expert User'
3022
3034
  */
3023
3035
  delete(): Promise<RestResponse<void>>;
3024
3036
  /**
3025
- * Change one entity. Needs roles: 'Domain Admin' or 'Expert User'
3037
+ * Change one prompt. Needs roles: 'Domain Admin' or 'Expert User'
3026
3038
  *
3027
3039
  * @param body Prompt -
3028
3040
  */
3029
3041
  patch(body: Prompt): Promise<Prompt>;
3030
3042
  /**
3031
- * Change one entity. Needs roles: 'Domain Admin' or 'Expert User'
3043
+ * Change one prompt. Needs roles: 'Domain Admin' or 'Expert User'
3032
3044
  *
3033
3045
  * @param body Prompt -
3034
3046
  */
@@ -3074,15 +3086,19 @@ declare class PromptsEndpoint {
3074
3086
  constructor(restClient: RestClient, parentEndpoint: string);
3075
3087
  validation(): PromptValidationEndpoint;
3076
3088
  /**
3077
- * Read all available entities.
3089
+ * Read all prompts.
3090
+ *
3091
+ * @param promptLabel PromptLabelEnum? - Provide label to only get prompts with this specific label.
3078
3092
  */
3079
- get(): Promise<PromptOverview[]>;
3093
+ get(params?: {
3094
+ promptLabel?: PromptLabelEnum;
3095
+ }): Promise<PromptOverview[]>;
3080
3096
  /**
3081
- * Delete all available entities. Needs roles: 'Domain Admin' or 'Expert User'
3097
+ * Delete all prompts. Needs roles: 'Domain Admin' or 'Expert User'
3082
3098
  */
3083
3099
  delete(): Promise<RestResponse<void>>;
3084
3100
  /**
3085
- * Create a new entity. Needs roles: 'Domain Admin' or 'Expert User'
3101
+ * Create a new prompt. Needs roles: 'Domain Admin' or 'Expert User'
3086
3102
  *
3087
3103
  * @param body Prompt? -
3088
3104
  */
@@ -3264,9 +3280,10 @@ declare class NamedentitiesEndpoint {
3264
3280
  * Can be filtered by tags or documentclassids.
3265
3281
  *
3266
3282
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3267
- * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3283
+ * @param documentclassids string? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3268
3284
  * The IDs are passed as a JSON array.
3269
3285
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3286
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3270
3287
  */
3271
3288
  get(params?: {
3272
3289
  tags?: string;
@@ -3338,7 +3355,7 @@ declare class ReferencedocumentsEndpoint {
3338
3355
  * @param updatedafter number? - Filter for documents which are updated after a given UNIX timestamp. The updatedafter filter only works when also using the parameters offset and limit.
3339
3356
  * @param updatedbefore number? - Filter for documents which are updated before a given UNIX timestamp. The updatedbefore filter only works when also using the parameters offset and limit.
3340
3357
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3341
- * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs. The IDs are passed as a comma separated list.
3358
+ * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs. The IDs are passed as a comma separated list. Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3342
3359
  * @param withoutdocumentclass boolean? - Filters the returned reference documents to include only documents that are not linked to a documentclass. The parameter is of type boolean and is set to false by default.
3343
3360
  * @param mincharacters number? - Filters the returned reference documents to include only documents that have a minimum of characters
3344
3361
  * @param metadata string? - Filter documents for part of metadata, casing is ignored.
@@ -3381,7 +3398,7 @@ declare class ReferencedocumentsEndpoint {
3381
3398
  * @param updatedafter number? - Filter for documents which are updated after a given UNIX timestamp. The updatedafter filter only works when also using the parameters offset and limit.
3382
3399
  * @param updatedbefore number? - Filter for documents which are updated before a given UNIX timestamp. The updatedbefore filter only works when also using the parameters offset and limit.
3383
3400
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3384
- * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs. The IDs are passed as a comma separated list.
3401
+ * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs. The IDs are passed as a comma separated list. Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3385
3402
  * @param withoutdocumentclass boolean? - Filters the returned reference documents to include only documents that are not linked to a documentclass. The parameter is of type boolean and is set to false by default.
3386
3403
  * @param mincharacters number? - Filters the returned reference documents to include only documents that have a minimum of characters
3387
3404
  * @param metadata string? - Filter documents for part of metadata, casing is ignored.
@@ -3434,7 +3451,7 @@ declare class ReferencedocumentsEndpoint {
3434
3451
  * @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
3435
3452
  * @param color string? - Use this parameter to specify the color for your reference document. Possible values are RED, MAGENTA, AQUA, ORANGE, GREY, or LAVENDER.
3436
3453
  * @param comment string? - Use this parameter to add a comment to your reference document.
3437
- * @param documentclassid string? - List of documentclass ID for the target. The limit here is 1 ID.
3454
+ * @param documentclassid string? - Documentclass the uploaded reference document should be linked to. Accepts a single documentclass UUID `id`.
3438
3455
  * @param addparagraphsasdocuments boolean? - Use this parameter to create individual reference documents in the library for each paragraph in your document. The parameter is of type boolean and is set to false by default.
3439
3456
  */
3440
3457
  post(data: {
@@ -3483,9 +3500,10 @@ declare class ReferencesEndpoint {
3483
3500
  * @param referencedocumentids string[]? - To filter for document IDs. The limit here is 65000 IDs.
3484
3501
  * The IDs are passed as a JSON array.
3485
3502
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3486
- * @param documentclassids string[]? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3503
+ * @param documentclassids string[]? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3487
3504
  * The IDs are passed as a JSON array.
3488
3505
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3506
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3489
3507
  * @param similaritythreshold number? - Threshold for the similarity score. semantha will not deliver results with a sentence score lower than the threshold.
3490
3508
  * In general, the higher the threshold, the more precise the results.
3491
3509
  * @param synonymousthreshold number? - Threshold for good matches.
@@ -3537,9 +3555,10 @@ declare class ReferencesEndpoint {
3537
3555
  * @param referencedocumentids string[]? - To filter for document IDs. The limit here is 65000 IDs.
3538
3556
  * The IDs are passed as a JSON array.
3539
3557
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3540
- * @param documentclassids string[]? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3558
+ * @param documentclassids string[]? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3541
3559
  * The IDs are passed as a JSON array.
3542
3560
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3561
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3543
3562
  * @param similaritythreshold number? - Threshold for the similarity score. semantha will not deliver results with a sentence score lower than the threshold.
3544
3563
  * In general, the higher the threshold, the more precise the results.
3545
3564
  * @param synonymousthreshold number? - Threshold for good matches.
@@ -3591,9 +3610,10 @@ declare class ReferencesEndpoint {
3591
3610
  * @param referencedocumentids string[]? - To filter for document IDs. The limit here is 65000 IDs.
3592
3611
  * The IDs are passed as a JSON array.
3593
3612
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3594
- * @param documentclassids string[]? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3613
+ * @param documentclassids string[]? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3595
3614
  * The IDs are passed as a JSON array.
3596
3615
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3616
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3597
3617
  * @param similaritythreshold number? - Threshold for the similarity score. semantha will not deliver results with a sentence score lower than the threshold.
3598
3618
  * In general, the higher the threshold, the more precise the results.
3599
3619
  * @param synonymousthreshold number? - Threshold for good matches.
@@ -3645,9 +3665,10 @@ declare class ReferencesEndpoint {
3645
3665
  * @param referencedocumentids string[]? - To filter for document IDs. The limit here is 65000 IDs.
3646
3666
  * The IDs are passed as a JSON array.
3647
3667
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3648
- * @param documentclassids string[]? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3668
+ * @param documentclassids string[]? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3649
3669
  * The IDs are passed as a JSON array.
3650
3670
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3671
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3651
3672
  * @param similaritythreshold number? - Threshold for the similarity score. semantha will not deliver results with a sentence score lower than the threshold.
3652
3673
  * In general, the higher the threshold, the more precise the results.
3653
3674
  * @param synonymousthreshold number? - Threshold for good matches.
@@ -5002,4 +5023,4 @@ declare class SemanthaAPI {
5002
5023
  model(): ModelEndpoint;
5003
5024
  }
5004
5025
 
5005
- export { type AnnotationCell, type AnnotationPage, type Answer, type AnswerReference, AnswersEndpoint, type Area, type Argument, type Attachment, type Attribute, type AttributeDatatypeEnum, AttributeDatatypeEnumValues, type AttributeOverview, type AttributeOverviewDatatypeEnum, AttributeOverviewDatatypeEnumValues, type BoostWord, BulkDomainsEndpoint, BulkEndpoint, BulkModelEndpoint, BulkdomainsDocumentclassesEndpoint, BulkdomainsDocumenttypesEndpoint, BulkdomainsDomainEndpoint, BulkdomainsReferencedocumentsEndpoint, BulkdomainsReferencesEndpoint, BulkmodelBoostwordsEndpoint, BulkmodelClassEndpoint, BulkmodelClassesEndpoint, BulkmodelDatapropertiesEndpoint, BulkmodelDomainEndpoint, BulkmodelDomainsEndpoint, BulkmodelInstancesEndpoint, BulkmodelMetadataEndpoint, BulkmodelNamedentitiesEndpoint, BulkmodelRulesEndpoint, BulkmodelStopwordsEndpoint, BulkmodelSynonymsEndpoint, BulkmodelclassInstancesEndpoint, type CellType, CelltypesEndpoint, type Char, type Chat, ChatEndpoint, type ChatResponse, ChatsEndpoint, ChildExtractorclassesEndpoint, type Class, type ClassBulk, type ClassBulkDatatypeEnum, ClassBulkDatatypeEnumValues, type ClassesOverview, CloneEndpoint, type ComplexProperty, type Condition, type ConditionValue, ConversionsEndpoint, type CurrentUser, CurrentuserEndpoint, type CustomField, type DataProperty, DiffEndpoint, type Difference, type DifferenceOperationEnum, DifferenceOperationEnumValues, type Distance, DocclassCustomfieldsEndpoint, DocclassDocumentclassesEndpoint, DocclassReferencedocumentsEndpoint, DocclassTagsEndpoint, type Document, type DocumentClass, type DocumentClassBulk, type DocumentClassNode, type DocumentInformation, type DocumentMetaData, type DocumentNamedEntity, type DocumentTable, type DocumentType, type DocumentTypeChange, type DocumentTypeConfig, DocumentannotationsEndpoint, DocumentclassEndpoint, DocumentclassesEndpoint, type DocumentmodeEnum, DocumentmodeEnumValues, DocumentsEndpoint, DocumenttypeEndpoint, DocumenttypesEndpoint, type Domain, DomainEndpoint, type DomainInfo, DomainsEndpoint, type Entity, type ErrorContainer, type ErrorField, type ErrorFieldCodeEnum, ErrorFieldCodeEnumValues, type Expression, type ExtractionArea, type ExtractionFile, type ExtractionReference, type Extractor, type ExtractorAttribute, type ExtractorAttributeDatatypeEnum, ExtractorAttributeDatatypeEnumValues, type ExtractorClass, type ExtractorClassOverview, type ExtractorTypeEnum, ExtractorTypeEnumValues, type Features, type Field, type FieldTypeEnum, FieldTypeEnumValues, type FileReference, type Finding, type FormatInformation, type Formatter, ImageEndpoint, ImagesEndpoint, type Info, InfoEndpoint, type Instance, type InstanceChild, type InstanceOverview, type Label, type LanguageDetection, LanguagesEndpoint, type Link, type LinkedInstance, type LinkedValue, MarkdownEndpoint, type Matcher, type MatcherTypeEnum, MatcherTypeEnumValues, MediaType, type Message, type MessageRoleEnum, MessageRoleEnumValues, type MetaInfoPage, type Metadata, type MetadataValue, type ModeEnum, ModeEnumValues, ModelAttributesEndpoint, ModelBoostwordEndpoint, ModelBoostwordsEndpoint, type ModelClass, ModelDatapropertiesEndpoint, ModelDatapropertyEndpoint, ModelDatatypesEndpoint, ModelDomainEndpoint, ModelDomainsEndpoint, ModelEndpoint, ModelExtractorclassEndpoint, ModelExtractorclassesEndpoint, ModelExtractorsEndpoint, ModelExtractortypesEndpoint, ModelFormattersEndpoint, type ModelInstance, type ModelMetadata, ModelMetadataEndpoint, ModelMetadatatypesEndpoint, ModelNamedentitiesEndpoint, ModelNamedentityEndpoint, ModelObjectpropertiesEndpoint, ModelOnemetadataEndpoint, ModelRegexEndpoint, ModelRegexesEndpoint, ModelRelationEndpoint, ModelRelationsEndpoint, ModelRuleEndpoint, ModelRulefunctionsEndpoint, ModelRulesEndpoint, ModelStopwordEndpoint, ModelStopwordsEndpoint, ModelSynonymEndpoint, ModelSynonymsEndpoint, ModelclassesEndpoint, ModelinstancesEndpoint, ModelontAttributeEndpoint, ModelontAttributesEndpoint, ModelontClassEndpoint, ModelontClassesEndpoint, ModelontInstanceEndpoint, ModelontInstancesEndpoint, ModelontclassInstancesEndpoint, type Name, type NamedEntity, NamedentitiesEndpoint, type Overview, type Page, type PageContent, type Paragraph, ParagraphEndpoint, type ParagraphUpdate, ParagraphsEndpoint, type ProcessInformation, type Prompt, PromptEndpoint, type PromptExecution, type PromptOverview, type PromptOverviewPromptLabelEnum, PromptOverviewPromptLabelEnumValues, type PromptPromptLabelEnum, PromptPromptLabelEnumValues, type PromptResponse, PromptValidationEndpoint, type PromptValidationRequest, type PromptValidationResponse, type PromptValidationResult, type PromptValidationTemplate, PromptsEndpoint, type Range, type Rect, type Reference, type ReferenceDocumentsResponseContainer, ReferencedocumentEndpoint, ReferencedocumentsEndpoint, ReferencedocumentsStreamEndpoint, ReferencesEndpoint, type Regex, type Relation, type RelationCondition, type ResponseMetaInfo, RestClient, RestResponse, RolesEndpoint, type Row, type Rule, type RuleFunction, type RuleFunctionTypeEnum, RuleFunctionTypeEnumValues, type RuleOverview, SemanthaAPI, type SemanticModel, type Sentence, SentenceEndpoint, SentencesEndpoint, type Settings, type SettingsDefaultSimilarityModeEnum, SettingsDefaultSimilarityModeEnumValues, SettingsEndpoint, type SettingsExtractionStrategyEnum, SettingsExtractionStrategyEnumValues, type SettingsTaggingStrategyEnum, SettingsTaggingStrategyEnumValues, type SimpleProperty, type Statistic, StatisticEndpoint, type StopWord, type Summarization, SummarizationsEndpoint, type SummarylengthEnum, SummarylengthEnumValues, type Synonym, type TableCell, type TableInstance, type TagDocs, TagEndpoint, TagReferencedocumentsEndpoint, TagsEndpoint, type TextType, TexttypesEndpoint, type Translation, type TranslationResponse, TranslationsEndpoint, TreeEndpoint, type TypeEnum, TypeEnumValues, ValidationEndpoint, type Version, isAttributeDatatypeEnumValue, isAttributeOverviewDatatypeEnumValue, isClassBulkDatatypeEnumValue, isDifferenceOperationEnumValue, isDocumentmodeEnumValue, isErrorFieldCodeEnumValue, isExtractorAttributeDatatypeEnumValue, isExtractorTypeEnumValue, isFieldTypeEnumValue, isMatcherTypeEnumValue, isMessageRoleEnumValue, isModeEnumValue, isPromptOverviewPromptLabelEnumValue, isPromptPromptLabelEnumValue, isRuleFunctionTypeEnumValue, isSettingsDefaultSimilarityModeEnumValue, isSettingsExtractionStrategyEnumValue, isSettingsTaggingStrategyEnumValue, isSummarylengthEnumValue, isTypeEnumValue };
5026
+ export { type AnnotationCell, type AnnotationPage, type Answer, type AnswerReference, AnswersEndpoint, type Area, type Argument, type Attachment, type Attribute, type AttributeDatatypeEnum, AttributeDatatypeEnumValues, type AttributeOverview, type AttributeOverviewDatatypeEnum, AttributeOverviewDatatypeEnumValues, type BoostWord, BulkDomainsEndpoint, BulkEndpoint, BulkModelEndpoint, BulkdomainsDocumentclassesEndpoint, BulkdomainsDocumenttypesEndpoint, BulkdomainsDomainEndpoint, BulkdomainsReferencedocumentsEndpoint, BulkdomainsReferencesEndpoint, BulkmodelBoostwordsEndpoint, BulkmodelClassEndpoint, BulkmodelClassesEndpoint, BulkmodelDatapropertiesEndpoint, BulkmodelDomainEndpoint, BulkmodelDomainsEndpoint, BulkmodelInstancesEndpoint, BulkmodelMetadataEndpoint, BulkmodelNamedentitiesEndpoint, BulkmodelRulesEndpoint, BulkmodelStopwordsEndpoint, BulkmodelSynonymsEndpoint, BulkmodelclassInstancesEndpoint, type CellType, CelltypesEndpoint, type Char, type Chat, ChatEndpoint, type ChatResponse, ChatsEndpoint, ChildExtractorclassesEndpoint, type Class, type ClassBulk, type ClassBulkDatatypeEnum, ClassBulkDatatypeEnumValues, type ClassesOverview, CloneEndpoint, type ComplexProperty, type Condition, type ConditionValue, ConversionsEndpoint, type CurrentUser, CurrentuserEndpoint, type CustomField, type DataProperty, DiffEndpoint, type Difference, type DifferenceOperationEnum, DifferenceOperationEnumValues, type Distance, DocclassCustomfieldsEndpoint, DocclassDocumentclassesEndpoint, DocclassReferencedocumentsEndpoint, DocclassTagsEndpoint, type Document, type DocumentClass, type DocumentClassBulk, type DocumentClassNode, type DocumentInformation, type DocumentMetaData, type DocumentNamedEntity, type DocumentTable, type DocumentType, type DocumentTypeChange, type DocumentTypeConfig, DocumentannotationsEndpoint, DocumentclassEndpoint, DocumentclassesEndpoint, type DocumentmodeEnum, DocumentmodeEnumValues, DocumentsEndpoint, DocumenttypeEndpoint, DocumenttypesEndpoint, type Domain, DomainEndpoint, type DomainInfo, DomainsEndpoint, type Entity, type ErrorContainer, type ErrorField, type ErrorFieldCodeEnum, ErrorFieldCodeEnumValues, type Expression, type ExtractionArea, type ExtractionFile, type ExtractionReference, type Extractor, type ExtractorAttribute, type ExtractorAttributeDatatypeEnum, ExtractorAttributeDatatypeEnumValues, type ExtractorClass, type ExtractorClassOverview, type ExtractorTypeEnum, ExtractorTypeEnumValues, type Features, type Field, type FieldTypeEnum, FieldTypeEnumValues, type FileReference, type Finding, type FormatInformation, type Formatter, ImageEndpoint, ImagesEndpoint, type Info, InfoEndpoint, type Instance, type InstanceChild, type InstanceOverview, type Label, type LanguageDetection, LanguagesEndpoint, type Link, type LinkedInstance, type LinkedValue, MarkdownEndpoint, type Matcher, type MatcherTypeEnum, MatcherTypeEnumValues, MediaType, type Message, type MessageRoleEnum, MessageRoleEnumValues, type MetaInfoPage, type Metadata, type MetadataValue, type ModeEnum, ModeEnumValues, ModelAttributesEndpoint, ModelBoostwordEndpoint, ModelBoostwordsEndpoint, type ModelClass, ModelDatapropertiesEndpoint, ModelDatapropertyEndpoint, ModelDatatypesEndpoint, ModelDomainEndpoint, ModelDomainsEndpoint, ModelEndpoint, ModelExtractorclassEndpoint, ModelExtractorclassesEndpoint, ModelExtractorsEndpoint, ModelExtractortypesEndpoint, ModelFormattersEndpoint, type ModelInstance, type ModelMetadata, ModelMetadataEndpoint, ModelMetadatatypesEndpoint, ModelNamedentitiesEndpoint, ModelNamedentityEndpoint, ModelObjectpropertiesEndpoint, ModelOnemetadataEndpoint, ModelRegexEndpoint, ModelRegexesEndpoint, ModelRelationEndpoint, ModelRelationsEndpoint, ModelRuleEndpoint, ModelRulefunctionsEndpoint, ModelRulesEndpoint, ModelStopwordEndpoint, ModelStopwordsEndpoint, ModelSynonymEndpoint, ModelSynonymsEndpoint, ModelclassesEndpoint, ModelinstancesEndpoint, ModelontAttributeEndpoint, ModelontAttributesEndpoint, ModelontClassEndpoint, ModelontClassesEndpoint, ModelontInstanceEndpoint, ModelontInstancesEndpoint, ModelontclassInstancesEndpoint, type Name, type NamedEntity, NamedentitiesEndpoint, type Overview, type Page, type PageContent, type Paragraph, ParagraphEndpoint, type ParagraphUpdate, ParagraphsEndpoint, type ProcessInformation, type Prompt, PromptEndpoint, type PromptExecution, type PromptLabelEnum, PromptLabelEnumValues, type PromptOverview, type PromptOverviewPromptLabelEnum, PromptOverviewPromptLabelEnumValues, type PromptPromptLabelEnum, PromptPromptLabelEnumValues, type PromptResponse, PromptValidationEndpoint, type PromptValidationRequest, type PromptValidationResponse, type PromptValidationResult, type PromptValidationTemplate, PromptsEndpoint, type Range, type Rect, type Reference, type ReferenceDocumentsResponseContainer, ReferencedocumentEndpoint, ReferencedocumentsEndpoint, ReferencedocumentsStreamEndpoint, ReferencesEndpoint, type Regex, type Relation, type RelationCondition, type ResponseMetaInfo, RestClient, RestResponse, RolesEndpoint, type Row, type Rule, type RuleFunction, type RuleFunctionTypeEnum, RuleFunctionTypeEnumValues, type RuleOverview, SemanthaAPI, type SemanticModel, type Sentence, SentenceEndpoint, SentencesEndpoint, type Settings, type SettingsDefaultSimilarityModeEnum, SettingsDefaultSimilarityModeEnumValues, SettingsEndpoint, type SettingsExtractionStrategyEnum, SettingsExtractionStrategyEnumValues, type SettingsTaggingStrategyEnum, SettingsTaggingStrategyEnumValues, type SimpleProperty, type Statistic, StatisticEndpoint, type StopWord, type Summarization, SummarizationsEndpoint, type SummarylengthEnum, SummarylengthEnumValues, type Synonym, type TableCell, type TableInstance, type TagDocs, TagEndpoint, TagReferencedocumentsEndpoint, TagsEndpoint, type TextType, TexttypesEndpoint, type Translation, type TranslationResponse, TranslationsEndpoint, TreeEndpoint, type TypeEnum, TypeEnumValues, ValidationEndpoint, type Version, isAttributeDatatypeEnumValue, isAttributeOverviewDatatypeEnumValue, isClassBulkDatatypeEnumValue, isDifferenceOperationEnumValue, isDocumentmodeEnumValue, isErrorFieldCodeEnumValue, isExtractorAttributeDatatypeEnumValue, isExtractorTypeEnumValue, isFieldTypeEnumValue, isMatcherTypeEnumValue, isMessageRoleEnumValue, isModeEnumValue, isPromptLabelEnumValue, isPromptOverviewPromptLabelEnumValue, isPromptPromptLabelEnumValue, isRuleFunctionTypeEnumValue, isSettingsDefaultSimilarityModeEnumValue, isSettingsExtractionStrategyEnumValue, isSettingsTaggingStrategyEnumValue, isSummarylengthEnumValue, isTypeEnumValue };
package/dist/index.d.ts CHANGED
@@ -679,6 +679,7 @@ interface DocumentClassNode {
679
679
  name: string;
680
680
  id?: string;
681
681
  parentId?: string;
682
+ shortId?: string;
682
683
  documentsCount?: number;
683
684
  customFields?: CustomField[];
684
685
  }
@@ -692,6 +693,7 @@ interface DocumentClass {
692
693
  name: string;
693
694
  id?: string;
694
695
  parentId?: string;
696
+ shortId?: string;
695
697
  documentsCount?: number;
696
698
  subClasses?: DocumentClassNode[];
697
699
  customFields?: CustomField[];
@@ -714,6 +716,7 @@ interface DocumentClassBulk {
714
716
  name: string;
715
717
  id?: string;
716
718
  documentIds?: string[];
719
+ shortId?: string;
717
720
  subClasses?: DocumentClassBulk[];
718
721
  tags?: string[];
719
722
  color?: string;
@@ -1344,6 +1347,15 @@ interface PromptExecution {
1344
1347
  arguments?: string[];
1345
1348
  }
1346
1349
 
1350
+ /**
1351
+ * @author semantha
1352
+ *
1353
+ * This is a generated file do not change manually!
1354
+ */
1355
+ declare const PromptLabelEnumValues: readonly ["COMPARE", "REQUIREMENTS", "SEARCH", "LIBRARY"];
1356
+ type PromptLabelEnum = (typeof PromptLabelEnumValues)[number];
1357
+ declare function isPromptLabelEnumValue(value: any): value is PromptLabelEnum;
1358
+
1347
1359
  /**
1348
1360
  * @author semantha
1349
1361
  *
@@ -2171,7 +2183,7 @@ declare class BulkdomainsReferencedocumentsEndpoint {
2171
2183
  * @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
2172
2184
  * @param color string? - Use this parameter to specify the color for your reference document. Possible values are RED, MAGENTA, AQUA, ORANGE, GREY, or LAVENDER.
2173
2185
  * @param comment string? - Use this parameter to add a comment to your reference document.
2174
- * @param documentclassid string? - List of documentclass ID for the target. The limit here is 1 ID.
2186
+ * @param documentclassid string? - Documentclass the uploaded reference document should be linked to. Accepts a single documentclass UUID `id`.
2175
2187
  * @param addparagraphsasdocuments boolean? - Use this parameter to create individual reference documents in the library for each paragraph in your document. The parameter is of type boolean and is set to false by default.
2176
2188
  */
2177
2189
  post(data: {
@@ -3014,21 +3026,21 @@ declare class PromptEndpoint {
3014
3026
  private readonly ENDPOINT;
3015
3027
  constructor(restClient: RestClient, parentEndpoint: string, id: string);
3016
3028
  /**
3017
- * Read one entity.
3029
+ * Read one prompt.
3018
3030
  */
3019
3031
  get(): Promise<Prompt>;
3020
3032
  /**
3021
- * Delete one entity. Needs roles: 'Domain Admin' or 'Expert User'
3033
+ * Delete one prompt. Needs roles: 'Domain Admin' or 'Expert User'
3022
3034
  */
3023
3035
  delete(): Promise<RestResponse<void>>;
3024
3036
  /**
3025
- * Change one entity. Needs roles: 'Domain Admin' or 'Expert User'
3037
+ * Change one prompt. Needs roles: 'Domain Admin' or 'Expert User'
3026
3038
  *
3027
3039
  * @param body Prompt -
3028
3040
  */
3029
3041
  patch(body: Prompt): Promise<Prompt>;
3030
3042
  /**
3031
- * Change one entity. Needs roles: 'Domain Admin' or 'Expert User'
3043
+ * Change one prompt. Needs roles: 'Domain Admin' or 'Expert User'
3032
3044
  *
3033
3045
  * @param body Prompt -
3034
3046
  */
@@ -3074,15 +3086,19 @@ declare class PromptsEndpoint {
3074
3086
  constructor(restClient: RestClient, parentEndpoint: string);
3075
3087
  validation(): PromptValidationEndpoint;
3076
3088
  /**
3077
- * Read all available entities.
3089
+ * Read all prompts.
3090
+ *
3091
+ * @param promptLabel PromptLabelEnum? - Provide label to only get prompts with this specific label.
3078
3092
  */
3079
- get(): Promise<PromptOverview[]>;
3093
+ get(params?: {
3094
+ promptLabel?: PromptLabelEnum;
3095
+ }): Promise<PromptOverview[]>;
3080
3096
  /**
3081
- * Delete all available entities. Needs roles: 'Domain Admin' or 'Expert User'
3097
+ * Delete all prompts. Needs roles: 'Domain Admin' or 'Expert User'
3082
3098
  */
3083
3099
  delete(): Promise<RestResponse<void>>;
3084
3100
  /**
3085
- * Create a new entity. Needs roles: 'Domain Admin' or 'Expert User'
3101
+ * Create a new prompt. Needs roles: 'Domain Admin' or 'Expert User'
3086
3102
  *
3087
3103
  * @param body Prompt? -
3088
3104
  */
@@ -3264,9 +3280,10 @@ declare class NamedentitiesEndpoint {
3264
3280
  * Can be filtered by tags or documentclassids.
3265
3281
  *
3266
3282
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3267
- * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3283
+ * @param documentclassids string? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3268
3284
  * The IDs are passed as a JSON array.
3269
3285
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3286
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3270
3287
  */
3271
3288
  get(params?: {
3272
3289
  tags?: string;
@@ -3338,7 +3355,7 @@ declare class ReferencedocumentsEndpoint {
3338
3355
  * @param updatedafter number? - Filter for documents which are updated after a given UNIX timestamp. The updatedafter filter only works when also using the parameters offset and limit.
3339
3356
  * @param updatedbefore number? - Filter for documents which are updated before a given UNIX timestamp. The updatedbefore filter only works when also using the parameters offset and limit.
3340
3357
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3341
- * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs. The IDs are passed as a comma separated list.
3358
+ * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs. The IDs are passed as a comma separated list. Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3342
3359
  * @param withoutdocumentclass boolean? - Filters the returned reference documents to include only documents that are not linked to a documentclass. The parameter is of type boolean and is set to false by default.
3343
3360
  * @param mincharacters number? - Filters the returned reference documents to include only documents that have a minimum of characters
3344
3361
  * @param metadata string? - Filter documents for part of metadata, casing is ignored.
@@ -3381,7 +3398,7 @@ declare class ReferencedocumentsEndpoint {
3381
3398
  * @param updatedafter number? - Filter for documents which are updated after a given UNIX timestamp. The updatedafter filter only works when also using the parameters offset and limit.
3382
3399
  * @param updatedbefore number? - Filter for documents which are updated before a given UNIX timestamp. The updatedbefore filter only works when also using the parameters offset and limit.
3383
3400
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3384
- * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs. The IDs are passed as a comma separated list.
3401
+ * @param documentclassids string? - List of documentclass IDs for the target. The limit here is 1000 IDs. The IDs are passed as a comma separated list. Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3385
3402
  * @param withoutdocumentclass boolean? - Filters the returned reference documents to include only documents that are not linked to a documentclass. The parameter is of type boolean and is set to false by default.
3386
3403
  * @param mincharacters number? - Filters the returned reference documents to include only documents that have a minimum of characters
3387
3404
  * @param metadata string? - Filter documents for part of metadata, casing is ignored.
@@ -3434,7 +3451,7 @@ declare class ReferencedocumentsEndpoint {
3434
3451
  * @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
3435
3452
  * @param color string? - Use this parameter to specify the color for your reference document. Possible values are RED, MAGENTA, AQUA, ORANGE, GREY, or LAVENDER.
3436
3453
  * @param comment string? - Use this parameter to add a comment to your reference document.
3437
- * @param documentclassid string? - List of documentclass ID for the target. The limit here is 1 ID.
3454
+ * @param documentclassid string? - Documentclass the uploaded reference document should be linked to. Accepts a single documentclass UUID `id`.
3438
3455
  * @param addparagraphsasdocuments boolean? - Use this parameter to create individual reference documents in the library for each paragraph in your document. The parameter is of type boolean and is set to false by default.
3439
3456
  */
3440
3457
  post(data: {
@@ -3483,9 +3500,10 @@ declare class ReferencesEndpoint {
3483
3500
  * @param referencedocumentids string[]? - To filter for document IDs. The limit here is 65000 IDs.
3484
3501
  * The IDs are passed as a JSON array.
3485
3502
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3486
- * @param documentclassids string[]? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3503
+ * @param documentclassids string[]? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3487
3504
  * The IDs are passed as a JSON array.
3488
3505
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3506
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3489
3507
  * @param similaritythreshold number? - Threshold for the similarity score. semantha will not deliver results with a sentence score lower than the threshold.
3490
3508
  * In general, the higher the threshold, the more precise the results.
3491
3509
  * @param synonymousthreshold number? - Threshold for good matches.
@@ -3537,9 +3555,10 @@ declare class ReferencesEndpoint {
3537
3555
  * @param referencedocumentids string[]? - To filter for document IDs. The limit here is 65000 IDs.
3538
3556
  * The IDs are passed as a JSON array.
3539
3557
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3540
- * @param documentclassids string[]? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3558
+ * @param documentclassids string[]? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3541
3559
  * The IDs are passed as a JSON array.
3542
3560
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3561
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3543
3562
  * @param similaritythreshold number? - Threshold for the similarity score. semantha will not deliver results with a sentence score lower than the threshold.
3544
3563
  * In general, the higher the threshold, the more precise the results.
3545
3564
  * @param synonymousthreshold number? - Threshold for good matches.
@@ -3591,9 +3610,10 @@ declare class ReferencesEndpoint {
3591
3610
  * @param referencedocumentids string[]? - To filter for document IDs. The limit here is 65000 IDs.
3592
3611
  * The IDs are passed as a JSON array.
3593
3612
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3594
- * @param documentclassids string[]? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3613
+ * @param documentclassids string[]? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3595
3614
  * The IDs are passed as a JSON array.
3596
3615
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3616
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3597
3617
  * @param similaritythreshold number? - Threshold for the similarity score. semantha will not deliver results with a sentence score lower than the threshold.
3598
3618
  * In general, the higher the threshold, the more precise the results.
3599
3619
  * @param synonymousthreshold number? - Threshold for good matches.
@@ -3645,9 +3665,10 @@ declare class ReferencesEndpoint {
3645
3665
  * @param referencedocumentids string[]? - To filter for document IDs. The limit here is 65000 IDs.
3646
3666
  * The IDs are passed as a JSON array.
3647
3667
  * @param tags string? - List of tags to filter the reference library. You can combine the tags using a comma (OR) and using a plus sign (AND).
3648
- * @param documentclassids string[]? - List of documentclass IDs for the target. The limit here is 1000 IDs.
3668
+ * @param documentclassids string[]? - List of documentclass IDs to filter by. The limit here is 1000 IDs.
3649
3669
  * The IDs are passed as a JSON array.
3650
3670
  * This does not apply on the GET referencedocuments call. Here the ids are separated with a comma.
3671
+ * Each value can be either the documentclass UUID `id` or its numeric `shortId`; numeric values are resolved server-side to the matching documentclass UUID. UUIDs and shortIds may be mixed in the same request.
3651
3672
  * @param similaritythreshold number? - Threshold for the similarity score. semantha will not deliver results with a sentence score lower than the threshold.
3652
3673
  * In general, the higher the threshold, the more precise the results.
3653
3674
  * @param synonymousthreshold number? - Threshold for good matches.
@@ -5002,4 +5023,4 @@ declare class SemanthaAPI {
5002
5023
  model(): ModelEndpoint;
5003
5024
  }
5004
5025
 
5005
- export { type AnnotationCell, type AnnotationPage, type Answer, type AnswerReference, AnswersEndpoint, type Area, type Argument, type Attachment, type Attribute, type AttributeDatatypeEnum, AttributeDatatypeEnumValues, type AttributeOverview, type AttributeOverviewDatatypeEnum, AttributeOverviewDatatypeEnumValues, type BoostWord, BulkDomainsEndpoint, BulkEndpoint, BulkModelEndpoint, BulkdomainsDocumentclassesEndpoint, BulkdomainsDocumenttypesEndpoint, BulkdomainsDomainEndpoint, BulkdomainsReferencedocumentsEndpoint, BulkdomainsReferencesEndpoint, BulkmodelBoostwordsEndpoint, BulkmodelClassEndpoint, BulkmodelClassesEndpoint, BulkmodelDatapropertiesEndpoint, BulkmodelDomainEndpoint, BulkmodelDomainsEndpoint, BulkmodelInstancesEndpoint, BulkmodelMetadataEndpoint, BulkmodelNamedentitiesEndpoint, BulkmodelRulesEndpoint, BulkmodelStopwordsEndpoint, BulkmodelSynonymsEndpoint, BulkmodelclassInstancesEndpoint, type CellType, CelltypesEndpoint, type Char, type Chat, ChatEndpoint, type ChatResponse, ChatsEndpoint, ChildExtractorclassesEndpoint, type Class, type ClassBulk, type ClassBulkDatatypeEnum, ClassBulkDatatypeEnumValues, type ClassesOverview, CloneEndpoint, type ComplexProperty, type Condition, type ConditionValue, ConversionsEndpoint, type CurrentUser, CurrentuserEndpoint, type CustomField, type DataProperty, DiffEndpoint, type Difference, type DifferenceOperationEnum, DifferenceOperationEnumValues, type Distance, DocclassCustomfieldsEndpoint, DocclassDocumentclassesEndpoint, DocclassReferencedocumentsEndpoint, DocclassTagsEndpoint, type Document, type DocumentClass, type DocumentClassBulk, type DocumentClassNode, type DocumentInformation, type DocumentMetaData, type DocumentNamedEntity, type DocumentTable, type DocumentType, type DocumentTypeChange, type DocumentTypeConfig, DocumentannotationsEndpoint, DocumentclassEndpoint, DocumentclassesEndpoint, type DocumentmodeEnum, DocumentmodeEnumValues, DocumentsEndpoint, DocumenttypeEndpoint, DocumenttypesEndpoint, type Domain, DomainEndpoint, type DomainInfo, DomainsEndpoint, type Entity, type ErrorContainer, type ErrorField, type ErrorFieldCodeEnum, ErrorFieldCodeEnumValues, type Expression, type ExtractionArea, type ExtractionFile, type ExtractionReference, type Extractor, type ExtractorAttribute, type ExtractorAttributeDatatypeEnum, ExtractorAttributeDatatypeEnumValues, type ExtractorClass, type ExtractorClassOverview, type ExtractorTypeEnum, ExtractorTypeEnumValues, type Features, type Field, type FieldTypeEnum, FieldTypeEnumValues, type FileReference, type Finding, type FormatInformation, type Formatter, ImageEndpoint, ImagesEndpoint, type Info, InfoEndpoint, type Instance, type InstanceChild, type InstanceOverview, type Label, type LanguageDetection, LanguagesEndpoint, type Link, type LinkedInstance, type LinkedValue, MarkdownEndpoint, type Matcher, type MatcherTypeEnum, MatcherTypeEnumValues, MediaType, type Message, type MessageRoleEnum, MessageRoleEnumValues, type MetaInfoPage, type Metadata, type MetadataValue, type ModeEnum, ModeEnumValues, ModelAttributesEndpoint, ModelBoostwordEndpoint, ModelBoostwordsEndpoint, type ModelClass, ModelDatapropertiesEndpoint, ModelDatapropertyEndpoint, ModelDatatypesEndpoint, ModelDomainEndpoint, ModelDomainsEndpoint, ModelEndpoint, ModelExtractorclassEndpoint, ModelExtractorclassesEndpoint, ModelExtractorsEndpoint, ModelExtractortypesEndpoint, ModelFormattersEndpoint, type ModelInstance, type ModelMetadata, ModelMetadataEndpoint, ModelMetadatatypesEndpoint, ModelNamedentitiesEndpoint, ModelNamedentityEndpoint, ModelObjectpropertiesEndpoint, ModelOnemetadataEndpoint, ModelRegexEndpoint, ModelRegexesEndpoint, ModelRelationEndpoint, ModelRelationsEndpoint, ModelRuleEndpoint, ModelRulefunctionsEndpoint, ModelRulesEndpoint, ModelStopwordEndpoint, ModelStopwordsEndpoint, ModelSynonymEndpoint, ModelSynonymsEndpoint, ModelclassesEndpoint, ModelinstancesEndpoint, ModelontAttributeEndpoint, ModelontAttributesEndpoint, ModelontClassEndpoint, ModelontClassesEndpoint, ModelontInstanceEndpoint, ModelontInstancesEndpoint, ModelontclassInstancesEndpoint, type Name, type NamedEntity, NamedentitiesEndpoint, type Overview, type Page, type PageContent, type Paragraph, ParagraphEndpoint, type ParagraphUpdate, ParagraphsEndpoint, type ProcessInformation, type Prompt, PromptEndpoint, type PromptExecution, type PromptOverview, type PromptOverviewPromptLabelEnum, PromptOverviewPromptLabelEnumValues, type PromptPromptLabelEnum, PromptPromptLabelEnumValues, type PromptResponse, PromptValidationEndpoint, type PromptValidationRequest, type PromptValidationResponse, type PromptValidationResult, type PromptValidationTemplate, PromptsEndpoint, type Range, type Rect, type Reference, type ReferenceDocumentsResponseContainer, ReferencedocumentEndpoint, ReferencedocumentsEndpoint, ReferencedocumentsStreamEndpoint, ReferencesEndpoint, type Regex, type Relation, type RelationCondition, type ResponseMetaInfo, RestClient, RestResponse, RolesEndpoint, type Row, type Rule, type RuleFunction, type RuleFunctionTypeEnum, RuleFunctionTypeEnumValues, type RuleOverview, SemanthaAPI, type SemanticModel, type Sentence, SentenceEndpoint, SentencesEndpoint, type Settings, type SettingsDefaultSimilarityModeEnum, SettingsDefaultSimilarityModeEnumValues, SettingsEndpoint, type SettingsExtractionStrategyEnum, SettingsExtractionStrategyEnumValues, type SettingsTaggingStrategyEnum, SettingsTaggingStrategyEnumValues, type SimpleProperty, type Statistic, StatisticEndpoint, type StopWord, type Summarization, SummarizationsEndpoint, type SummarylengthEnum, SummarylengthEnumValues, type Synonym, type TableCell, type TableInstance, type TagDocs, TagEndpoint, TagReferencedocumentsEndpoint, TagsEndpoint, type TextType, TexttypesEndpoint, type Translation, type TranslationResponse, TranslationsEndpoint, TreeEndpoint, type TypeEnum, TypeEnumValues, ValidationEndpoint, type Version, isAttributeDatatypeEnumValue, isAttributeOverviewDatatypeEnumValue, isClassBulkDatatypeEnumValue, isDifferenceOperationEnumValue, isDocumentmodeEnumValue, isErrorFieldCodeEnumValue, isExtractorAttributeDatatypeEnumValue, isExtractorTypeEnumValue, isFieldTypeEnumValue, isMatcherTypeEnumValue, isMessageRoleEnumValue, isModeEnumValue, isPromptOverviewPromptLabelEnumValue, isPromptPromptLabelEnumValue, isRuleFunctionTypeEnumValue, isSettingsDefaultSimilarityModeEnumValue, isSettingsExtractionStrategyEnumValue, isSettingsTaggingStrategyEnumValue, isSummarylengthEnumValue, isTypeEnumValue };
5026
+ export { type AnnotationCell, type AnnotationPage, type Answer, type AnswerReference, AnswersEndpoint, type Area, type Argument, type Attachment, type Attribute, type AttributeDatatypeEnum, AttributeDatatypeEnumValues, type AttributeOverview, type AttributeOverviewDatatypeEnum, AttributeOverviewDatatypeEnumValues, type BoostWord, BulkDomainsEndpoint, BulkEndpoint, BulkModelEndpoint, BulkdomainsDocumentclassesEndpoint, BulkdomainsDocumenttypesEndpoint, BulkdomainsDomainEndpoint, BulkdomainsReferencedocumentsEndpoint, BulkdomainsReferencesEndpoint, BulkmodelBoostwordsEndpoint, BulkmodelClassEndpoint, BulkmodelClassesEndpoint, BulkmodelDatapropertiesEndpoint, BulkmodelDomainEndpoint, BulkmodelDomainsEndpoint, BulkmodelInstancesEndpoint, BulkmodelMetadataEndpoint, BulkmodelNamedentitiesEndpoint, BulkmodelRulesEndpoint, BulkmodelStopwordsEndpoint, BulkmodelSynonymsEndpoint, BulkmodelclassInstancesEndpoint, type CellType, CelltypesEndpoint, type Char, type Chat, ChatEndpoint, type ChatResponse, ChatsEndpoint, ChildExtractorclassesEndpoint, type Class, type ClassBulk, type ClassBulkDatatypeEnum, ClassBulkDatatypeEnumValues, type ClassesOverview, CloneEndpoint, type ComplexProperty, type Condition, type ConditionValue, ConversionsEndpoint, type CurrentUser, CurrentuserEndpoint, type CustomField, type DataProperty, DiffEndpoint, type Difference, type DifferenceOperationEnum, DifferenceOperationEnumValues, type Distance, DocclassCustomfieldsEndpoint, DocclassDocumentclassesEndpoint, DocclassReferencedocumentsEndpoint, DocclassTagsEndpoint, type Document, type DocumentClass, type DocumentClassBulk, type DocumentClassNode, type DocumentInformation, type DocumentMetaData, type DocumentNamedEntity, type DocumentTable, type DocumentType, type DocumentTypeChange, type DocumentTypeConfig, DocumentannotationsEndpoint, DocumentclassEndpoint, DocumentclassesEndpoint, type DocumentmodeEnum, DocumentmodeEnumValues, DocumentsEndpoint, DocumenttypeEndpoint, DocumenttypesEndpoint, type Domain, DomainEndpoint, type DomainInfo, DomainsEndpoint, type Entity, type ErrorContainer, type ErrorField, type ErrorFieldCodeEnum, ErrorFieldCodeEnumValues, type Expression, type ExtractionArea, type ExtractionFile, type ExtractionReference, type Extractor, type ExtractorAttribute, type ExtractorAttributeDatatypeEnum, ExtractorAttributeDatatypeEnumValues, type ExtractorClass, type ExtractorClassOverview, type ExtractorTypeEnum, ExtractorTypeEnumValues, type Features, type Field, type FieldTypeEnum, FieldTypeEnumValues, type FileReference, type Finding, type FormatInformation, type Formatter, ImageEndpoint, ImagesEndpoint, type Info, InfoEndpoint, type Instance, type InstanceChild, type InstanceOverview, type Label, type LanguageDetection, LanguagesEndpoint, type Link, type LinkedInstance, type LinkedValue, MarkdownEndpoint, type Matcher, type MatcherTypeEnum, MatcherTypeEnumValues, MediaType, type Message, type MessageRoleEnum, MessageRoleEnumValues, type MetaInfoPage, type Metadata, type MetadataValue, type ModeEnum, ModeEnumValues, ModelAttributesEndpoint, ModelBoostwordEndpoint, ModelBoostwordsEndpoint, type ModelClass, ModelDatapropertiesEndpoint, ModelDatapropertyEndpoint, ModelDatatypesEndpoint, ModelDomainEndpoint, ModelDomainsEndpoint, ModelEndpoint, ModelExtractorclassEndpoint, ModelExtractorclassesEndpoint, ModelExtractorsEndpoint, ModelExtractortypesEndpoint, ModelFormattersEndpoint, type ModelInstance, type ModelMetadata, ModelMetadataEndpoint, ModelMetadatatypesEndpoint, ModelNamedentitiesEndpoint, ModelNamedentityEndpoint, ModelObjectpropertiesEndpoint, ModelOnemetadataEndpoint, ModelRegexEndpoint, ModelRegexesEndpoint, ModelRelationEndpoint, ModelRelationsEndpoint, ModelRuleEndpoint, ModelRulefunctionsEndpoint, ModelRulesEndpoint, ModelStopwordEndpoint, ModelStopwordsEndpoint, ModelSynonymEndpoint, ModelSynonymsEndpoint, ModelclassesEndpoint, ModelinstancesEndpoint, ModelontAttributeEndpoint, ModelontAttributesEndpoint, ModelontClassEndpoint, ModelontClassesEndpoint, ModelontInstanceEndpoint, ModelontInstancesEndpoint, ModelontclassInstancesEndpoint, type Name, type NamedEntity, NamedentitiesEndpoint, type Overview, type Page, type PageContent, type Paragraph, ParagraphEndpoint, type ParagraphUpdate, ParagraphsEndpoint, type ProcessInformation, type Prompt, PromptEndpoint, type PromptExecution, type PromptLabelEnum, PromptLabelEnumValues, type PromptOverview, type PromptOverviewPromptLabelEnum, PromptOverviewPromptLabelEnumValues, type PromptPromptLabelEnum, PromptPromptLabelEnumValues, type PromptResponse, PromptValidationEndpoint, type PromptValidationRequest, type PromptValidationResponse, type PromptValidationResult, type PromptValidationTemplate, PromptsEndpoint, type Range, type Rect, type Reference, type ReferenceDocumentsResponseContainer, ReferencedocumentEndpoint, ReferencedocumentsEndpoint, ReferencedocumentsStreamEndpoint, ReferencesEndpoint, type Regex, type Relation, type RelationCondition, type ResponseMetaInfo, RestClient, RestResponse, RolesEndpoint, type Row, type Rule, type RuleFunction, type RuleFunctionTypeEnum, RuleFunctionTypeEnumValues, type RuleOverview, SemanthaAPI, type SemanticModel, type Sentence, SentenceEndpoint, SentencesEndpoint, type Settings, type SettingsDefaultSimilarityModeEnum, SettingsDefaultSimilarityModeEnumValues, SettingsEndpoint, type SettingsExtractionStrategyEnum, SettingsExtractionStrategyEnumValues, type SettingsTaggingStrategyEnum, SettingsTaggingStrategyEnumValues, type SimpleProperty, type Statistic, StatisticEndpoint, type StopWord, type Summarization, SummarizationsEndpoint, type SummarylengthEnum, SummarylengthEnumValues, type Synonym, type TableCell, type TableInstance, type TagDocs, TagEndpoint, TagReferencedocumentsEndpoint, TagsEndpoint, type TextType, TexttypesEndpoint, type Translation, type TranslationResponse, TranslationsEndpoint, TreeEndpoint, type TypeEnum, TypeEnumValues, ValidationEndpoint, type Version, isAttributeDatatypeEnumValue, isAttributeOverviewDatatypeEnumValue, isClassBulkDatatypeEnumValue, isDifferenceOperationEnumValue, isDocumentmodeEnumValue, isErrorFieldCodeEnumValue, isExtractorAttributeDatatypeEnumValue, isExtractorTypeEnumValue, isFieldTypeEnumValue, isMatcherTypeEnumValue, isMessageRoleEnumValue, isModeEnumValue, isPromptLabelEnumValue, isPromptOverviewPromptLabelEnumValue, isPromptPromptLabelEnumValue, isRuleFunctionTypeEnumValue, isSettingsDefaultSimilarityModeEnumValue, isSettingsExtractionStrategyEnumValue, isSettingsTaggingStrategyEnumValue, isSummarylengthEnumValue, isTypeEnumValue };