@uipath/uipath-typescript 1.3.4 → 1.3.6

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.
Files changed (38) hide show
  1. package/README.md +1 -1
  2. package/dist/assets/index.cjs +1 -1
  3. package/dist/assets/index.mjs +1 -1
  4. package/dist/attachments/index.cjs +1 -1
  5. package/dist/attachments/index.mjs +1 -1
  6. package/dist/buckets/index.cjs +1 -1
  7. package/dist/buckets/index.mjs +1 -1
  8. package/dist/cases/index.cjs +1 -1
  9. package/dist/cases/index.mjs +1 -1
  10. package/dist/conversational-agent/index.cjs +1 -1
  11. package/dist/conversational-agent/index.mjs +1 -1
  12. package/dist/core/index.cjs +29 -4
  13. package/dist/core/index.d.ts +11 -1
  14. package/dist/core/index.mjs +29 -4
  15. package/dist/document-understanding/index.cjs +257 -0
  16. package/dist/document-understanding/index.d.ts +1185 -0
  17. package/dist/document-understanding/index.mjs +255 -0
  18. package/dist/entities/index.cjs +236 -15
  19. package/dist/entities/index.d.ts +81 -0
  20. package/dist/entities/index.mjs +236 -15
  21. package/dist/feedback/index.cjs +38 -4
  22. package/dist/feedback/index.d.ts +52 -1
  23. package/dist/feedback/index.mjs +38 -4
  24. package/dist/index.cjs +519 -18
  25. package/dist/index.d.ts +1313 -8
  26. package/dist/index.mjs +521 -21
  27. package/dist/index.umd.js +519 -18
  28. package/dist/jobs/index.cjs +1 -1
  29. package/dist/jobs/index.mjs +1 -1
  30. package/dist/maestro-processes/index.cjs +1 -1
  31. package/dist/maestro-processes/index.mjs +1 -1
  32. package/dist/processes/index.cjs +1 -1
  33. package/dist/processes/index.mjs +1 -1
  34. package/dist/queues/index.cjs +1 -1
  35. package/dist/queues/index.mjs +1 -1
  36. package/dist/tasks/index.cjs +1 -1
  37. package/dist/tasks/index.mjs +1 -1
  38. package/package.json +11 -1
package/dist/index.d.ts CHANGED
@@ -49,6 +49,10 @@ interface IUiPath {
49
49
  * For OAuth, this handles the authentication flow.
50
50
  */
51
51
  initialize(): Promise<void>;
52
+ /**
53
+ * Enables the UiPath login picker during OAuth sign-in.
54
+ */
55
+ setMultiLogin(): void;
52
56
  /**
53
57
  * Check if the SDK has been initialized
54
58
  */
@@ -126,6 +130,12 @@ declare class UiPath$1 implements IUiPath {
126
130
  * If no config was provided in constructor, loads from meta tags.
127
131
  */
128
132
  initialize(): Promise<void>;
133
+ /**
134
+ * Enables the UiPath login picker during OAuth sign-in.
135
+ *
136
+ * @internal
137
+ */
138
+ setMultiLogin(): void;
129
139
  /**
130
140
  * Check if the SDK has been initialized
131
141
  */
@@ -570,7 +580,7 @@ interface EntityDeleteRecordsOptions extends EntityDeleteOptions {
570
580
  /**
571
581
  * Logical operator for combining query filter groups
572
582
  */
573
- declare enum LogicalOperator {
583
+ declare enum LogicalOperator$1 {
574
584
  /** Combine conditions with AND — all conditions must match */
575
585
  And = 0,
576
586
  /** Combine conditions with OR — any condition must match */
@@ -615,9 +625,9 @@ interface EntityQueryFilter {
615
625
  */
616
626
  interface EntityQueryFilterGroup {
617
627
  /** Logical operator applied between filters in `queryFilters` (default: AND) */
618
- logicalOperator?: LogicalOperator;
628
+ logicalOperator?: LogicalOperator$1;
619
629
  /** Logical operator applied between sibling filter groups (default: AND) */
620
- continueLogicalOperator?: LogicalOperator;
630
+ continueLogicalOperator?: LogicalOperator$1;
621
631
  /** Array of filter conditions */
622
632
  queryFilters?: EntityQueryFilter[];
623
633
  /** Nested filter groups for complex boolean expressions */
@@ -675,6 +685,14 @@ interface EntityFieldBase {
675
685
  isEncrypted?: boolean;
676
686
  /** Default value for the field */
677
687
  defaultValue?: string;
688
+ /** Maximum character length for STRING fields (default: 200, range: 1–4000) and MULTILINE_TEXT fields (default: 200, range: 1–10000). */
689
+ lengthLimit?: number;
690
+ /** Maximum allowed value for numeric fields (INTEGER, BIG_INTEGER, FLOAT, DOUBLE, DECIMAL — default: 1,000,000,000,000; range: ±9,007,199,254,740,991) */
691
+ maxValue?: number;
692
+ /** Minimum allowed value for numeric fields (INTEGER, BIG_INTEGER, FLOAT, DOUBLE, DECIMAL — default: -1,000,000,000,000; range: ±9,007,199,254,740,991) */
693
+ minValue?: number;
694
+ /** Number of decimal places for DECIMAL, FLOAT, and DOUBLE fields (default: 2, range: 0–10) */
695
+ decimalPrecision?: number;
678
696
  }
679
697
  /**
680
698
  * User-facing field definition for creating or updating entity schemas
@@ -873,7 +891,7 @@ declare enum JoinType {
873
891
  /**
874
892
  * Field reference with ID
875
893
  */
876
- interface Field {
894
+ interface Field$1 {
877
895
  id: string;
878
896
  definition?: FieldMetaData;
879
897
  }
@@ -918,7 +936,7 @@ interface FieldMetaData {
918
936
  referenceName?: string;
919
937
  referenceEntity?: RawEntityGetResponse;
920
938
  referenceChoiceSet?: RawEntityGetResponse;
921
- referenceField?: Field;
939
+ referenceField?: Field$1;
922
940
  referenceType?: ReferenceType;
923
941
  choiceSetId?: string;
924
942
  defaultValue?: string;
@@ -1502,6 +1520,13 @@ interface EntityServiceModel {
1502
1520
  * { fieldName: "product_name", type: EntityFieldDataType.STRING, isRequired: true, isUnique: true },
1503
1521
  * { fieldName: "price", type: EntityFieldDataType.INTEGER, defaultValue: "0" },
1504
1522
  * ], { displayName: "Product Catalog", description: "Our product catalog", isRbacEnabled: true });
1523
+ *
1524
+ * // With advanced sqlType constraints (lengthLimit, decimalPrecision, maxValue, minValue) and defaultValue
1525
+ * const ordersId = await entities.create("orders", [
1526
+ * { fieldName: "product_name", type: EntityFieldDataType.STRING, isRequired: true, isUnique: true, lengthLimit: 500 },
1527
+ * { fieldName: "price", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
1528
+ * { fieldName: "quantity", type: EntityFieldDataType.INTEGER, maxValue: 10000, minValue: 1, defaultValue: "0" },
1529
+ * ]);
1505
1530
  * ```
1506
1531
  * @internal
1507
1532
  */
@@ -1549,6 +1574,17 @@ interface EntityServiceModel {
1549
1574
  * updateFields: [{ id: <fieldId>, displayName: "Unit Price", isRequired: true }],
1550
1575
  * displayName: "Price Catalog",
1551
1576
  * });
1577
+ *
1578
+ * // Add a STRING/DECIMAL field with explicit advanced sqlType constraints and defaultValue
1579
+ * await entities.updateById(<id>, {
1580
+ * addFields: [
1581
+ * { fieldName: "summary", type: EntityFieldDataType.STRING, lengthLimit: 500, defaultValue: "summary" },
1582
+ * { fieldName: "amount", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
1583
+ * ],
1584
+ * updateFields: [
1585
+ * { id: <fieldId>, lengthLimit: 1000 },
1586
+ * ],
1587
+ * });
1552
1588
  * ```
1553
1589
  * @internal
1554
1590
  */
@@ -1738,6 +1774,14 @@ interface EntityMethods {
1738
1774
  * displayName: "Updated Name",
1739
1775
  * addFields: [{ fieldName: "notes", type: EntityFieldDataType.MULTILINE_TEXT }],
1740
1776
  * });
1777
+ *
1778
+ * // Add a STRING/DECIMAL field with explicit advanced sqlType constraints
1779
+ * await entity.update({
1780
+ * addFields: [
1781
+ * { fieldName: "summary", type: EntityFieldDataType.STRING, lengthLimit: 500, defaultValue: "string" },
1782
+ * { fieldName: "amount", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
1783
+ * ],
1784
+ * });
1741
1785
  * ```
1742
1786
  * @internal
1743
1787
  */
@@ -2194,6 +2238,13 @@ declare class EntityService extends BaseService implements EntityServiceModel {
2194
2238
  * { fieldName: "product_name", type: EntityFieldDataType.STRING, isRequired: true, isUnique: true },
2195
2239
  * { fieldName: "price", type: EntityFieldDataType.INTEGER, defaultValue: "0" },
2196
2240
  * ], { displayName: "Product Catalog", description: "Our product catalog", isRbacEnabled: true });
2241
+ *
2242
+ * // With advanced sqlType constraints (lengthLimit, decimalPrecision, maxValue, minValue) and defaultValue
2243
+ * const ordersId = await entities.create("orders", [
2244
+ * { fieldName: "product_name", type: EntityFieldDataType.STRING, isRequired: true, isUnique: true, lengthLimit: 500 },
2245
+ * { fieldName: "price", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
2246
+ * { fieldName: "quantity", type: EntityFieldDataType.INTEGER, maxValue: 10000, minValue: 1, defaultValue: "0" },
2247
+ * ]);
2197
2248
  * ```
2198
2249
  * @internal
2199
2250
  */
@@ -2245,6 +2296,17 @@ declare class EntityService extends BaseService implements EntityServiceModel {
2245
2296
  * updateFields: [{ id: "<fieldId>", displayName: "Unit Price", isRequired: true }],
2246
2297
  * displayName: "Price Catalog",
2247
2298
  * });
2299
+ *
2300
+ * // Add a STRING/DECIMAL field with explicit advanced sqlType constraints and defaultValue
2301
+ * await entities.updateById("<entityId>", {
2302
+ * addFields: [
2303
+ * { fieldName: "summary", type: EntityFieldDataType.STRING, lengthLimit: 500, defaultValue: "summary" },
2304
+ * { fieldName: "amount", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
2305
+ * ],
2306
+ * updateFields: [
2307
+ * { id: "<fieldId>", lengthLimit: 1000 },
2308
+ * ],
2309
+ * });
2248
2310
  * ```
2249
2311
  * @internal
2250
2312
  */
@@ -2271,6 +2333,13 @@ declare class EntityService extends BaseService implements EntityServiceModel {
2271
2333
  * @private
2272
2334
  */
2273
2335
  private mapFieldTypes;
2336
+ /**
2337
+ * Resolves an {@link EntityFieldDataType} from a field's `fieldDisplayType` and
2338
+ * raw SQL type name. Prefers `fieldDisplayType` to disambiguate types that
2339
+ * share a SQL type (FILE, CHOICE_SET_*, AUTO_NUMBER, RELATIONSHIP); falls back
2340
+ * to the SQL-type-name mapping. Returns `undefined` if neither resolves.
2341
+ */
2342
+ private tryResolveFieldDataType;
2274
2343
  /**
2275
2344
  * Transforms nested reference objects in field metadata
2276
2345
  */
@@ -2284,6 +2353,28 @@ declare class EntityService extends BaseService implements EntityServiceModel {
2284
2353
  private mapExternalFields;
2285
2354
  /** Converts a user-facing EntityCreateFieldOptions to the raw API field payload */
2286
2355
  private buildSchemaFieldPayload;
2356
+ /**
2357
+ * Derives the user-facing {@link EntityFieldDataType} for a field on the raw
2358
+ * API response. Throws if the field's `fieldDisplayType` and `sqlType.name`
2359
+ * are both unmappable.
2360
+ */
2361
+ private resolveFieldDataType;
2362
+ /**
2363
+ * Validates that the user-supplied constraint properties on a field are
2364
+ * supported by the field's data type. Throws a `ValidationError` listing
2365
+ * any unsupported properties.
2366
+ */
2367
+ private validateFieldConstraints;
2368
+ /**
2369
+ * Returns the sqlType constraint fields for a given field type.
2370
+ *
2371
+ * The API requires specific constraint properties to be set per SQL type;
2372
+ * without them the field is stored in an incomplete state, causing
2373
+ * "Field type cannot be changed" errors when the UI later tries to edit
2374
+ * advanced options. User-supplied values from `EntityCreateFieldOptions`
2375
+ * override the defaults where the type accepts overrides.
2376
+ */
2377
+ private buildSqlTypeConstraints;
2287
2378
  private static readonly RESERVED_FIELD_NAMES;
2288
2379
  private validateName;
2289
2380
  }
@@ -11557,6 +11648,8 @@ interface FeedbackGetResponse {
11557
11648
  isPositive: boolean;
11558
11649
  /** Categories associated with this feedback entry */
11559
11650
  feedbackCategories: FeedbackCategory[];
11651
+ /** Folder key (GUID) of the folder the feedback belongs to */
11652
+ folderKey?: string;
11560
11653
  /** Email address of the user who submitted the feedback */
11561
11654
  userEmail?: string;
11562
11655
  /** Current status of the feedback in the review workflow */
@@ -11566,6 +11659,13 @@ interface FeedbackGetResponse {
11566
11659
  /** Timestamp when the feedback was last updated */
11567
11660
  updatedTime: string;
11568
11661
  }
11662
+ /**
11663
+ * Options shared across feedback operations
11664
+ */
11665
+ interface FeedbackOptions {
11666
+ /** Folder key for authorization */
11667
+ folderKey: string;
11668
+ }
11569
11669
  /**
11570
11670
  * Options for retrieving multiple feedback entries
11571
11671
  */
@@ -11640,6 +11740,1211 @@ interface FeedbackServiceModel {
11640
11740
  * ```
11641
11741
  */
11642
11742
  getAll<T extends FeedbackGetAllOptions = FeedbackGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<FeedbackGetResponse> : NonPaginatedResponse<FeedbackGetResponse>>;
11743
+ /**
11744
+ * Gets a single feedback entry by its feedback ID.
11745
+ *
11746
+ * @param id - Feedback ID (GUID) of the feedback entry
11747
+ * @param options - Required options including folderKey for folder-level authorization {@link FeedbackOptions}
11748
+ * @returns Promise resolving to {@link FeedbackGetResponse}
11749
+ * @example
11750
+ * ```typescript
11751
+ * import { Feedback } from '@uipath/uipath-typescript/feedback';
11752
+ *
11753
+ * const feedback = new Feedback(sdk);
11754
+ *
11755
+ * // First, get feedback entries to obtain the ID and folder key
11756
+ * const allFeedback = await feedback.getAll({ pageSize: 10 });
11757
+ * const feedbackId = allFeedback.items[0].id;
11758
+ * const folderKey = allFeedback.items[0].folderKey;
11759
+ * const item = await feedback.getById(feedbackId, { folderKey });
11760
+ * console.log(item.isPositive, item.comment, item.status);
11761
+ * ```
11762
+ */
11763
+ getById(id: string, options: FeedbackOptions): Promise<FeedbackGetResponse>;
11764
+ }
11765
+
11766
+ declare enum DocumentActionPriority {
11767
+ Low = "Low",
11768
+ Medium = "Medium",
11769
+ High = "High",
11770
+ Critical = "Critical"
11771
+ }
11772
+ declare enum DocumentActionStatus {
11773
+ Unassigned = "Unassigned",
11774
+ Pending = "Pending",
11775
+ Completed = "Completed"
11776
+ }
11777
+ declare enum DocumentActionType {
11778
+ Validation = "Validation",
11779
+ Classification = "Classification"
11780
+ }
11781
+ interface UserData {
11782
+ id?: number | null;
11783
+ emailAddress?: string | null;
11784
+ }
11785
+
11786
+ declare enum ComparisonOperator {
11787
+ Equals = "Equals",
11788
+ NotEquals = "NotEquals",
11789
+ Greater = "Greater",
11790
+ Less = "Less",
11791
+ GreaterOrEqual = "GreaterOrEqual",
11792
+ LessOrEqual = "LessOrEqual"
11793
+ }
11794
+ declare enum Criticality {
11795
+ Must = "Must",
11796
+ Should = "Should"
11797
+ }
11798
+ declare enum FieldType {
11799
+ Text = "Text",
11800
+ Number = "Number",
11801
+ Date = "Date",
11802
+ Name = "Name",
11803
+ Address = "Address",
11804
+ Keyword = "Keyword",
11805
+ Set = "Set",
11806
+ Boolean = "Boolean",
11807
+ Table = "Table",
11808
+ Internal = "Internal",
11809
+ FieldGroup = "FieldGroup",
11810
+ MonetaryQuantity = "MonetaryQuantity"
11811
+ }
11812
+ declare enum LogicalOperator {
11813
+ AND = "AND",
11814
+ OR = "OR"
11815
+ }
11816
+ declare enum RuleType {
11817
+ Mandatory = "Mandatory",
11818
+ PossibleValues = "PossibleValues",
11819
+ Regex = "Regex",
11820
+ StartsWith = "StartsWith",
11821
+ EndsWith = "EndsWith",
11822
+ FixedLength = "FixedLength",
11823
+ IsNumeric = "IsNumeric",
11824
+ IsDate = "IsDate",
11825
+ IsEmail = "IsEmail",
11826
+ Contains = "Contains",
11827
+ Expression = "Expression",
11828
+ TableExpression = "TableExpression",
11829
+ IsEmpty = "IsEmpty"
11830
+ }
11831
+ interface DataSource {
11832
+ resourceId?: string | null;
11833
+ elementFieldId?: string | null;
11834
+ }
11835
+ interface DocumentGroup {
11836
+ name?: string | null;
11837
+ categories?: string[] | null;
11838
+ }
11839
+ interface DocumentTaxonomy {
11840
+ dataContractVersion?: string | null;
11841
+ documentTypes?: DocumentTypeEntity[] | null;
11842
+ groups?: DocumentGroup[] | null;
11843
+ supportedLanguages?: LanguageInfo[] | null;
11844
+ reportAsExceptionSettings?: ReportAsExceptionSettings;
11845
+ }
11846
+ interface DocumentTypeEntity {
11847
+ documentTypeId?: string | null;
11848
+ group?: string | null;
11849
+ category?: string | null;
11850
+ name?: string | null;
11851
+ optionalUniqueIdentifier?: string | null;
11852
+ typeField?: TypeField;
11853
+ fields?: Field[] | null;
11854
+ metadata?: MetadataEntry[] | null;
11855
+ }
11856
+ interface ExceptionReasonOption {
11857
+ exceptionReason?: string | null;
11858
+ }
11859
+ interface Field {
11860
+ fieldId?: string | null;
11861
+ fieldName?: string | null;
11862
+ isMultiValue?: boolean;
11863
+ type?: FieldType;
11864
+ deriveFieldsFormat?: string | null;
11865
+ components?: Field[] | null;
11866
+ setValues?: string[] | null;
11867
+ metadata?: MetadataEntry[] | null;
11868
+ ruleSet?: RuleSet;
11869
+ defaultValue?: string | null;
11870
+ dataSource?: DataSource;
11871
+ }
11872
+ interface LanguageInfo {
11873
+ name?: string | null;
11874
+ code?: string | null;
11875
+ }
11876
+ interface MetadataEntry {
11877
+ key?: string | null;
11878
+ value?: string | null;
11879
+ }
11880
+ interface ReportAsExceptionSettings {
11881
+ exceptionReasonOptions?: ExceptionReasonOption[] | null;
11882
+ }
11883
+ interface Rule {
11884
+ name?: string | null;
11885
+ type?: RuleType;
11886
+ logicalOperator?: LogicalOperator;
11887
+ comparisonOperator?: ComparisonOperator;
11888
+ expression?: string | null;
11889
+ setValues?: string[] | null;
11890
+ }
11891
+ interface RuleSet {
11892
+ criticality?: Criticality;
11893
+ rules?: Rule[] | null;
11894
+ }
11895
+ interface TypeField {
11896
+ fieldId?: string | null;
11897
+ fieldName?: string | null;
11898
+ }
11899
+
11900
+ interface FieldValue {
11901
+ value?: string | null;
11902
+ derivedValue?: string | null;
11903
+ }
11904
+ interface FieldValueResult {
11905
+ value?: FieldValue;
11906
+ isValid?: boolean;
11907
+ rules?: RuleResult[] | null;
11908
+ }
11909
+ interface RuleResult {
11910
+ rule?: Rule;
11911
+ isValid?: boolean;
11912
+ }
11913
+ interface RuleSetResult {
11914
+ fieldId?: string | null;
11915
+ fieldType?: FieldType;
11916
+ criticality?: Criticality;
11917
+ isValid?: boolean;
11918
+ results?: FieldValueResult[] | null;
11919
+ brokenRules?: Rule[] | null;
11920
+ rowIndex?: number | null;
11921
+ tableFieldId?: string | null;
11922
+ }
11923
+
11924
+ interface ErrorResponse {
11925
+ message?: string | null;
11926
+ severity?: 'Info' | 'Warning' | 'Error';
11927
+ code?: string | null;
11928
+ parameters?: string[] | null;
11929
+ }
11930
+
11931
+ declare enum ClassifierDocumentTypeType {
11932
+ FormsAi = "FormsAi",
11933
+ SemiStructuredAi = "SemiStructuredAi",
11934
+ Helix = "Helix",
11935
+ Unknown = "Unknown"
11936
+ }
11937
+ declare enum CreateTaskPriority {
11938
+ Low = "Low",
11939
+ Medium = "Medium",
11940
+ High = "High",
11941
+ Critical = "Critical"
11942
+ }
11943
+ declare enum GptFieldType {
11944
+ Address = "Address",
11945
+ Boolean = "Boolean",
11946
+ Date = "Date",
11947
+ Name = "Name",
11948
+ Number = "Number",
11949
+ Text = "Text"
11950
+ }
11951
+ declare enum ValidationDisplayMode {
11952
+ Classic = "Classic",
11953
+ Compact = "Compact"
11954
+ }
11955
+ interface ClassificationPrompt {
11956
+ name?: string | null;
11957
+ description?: string | null;
11958
+ }
11959
+ interface ClassificationValidationConfiguration {
11960
+ enablePageReordering?: boolean;
11961
+ }
11962
+ interface ContentValidationData {
11963
+ bucketName?: string | null;
11964
+ bucketId?: number;
11965
+ folderId?: number;
11966
+ folderKey?: string;
11967
+ documentId?: string;
11968
+ encodedDocumentPath?: string | null;
11969
+ textPath?: string | null;
11970
+ documentObjectModelPath?: string | null;
11971
+ taxonomyPath?: string | null;
11972
+ automaticExtractionResultsPath?: string | null;
11973
+ validatedExtractionResultsPath?: string | null;
11974
+ customizationInfoPath?: string | null;
11975
+ }
11976
+ interface DocumentClassificationActionDataModel {
11977
+ id?: number | null;
11978
+ status?: DocumentActionStatus;
11979
+ title?: string | null;
11980
+ priority?: DocumentActionPriority;
11981
+ taskCatalogName?: string | null;
11982
+ taskUrl?: string | null;
11983
+ folderPath?: string | null;
11984
+ folderId?: number | null;
11985
+ data?: unknown | null;
11986
+ action?: string | null;
11987
+ isDeleted?: boolean | null;
11988
+ assignedToUser?: UserData;
11989
+ creatorUser?: UserData;
11990
+ deleterUser?: UserData;
11991
+ lastModifierUser?: UserData;
11992
+ completedByUser?: UserData;
11993
+ creationTime?: string | null;
11994
+ lastAssignedTime?: string | null;
11995
+ completionTime?: string | null;
11996
+ processingTime?: number | null;
11997
+ type?: DocumentActionType;
11998
+ }
11999
+ interface DocumentExtractionActionDataModel {
12000
+ id?: number | null;
12001
+ status?: DocumentActionStatus;
12002
+ title?: string | null;
12003
+ priority?: DocumentActionPriority;
12004
+ taskCatalogName?: string | null;
12005
+ taskUrl?: string | null;
12006
+ folderPath?: string | null;
12007
+ folderId?: number | null;
12008
+ data?: unknown | null;
12009
+ action?: string | null;
12010
+ isDeleted?: boolean | null;
12011
+ assignedToUser?: UserData;
12012
+ creatorUser?: UserData;
12013
+ deleterUser?: UserData;
12014
+ lastModifierUser?: UserData;
12015
+ completedByUser?: UserData;
12016
+ creationTime?: string | null;
12017
+ lastAssignedTime?: string | null;
12018
+ completionTime?: string | null;
12019
+ processingTime?: number | null;
12020
+ type?: DocumentActionType;
12021
+ }
12022
+ interface ExtractionPrompt {
12023
+ id?: string | null;
12024
+ question?: string | null;
12025
+ fieldType?: GptFieldType;
12026
+ multiValued?: boolean | null;
12027
+ }
12028
+ interface ExtractionValidationConfigurationV2 {
12029
+ enableRtlControls?: boolean;
12030
+ displayMode?: ValidationDisplayMode;
12031
+ fieldsValidationConfidence?: number | null;
12032
+ allowChangeOfDocumentType?: boolean | null;
12033
+ }
12034
+ interface FieldGroupValueProjection {
12035
+ fieldGroupName?: string | null;
12036
+ fieldValues?: FieldValueProjection[] | null;
12037
+ }
12038
+ interface FieldValueProjection {
12039
+ id?: string | null;
12040
+ name?: string | null;
12041
+ value?: string | null;
12042
+ unformattedValue?: string | null;
12043
+ confidence?: number | null;
12044
+ ocrConfidence?: number | null;
12045
+ type?: FieldType;
12046
+ }
12047
+
12048
+ declare enum MarkupType {
12049
+ Unknown = "Unknown",
12050
+ Circled = "Circled",
12051
+ Underlined = "Underlined",
12052
+ Strikethrough = "Strikethrough"
12053
+ }
12054
+ declare enum ProcessingSource {
12055
+ Unknown = "Unknown",
12056
+ Ocr = "Ocr",
12057
+ Pdf = "Pdf",
12058
+ PlainText = "PlainText",
12059
+ PdfAndOcr = "PdfAndOcr"
12060
+ }
12061
+ declare enum Rotation {
12062
+ None = "None",
12063
+ Rotated90 = "Rotated90",
12064
+ Rotated180 = "Rotated180",
12065
+ Rotated270 = "Rotated270",
12066
+ Other = "Other"
12067
+ }
12068
+ declare enum SectionType {
12069
+ Vertical = "Vertical",
12070
+ Paragraph = "Paragraph",
12071
+ Header = "Header",
12072
+ Footer = "Footer",
12073
+ Table = "Table"
12074
+ }
12075
+ declare enum TextType {
12076
+ Unknown = "Unknown",
12077
+ Text = "Text",
12078
+ Checkbox = "Checkbox",
12079
+ Handwriting = "Handwriting",
12080
+ Barcode = "Barcode",
12081
+ QRcode = "QRcode",
12082
+ Stamp = "Stamp",
12083
+ Logo = "Logo",
12084
+ Circle = "Circle",
12085
+ Underline = "Underline",
12086
+ Cut = "Cut"
12087
+ }
12088
+ declare enum WordGroupType {
12089
+ Sentence = "Sentence",
12090
+ TableCell = "TableCell",
12091
+ TableRowEnd = "TableRowEnd",
12092
+ Heading = "Heading",
12093
+ Other = "Other"
12094
+ }
12095
+ interface DocumentEntity {
12096
+ documentId?: string | null;
12097
+ contentType?: string | null;
12098
+ length?: number;
12099
+ pages?: Page[] | null;
12100
+ documentMetadata?: Metadata[] | null;
12101
+ }
12102
+ interface Metadata {
12103
+ key?: string | null;
12104
+ value?: string | null;
12105
+ }
12106
+ interface Page {
12107
+ pageIndex?: number;
12108
+ size?: number[];
12109
+ sections?: PageSection[] | null;
12110
+ pageMarkups?: PageMarkup[] | null;
12111
+ processingSource?: ProcessingSource;
12112
+ indexInText?: number;
12113
+ textLength?: number;
12114
+ skewAngle?: number;
12115
+ rotation?: Rotation;
12116
+ pageMetadata?: Metadata[] | null;
12117
+ }
12118
+ interface PageMarkup {
12119
+ box?: number[];
12120
+ polygon?: number[] | null;
12121
+ ocrConfidence?: number;
12122
+ text?: string | null;
12123
+ markupType?: MarkupType;
12124
+ }
12125
+ interface PageSection {
12126
+ indexInText?: number;
12127
+ language?: string | null;
12128
+ length?: number;
12129
+ rotation?: Rotation;
12130
+ skewAngle?: number;
12131
+ type?: SectionType;
12132
+ wordGroups?: WordGroup[] | null;
12133
+ }
12134
+ interface Word {
12135
+ box?: number[];
12136
+ polygon?: number[] | null;
12137
+ indexInText?: number;
12138
+ ocrConfidence?: number;
12139
+ text?: string | null;
12140
+ visualLineNumber?: number;
12141
+ textType?: TextType;
12142
+ markupType?: MarkupType[] | null;
12143
+ }
12144
+ interface WordGroup {
12145
+ indexInText?: number;
12146
+ length?: number;
12147
+ type?: WordGroupType;
12148
+ words?: Word[] | null;
12149
+ }
12150
+
12151
+ declare enum ResultsDataSource {
12152
+ Automatic = "Automatic",
12153
+ Manual = "Manual",
12154
+ ManuallyChanged = "ManuallyChanged",
12155
+ Defaulted = "Defaulted",
12156
+ External = "External"
12157
+ }
12158
+ interface ClassificationResult {
12159
+ documentTypeId?: string | null;
12160
+ documentId?: string | null;
12161
+ confidence?: number;
12162
+ ocrConfidence?: number;
12163
+ reference?: ResultsContentReference;
12164
+ documentBounds?: ResultsDocumentBounds;
12165
+ classifierName?: string | null;
12166
+ }
12167
+ interface ExtractionResult {
12168
+ documentId?: string | null;
12169
+ resultsVersion?: number;
12170
+ resultsDocument?: ResultsDocument;
12171
+ extractorPayloads?: ExtractorPayload[] | null;
12172
+ businessRulesResults?: RuleSetResult[] | null;
12173
+ }
12174
+ interface ExtractorPayload {
12175
+ id?: string | null;
12176
+ payload?: string | null;
12177
+ savedPayloadId?: string | null;
12178
+ taxonomySchemaMapping?: string | null;
12179
+ }
12180
+ interface ResultsContentReference {
12181
+ textStartIndex?: number;
12182
+ textLength?: number;
12183
+ tokens?: ResultsValueTokens[] | null;
12184
+ }
12185
+ interface ResultsDataPoint {
12186
+ fieldId?: string | null;
12187
+ fieldName?: string | null;
12188
+ fieldType?: FieldType;
12189
+ isMissing?: boolean;
12190
+ dataSource?: ResultsDataSource;
12191
+ values?: ResultsValue[] | null;
12192
+ dataVersion?: number;
12193
+ operatorConfirmed?: boolean;
12194
+ validatorNotes?: string | null;
12195
+ validatorNotesInfo?: string | null;
12196
+ }
12197
+ interface ResultsDerivedField {
12198
+ fieldId?: string | null;
12199
+ value?: string | null;
12200
+ }
12201
+ interface ResultsDocument {
12202
+ bounds?: ResultsDocumentBounds;
12203
+ language?: string | null;
12204
+ documentGroup?: string | null;
12205
+ documentCategory?: string | null;
12206
+ documentTypeId?: string | null;
12207
+ documentTypeName?: string | null;
12208
+ documentTypeDataVersion?: number;
12209
+ dataVersion?: number;
12210
+ documentTypeSource?: ResultsDataSource;
12211
+ documentTypeField?: ResultsValue;
12212
+ fields?: ResultsDataPoint[] | null;
12213
+ tables?: ResultsTable[] | null;
12214
+ }
12215
+ interface ResultsDocumentBounds {
12216
+ startPage?: number;
12217
+ pageCount?: number;
12218
+ textStartIndex?: number;
12219
+ textLength?: number;
12220
+ pageRange?: string | null;
12221
+ }
12222
+ interface ResultsTable {
12223
+ fieldId?: string | null;
12224
+ fieldName?: string | null;
12225
+ isMissing?: boolean;
12226
+ dataSource?: ResultsDataSource;
12227
+ dataVersion?: number;
12228
+ operatorConfirmed?: boolean;
12229
+ values?: ResultsTableValue[] | null;
12230
+ validatorNotes?: string | null;
12231
+ validatorNotesInfo?: string | null;
12232
+ }
12233
+ interface ResultsTableCell {
12234
+ rowIndex?: number;
12235
+ columnIndex?: number;
12236
+ isHeader?: boolean;
12237
+ isMissing?: boolean;
12238
+ operatorConfirmed?: boolean;
12239
+ dataSource?: ResultsDataSource;
12240
+ dataVersion?: number;
12241
+ values?: ResultsValue[] | null;
12242
+ }
12243
+ interface ResultsTableColumnInfo {
12244
+ fieldId?: string | null;
12245
+ fieldName?: string | null;
12246
+ fieldType?: FieldType;
12247
+ }
12248
+ interface ResultsTableValue {
12249
+ operatorConfirmed?: boolean;
12250
+ confidence?: number;
12251
+ ocrConfidence?: number;
12252
+ cells?: ResultsTableCell[] | null;
12253
+ columnInfo?: ResultsTableColumnInfo[] | null;
12254
+ numberOfRows?: number;
12255
+ validatorNotes?: string | null;
12256
+ validatorNotesInfo?: string | null;
12257
+ }
12258
+ interface ResultsValue {
12259
+ components?: ResultsDataPoint[] | null;
12260
+ value?: string | null;
12261
+ unformattedValue?: string | null;
12262
+ reference?: ResultsContentReference;
12263
+ derivedFields?: ResultsDerivedField[] | null;
12264
+ confidence?: number;
12265
+ operatorConfirmed?: boolean;
12266
+ ocrConfidence?: number;
12267
+ textType?: TextType;
12268
+ validatorNotes?: string | null;
12269
+ validatorNotesInfo?: string | null;
12270
+ }
12271
+ interface ResultsValueTokens {
12272
+ textStartIndex?: number;
12273
+ textLength?: number;
12274
+ page?: number;
12275
+ pageWidth?: number;
12276
+ pageHeight?: number;
12277
+ boxes?: number[][] | null;
12278
+ }
12279
+
12280
+ interface ClassificationRequestBody {
12281
+ documentId?: string;
12282
+ prompts?: ClassificationPrompt[] | null;
12283
+ }
12284
+ interface ClassificationResponse {
12285
+ classificationResults?: ClassificationResult[] | null;
12286
+ }
12287
+ interface StartClassificationResponse {
12288
+ operationId?: string;
12289
+ resultUrl?: string | null;
12290
+ }
12291
+ interface SwaggerGetClassificationResultResponse {
12292
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
12293
+ createdAt?: string;
12294
+ lastUpdatedAt?: string;
12295
+ error?: ErrorResponse;
12296
+ result?: ClassificationResponse;
12297
+ }
12298
+
12299
+ interface DataDeletionRequest {
12300
+ removeValidationDataFromStorage?: boolean;
12301
+ }
12302
+
12303
+ interface StartDigitizationFromAttachmentModel {
12304
+ attachmentId?: string;
12305
+ folderId?: string | null;
12306
+ fileName?: string | null;
12307
+ mimeType?: string | null;
12308
+ }
12309
+ interface StartDigitizationResponse {
12310
+ documentId?: string;
12311
+ resultUrl?: string | null;
12312
+ }
12313
+ interface SwaggerGetDigitizeJobResponse {
12314
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
12315
+ error?: ErrorResponse;
12316
+ result?: SwaggerGetDigitizeJobResult;
12317
+ createdAt?: string;
12318
+ lastUpdatedAt?: string;
12319
+ }
12320
+ interface SwaggerGetDigitizeJobResult {
12321
+ documentObjectModel?: DocumentEntity;
12322
+ documentText?: string | null;
12323
+ }
12324
+
12325
+ declare enum ProjectProperties {
12326
+ IsPredefined = "IsPredefined",
12327
+ SupportsTags = "SupportsTags",
12328
+ SupportsVersions = "SupportsVersions",
12329
+ IsSplittingEnabled = "IsSplittingEnabled"
12330
+ }
12331
+ declare enum ProjectType {
12332
+ Classic = "Classic",
12333
+ Modern = "Modern",
12334
+ IXP = "IXP",
12335
+ Unknown = "Unknown"
12336
+ }
12337
+ declare enum ResourceStatus {
12338
+ Unknown = "Unknown",
12339
+ NotStarted = "NotStarted",
12340
+ ExportInProgress = "ExportInProgress",
12341
+ ExportCompleted = "ExportCompleted",
12342
+ InProgress = "InProgress",
12343
+ Suspended = "Suspended",
12344
+ Resuming = "Resuming",
12345
+ Available = "Available",
12346
+ Error = "Error",
12347
+ Deleting = "Deleting"
12348
+ }
12349
+ declare enum ResourceType {
12350
+ Specialized = "Specialized",
12351
+ Generative = "Generative",
12352
+ Custom = "Custom",
12353
+ Unknown = "Unknown"
12354
+ }
12355
+ interface Classifier {
12356
+ id?: string | null;
12357
+ name?: string | null;
12358
+ resourceType?: ResourceType;
12359
+ status?: ResourceStatus;
12360
+ documentTypeIds?: string[] | null;
12361
+ detailsUrl?: string | null;
12362
+ syncUrl?: string | null;
12363
+ asyncUrl?: string | null;
12364
+ projectVersion?: number | null;
12365
+ projectVersionName?: string | null;
12366
+ properties?: ProjectProperties[] | null;
12367
+ }
12368
+ interface DiscoveredDocumentType {
12369
+ id?: string | null;
12370
+ name?: string | null;
12371
+ resourceType?: ResourceType;
12372
+ detailsUrl?: string | null;
12373
+ }
12374
+ interface DiscoveredExtractorResourceSummaryResponse {
12375
+ id?: string | null;
12376
+ name?: string | null;
12377
+ resourceType?: ResourceType;
12378
+ detailsUrl?: string | null;
12379
+ documentTypeId?: string | null;
12380
+ documentTypeName?: string | null;
12381
+ projectVersion?: number | null;
12382
+ projectVersionName?: string | null;
12383
+ createdOn?: string | null;
12384
+ description?: string | null;
12385
+ }
12386
+ interface DiscoveredProjectVersionResponseV2_0 {
12387
+ version?: number;
12388
+ versionName?: string | null;
12389
+ tags?: string[] | null;
12390
+ date?: string;
12391
+ deployed?: boolean;
12392
+ }
12393
+ interface DiscoveredResourceSummaryResponse {
12394
+ id?: string | null;
12395
+ name?: string | null;
12396
+ resourceType?: ResourceType;
12397
+ detailsUrl?: string | null;
12398
+ projectVersion?: number | null;
12399
+ projectVersionName?: string | null;
12400
+ createdOn?: string | null;
12401
+ description?: string | null;
12402
+ }
12403
+ interface Extractor {
12404
+ id?: string | null;
12405
+ name?: string | null;
12406
+ documentTypeId?: string | null;
12407
+ resourceType?: ResourceType;
12408
+ status?: ResourceStatus;
12409
+ detailsUrl?: string | null;
12410
+ syncUrl?: string | null;
12411
+ asyncUrl?: string | null;
12412
+ projectVersion?: number | null;
12413
+ projectVersionName?: string | null;
12414
+ description?: string | null;
12415
+ }
12416
+ interface GetClassifierDetailsDocumentTypeResponse {
12417
+ id?: string | null;
12418
+ name?: string | null;
12419
+ resourceType?: ResourceType;
12420
+ type?: ClassifierDocumentTypeType;
12421
+ createdOn?: string | null;
12422
+ }
12423
+ interface GetClassifierDetailsResponse {
12424
+ id?: string | null;
12425
+ name?: string | null;
12426
+ resourceType?: ResourceType;
12427
+ status?: ResourceStatus;
12428
+ documentTypes?: GetClassifierDetailsDocumentTypeResponse[] | null;
12429
+ createdOn?: string | null;
12430
+ syncUrl?: string | null;
12431
+ asyncUrl?: string | null;
12432
+ projectVersion?: number | null;
12433
+ projectVersionName?: string | null;
12434
+ properties?: ProjectProperties[] | null;
12435
+ }
12436
+ interface GetClassifiersResponse {
12437
+ classifiers?: Classifier[] | null;
12438
+ }
12439
+ interface GetDocumentTypeDetailsByTagResponseV2_0 {
12440
+ id?: string | null;
12441
+ name?: string | null;
12442
+ resourceType?: ResourceType;
12443
+ createdOn?: string | null;
12444
+ documentTaxonomy?: DocumentTaxonomy;
12445
+ }
12446
+ interface GetDocumentTypeDetailsResponseV2_0 {
12447
+ id?: string | null;
12448
+ name?: string | null;
12449
+ resourceType?: ResourceType;
12450
+ createdOn?: string | null;
12451
+ classifiers?: DiscoveredResourceSummaryResponse[] | null;
12452
+ extractors?: DiscoveredResourceSummaryResponse[] | null;
12453
+ }
12454
+ interface GetDocumentTypesResponse {
12455
+ documentTypes?: DiscoveredDocumentType[] | null;
12456
+ }
12457
+ interface GetExtractorDetailsResponseV2_0 {
12458
+ id?: string | null;
12459
+ name?: string | null;
12460
+ resourceType?: ResourceType;
12461
+ status?: ResourceStatus;
12462
+ projectId?: string;
12463
+ projectVersion?: number | null;
12464
+ projectVersionName?: string | null;
12465
+ documentTypeName?: string | null;
12466
+ documentTypeId?: string | null;
12467
+ createdOn?: string | null;
12468
+ syncUrl?: string | null;
12469
+ asyncUrl?: string | null;
12470
+ description?: string | null;
12471
+ documentTaxonomy?: DocumentTaxonomy;
12472
+ }
12473
+ interface GetExtractorsResponse {
12474
+ extractors?: Extractor[] | null;
12475
+ }
12476
+ interface GetProjectDetailsResponseV2_0 {
12477
+ id?: string;
12478
+ name?: string | null;
12479
+ description?: string | null;
12480
+ type?: ProjectType;
12481
+ properties?: ProjectProperties[] | null;
12482
+ documentTypes?: DiscoveredResourceSummaryResponse[] | null;
12483
+ classifiers?: DiscoveredResourceSummaryResponse[] | null;
12484
+ extractors?: DiscoveredExtractorResourceSummaryResponse[] | null;
12485
+ projectVersions?: DiscoveredProjectVersionResponseV2_0[] | null;
12486
+ createdOn?: string | null;
12487
+ }
12488
+ interface GetProjectsResponse {
12489
+ projects?: Project[] | null;
12490
+ }
12491
+ interface GetProjectTaxonomyResponse {
12492
+ documentTaxonomy?: DocumentTaxonomy;
12493
+ }
12494
+ interface GetTagsResponse {
12495
+ tags?: TagEntity[] | null;
12496
+ }
12497
+ interface Project {
12498
+ id?: string;
12499
+ name?: string | null;
12500
+ type?: ProjectType;
12501
+ description?: string | null;
12502
+ createdOn?: string | null;
12503
+ detailsUrl?: string | null;
12504
+ digitizationStartUrl?: string | null;
12505
+ classifiersDiscoveryUrl?: string | null;
12506
+ extractorsDiscoveryUrl?: string | null;
12507
+ properties?: ProjectProperties[] | null;
12508
+ }
12509
+ interface TagEntity {
12510
+ name?: string | null;
12511
+ projectVersion?: number | null;
12512
+ projectVersionName?: string | null;
12513
+ extractors?: TaggedExtractor[] | null;
12514
+ classifiers?: TaggedClassifier[] | null;
12515
+ }
12516
+ interface TaggedClassifier {
12517
+ name?: string | null;
12518
+ documentTypes?: DiscoveredDocumentType[] | null;
12519
+ syncUrl?: string | null;
12520
+ asyncUrl?: string | null;
12521
+ }
12522
+ interface TaggedExtractor {
12523
+ name?: string | null;
12524
+ documentType?: DiscoveredDocumentType;
12525
+ syncUrl?: string | null;
12526
+ asyncUrl?: string | null;
12527
+ }
12528
+
12529
+ interface ExtractionPromptRequestBody {
12530
+ id?: string | null;
12531
+ question?: string | null;
12532
+ fieldType?: GptFieldType;
12533
+ multiValued?: boolean | null;
12534
+ }
12535
+ interface ExtractRequestBodyConfiguration {
12536
+ autoValidationConfidenceThreshold?: number | null;
12537
+ }
12538
+ interface ExtractRequestBodyV2_0 {
12539
+ documentId?: string;
12540
+ pageRange?: string | null;
12541
+ prompts?: ExtractionPromptRequestBody[] | null;
12542
+ configuration?: ExtractRequestBodyConfiguration;
12543
+ documentTaxonomy?: DocumentTaxonomy;
12544
+ }
12545
+ interface ExtractSyncResult {
12546
+ extractionResult?: ExtractionResult;
12547
+ }
12548
+ interface StartExtractionResponse {
12549
+ operationId?: string;
12550
+ resultUrl?: string | null;
12551
+ }
12552
+ interface SwaggerGetExtractionResultResponse {
12553
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
12554
+ createdAt?: string;
12555
+ lastUpdatedAt?: string;
12556
+ error?: ErrorResponse;
12557
+ result?: ExtractSyncResult;
12558
+ }
12559
+
12560
+ declare enum ModelKind {
12561
+ Classifier = "Classifier",
12562
+ Extractor = "Extractor"
12563
+ }
12564
+ declare enum ModelType {
12565
+ IXP = "IXP",
12566
+ Modern = "Modern",
12567
+ Predefined = "Predefined"
12568
+ }
12569
+ interface FolderBasedStartExtractionRequest {
12570
+ documentId?: string;
12571
+ documentTaxonomy?: DocumentTaxonomy;
12572
+ pageRange?: string | null;
12573
+ }
12574
+ interface FolderBasedStartExtractionResponse {
12575
+ operationId?: string;
12576
+ resultUrl?: string | null;
12577
+ }
12578
+ interface FolderModelsResponse {
12579
+ folderKey?: string | null;
12580
+ fullyQualifiedName?: string | null;
12581
+ models?: ModelSummaryResponse[] | null;
12582
+ }
12583
+ interface GetModelDetailsResponse {
12584
+ fullyQualifiedName?: string | null;
12585
+ kind?: ModelKind;
12586
+ type?: ModelType;
12587
+ description?: string | null;
12588
+ asyncDigitizationUrl?: string | null;
12589
+ asyncExtractionUrl?: string | null;
12590
+ documentTaxonomy?: DocumentTaxonomy;
12591
+ }
12592
+ interface GetModelsResponse {
12593
+ folders?: FolderModelsResponse[] | null;
12594
+ }
12595
+ interface ModelSummaryResponse {
12596
+ modelName?: string | null;
12597
+ description?: string | null;
12598
+ kind?: ModelKind;
12599
+ type?: ModelType;
12600
+ fullyQualifiedName?: string | null;
12601
+ detailsUrl?: string | null;
12602
+ asyncDigitizationUrl?: string | null;
12603
+ asyncExtractionUrl?: string | null;
12604
+ }
12605
+
12606
+ declare enum ActionStatus {
12607
+ Unassigned = "Unassigned",
12608
+ Pending = "Pending",
12609
+ Completed = "Completed"
12610
+ }
12611
+ interface ClassificationValidationResult {
12612
+ actionStatus?: ActionStatus;
12613
+ actionData?: DocumentClassificationActionDataModel;
12614
+ validatedClassificationResults?: ClassificationResult[] | null;
12615
+ }
12616
+ interface ExtractionValidationArtifactsResult {
12617
+ validatedExtractionResults?: ExtractionResult;
12618
+ }
12619
+ interface ExtractionValidationResult {
12620
+ actionStatus?: ActionStatus;
12621
+ actionData?: DocumentExtractionActionDataModel;
12622
+ validatedExtractionResults?: ExtractionResult;
12623
+ dataProjection?: FieldGroupValueProjection[] | null;
12624
+ }
12625
+ interface GetClassificationValidationTaskResponse {
12626
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
12627
+ error?: ErrorResponse;
12628
+ createdAt?: string;
12629
+ lastUpdatedAt?: string;
12630
+ result?: ClassificationValidationResult;
12631
+ }
12632
+ interface GetExtractionValidationArtifactsResultTaskResponse {
12633
+ result?: ExtractionValidationArtifactsResult;
12634
+ }
12635
+ interface GetExtractionValidationArtifactsTaskResponse {
12636
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
12637
+ error?: ErrorResponse;
12638
+ createdAt?: string;
12639
+ lastUpdatedAt?: string;
12640
+ contentValidationData?: ContentValidationData;
12641
+ }
12642
+ interface GetExtractionValidationTaskResponse {
12643
+ status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
12644
+ error?: ErrorResponse;
12645
+ createdAt?: string;
12646
+ lastUpdatedAt?: string;
12647
+ result?: ExtractionValidationResult;
12648
+ }
12649
+ interface StartClassificationValidationTaskRequest {
12650
+ documentId?: string | null;
12651
+ actionTitle?: string | null;
12652
+ actionPriority?: CreateTaskPriority;
12653
+ actionCatalog?: string | null;
12654
+ actionFolder?: string | null;
12655
+ storageBucketName?: string | null;
12656
+ storageBucketDirectoryPath?: string | null;
12657
+ prompts?: ClassificationPrompt[] | null;
12658
+ configuration?: ClassificationValidationConfiguration;
12659
+ classificationResults?: ClassificationResult[] | null;
12660
+ }
12661
+ interface StartExtractionValidationArtifactsRequest {
12662
+ documentId?: string;
12663
+ extractionResult?: ExtractionResult;
12664
+ documentTaxonomy?: DocumentTaxonomy;
12665
+ folderName?: string | null;
12666
+ storageBucketName?: string | null;
12667
+ storageBucketDirectoryPath?: string | null;
12668
+ }
12669
+ interface StartExtractionValidationTaskRequestV2_0 {
12670
+ documentId?: string | null;
12671
+ actionTitle?: string | null;
12672
+ actionPriority?: CreateTaskPriority;
12673
+ actionCatalog?: string | null;
12674
+ actionFolder?: string | null;
12675
+ storageBucketName?: string | null;
12676
+ storageBucketDirectoryPath?: string | null;
12677
+ fieldsValidationConfidence?: number | null;
12678
+ allowChangeOfDocumentType?: boolean | null;
12679
+ prompts?: ExtractionPrompt[] | null;
12680
+ extractionResult?: ExtractionResult;
12681
+ configuration?: ExtractionValidationConfigurationV2;
12682
+ documentTaxonomy?: DocumentTaxonomy;
12683
+ }
12684
+ interface StartValidationArtifactsTaskResponse {
12685
+ operationId?: string;
12686
+ artifactsUrl?: string | null;
12687
+ resultUrl?: string | null;
12688
+ }
12689
+ interface StartValidationTaskResponse {
12690
+ operationId?: string;
12691
+ resultUrl?: string | null;
12692
+ }
12693
+
12694
+ interface ClassificationValidationFinishedTaskInfo {
12695
+ id?: number;
12696
+ title?: string | null;
12697
+ priority?: DocumentActionPriority;
12698
+ status?: ActionStatus;
12699
+ creationTime?: string;
12700
+ completionTime?: string | null;
12701
+ lastAssignedTime?: string;
12702
+ url?: string | null;
12703
+ assignedToUser?: string | null;
12704
+ completedByUser?: string | null;
12705
+ lastModifierUser?: string | null;
12706
+ documentRejectionReason?: string | null;
12707
+ catalogName?: string | null;
12708
+ folderName?: string | null;
12709
+ processingTime?: number | null;
12710
+ }
12711
+ interface FinishExtractionValidationTaskInfo {
12712
+ id?: number;
12713
+ title?: string | null;
12714
+ priority?: DocumentActionPriority;
12715
+ status?: ActionStatus;
12716
+ creationTime?: string;
12717
+ completionTime?: string | null;
12718
+ lastAssignedTime?: string;
12719
+ url?: string | null;
12720
+ assignedToUser?: string | null;
12721
+ completedByUser?: string | null;
12722
+ lastModifierUser?: string | null;
12723
+ documentRejectionReason?: string | null;
12724
+ catalogName?: string | null;
12725
+ folderName?: string | null;
12726
+ processingTime?: number | null;
12727
+ }
12728
+ interface StartClassificationValidationTaskInfo {
12729
+ id?: number;
12730
+ title?: string | null;
12731
+ folderName?: string | null;
12732
+ storageBucketName?: string | null;
12733
+ storageBucketDirectoryPath?: string | null;
12734
+ catalogName?: string | null;
12735
+ priority?: DocumentActionPriority;
12736
+ status?: ActionStatus;
12737
+ }
12738
+ interface StartExtractionValidationTaskInfo {
12739
+ id?: number;
12740
+ title?: string | null;
12741
+ folderName?: string | null;
12742
+ storageBucketName?: string | null;
12743
+ storageBucketDirectoryPath?: string | null;
12744
+ catalogName?: string | null;
12745
+ priority?: DocumentActionPriority;
12746
+ status?: ActionStatus;
12747
+ }
12748
+ interface TrackFinishClassificationValidationRequest {
12749
+ classifierId?: string | null;
12750
+ tag?: string | null;
12751
+ documentId?: string;
12752
+ task?: ClassificationValidationFinishedTaskInfo;
12753
+ classificationResult?: ClassificationResult[] | null;
12754
+ }
12755
+ interface TrackFinishExtractionValidationRequest {
12756
+ extractorId?: string | null;
12757
+ tag?: string | null;
12758
+ documentTypeId?: string | null;
12759
+ documentId?: string;
12760
+ task?: FinishExtractionValidationTaskInfo;
12761
+ extractionResult?: ExtractionResult;
12762
+ validatedExtractionResult?: ExtractionResult;
12763
+ }
12764
+ interface TrackStartClassificationValidationRequest {
12765
+ classifierId?: string | null;
12766
+ tag?: string | null;
12767
+ documentId?: string;
12768
+ duration?: number;
12769
+ task?: StartClassificationValidationTaskInfo;
12770
+ classificationResult?: ClassificationResult[] | null;
12771
+ }
12772
+ interface TrackStartExtractionValidationRequest {
12773
+ extractorId?: string | null;
12774
+ tag?: string | null;
12775
+ documentTypeId?: string | null;
12776
+ documentId?: string;
12777
+ duration?: number;
12778
+ task?: StartExtractionValidationTaskInfo;
12779
+ extractionResult?: ExtractionResult;
12780
+ }
12781
+
12782
+ type index_ActionStatus = ActionStatus;
12783
+ declare const index_ActionStatus: typeof ActionStatus;
12784
+ type index_ClassificationPrompt = ClassificationPrompt;
12785
+ type index_ClassificationRequestBody = ClassificationRequestBody;
12786
+ type index_ClassificationResponse = ClassificationResponse;
12787
+ type index_ClassificationResult = ClassificationResult;
12788
+ type index_ClassificationValidationConfiguration = ClassificationValidationConfiguration;
12789
+ type index_ClassificationValidationFinishedTaskInfo = ClassificationValidationFinishedTaskInfo;
12790
+ type index_ClassificationValidationResult = ClassificationValidationResult;
12791
+ type index_Classifier = Classifier;
12792
+ type index_ClassifierDocumentTypeType = ClassifierDocumentTypeType;
12793
+ declare const index_ClassifierDocumentTypeType: typeof ClassifierDocumentTypeType;
12794
+ type index_ComparisonOperator = ComparisonOperator;
12795
+ declare const index_ComparisonOperator: typeof ComparisonOperator;
12796
+ type index_ContentValidationData = ContentValidationData;
12797
+ type index_CreateTaskPriority = CreateTaskPriority;
12798
+ declare const index_CreateTaskPriority: typeof CreateTaskPriority;
12799
+ type index_Criticality = Criticality;
12800
+ declare const index_Criticality: typeof Criticality;
12801
+ type index_DataDeletionRequest = DataDeletionRequest;
12802
+ type index_DataSource = DataSource;
12803
+ type index_DiscoveredDocumentType = DiscoveredDocumentType;
12804
+ type index_DiscoveredExtractorResourceSummaryResponse = DiscoveredExtractorResourceSummaryResponse;
12805
+ type index_DiscoveredProjectVersionResponseV2_0 = DiscoveredProjectVersionResponseV2_0;
12806
+ type index_DiscoveredResourceSummaryResponse = DiscoveredResourceSummaryResponse;
12807
+ type index_DocumentActionPriority = DocumentActionPriority;
12808
+ declare const index_DocumentActionPriority: typeof DocumentActionPriority;
12809
+ type index_DocumentActionStatus = DocumentActionStatus;
12810
+ declare const index_DocumentActionStatus: typeof DocumentActionStatus;
12811
+ type index_DocumentActionType = DocumentActionType;
12812
+ declare const index_DocumentActionType: typeof DocumentActionType;
12813
+ type index_DocumentClassificationActionDataModel = DocumentClassificationActionDataModel;
12814
+ type index_DocumentEntity = DocumentEntity;
12815
+ type index_DocumentExtractionActionDataModel = DocumentExtractionActionDataModel;
12816
+ type index_DocumentGroup = DocumentGroup;
12817
+ type index_DocumentTaxonomy = DocumentTaxonomy;
12818
+ type index_DocumentTypeEntity = DocumentTypeEntity;
12819
+ type index_ErrorResponse = ErrorResponse;
12820
+ type index_ExceptionReasonOption = ExceptionReasonOption;
12821
+ type index_ExtractRequestBodyConfiguration = ExtractRequestBodyConfiguration;
12822
+ type index_ExtractRequestBodyV2_0 = ExtractRequestBodyV2_0;
12823
+ type index_ExtractSyncResult = ExtractSyncResult;
12824
+ type index_ExtractionPrompt = ExtractionPrompt;
12825
+ type index_ExtractionPromptRequestBody = ExtractionPromptRequestBody;
12826
+ type index_ExtractionResult = ExtractionResult;
12827
+ type index_ExtractionValidationArtifactsResult = ExtractionValidationArtifactsResult;
12828
+ type index_ExtractionValidationConfigurationV2 = ExtractionValidationConfigurationV2;
12829
+ type index_ExtractionValidationResult = ExtractionValidationResult;
12830
+ type index_Extractor = Extractor;
12831
+ type index_ExtractorPayload = ExtractorPayload;
12832
+ type index_Field = Field;
12833
+ type index_FieldGroupValueProjection = FieldGroupValueProjection;
12834
+ type index_FieldType = FieldType;
12835
+ declare const index_FieldType: typeof FieldType;
12836
+ type index_FieldValue = FieldValue;
12837
+ type index_FieldValueProjection = FieldValueProjection;
12838
+ type index_FieldValueResult = FieldValueResult;
12839
+ type index_FinishExtractionValidationTaskInfo = FinishExtractionValidationTaskInfo;
12840
+ type index_FolderBasedStartExtractionRequest = FolderBasedStartExtractionRequest;
12841
+ type index_FolderBasedStartExtractionResponse = FolderBasedStartExtractionResponse;
12842
+ type index_FolderModelsResponse = FolderModelsResponse;
12843
+ type index_GetClassificationValidationTaskResponse = GetClassificationValidationTaskResponse;
12844
+ type index_GetClassifierDetailsDocumentTypeResponse = GetClassifierDetailsDocumentTypeResponse;
12845
+ type index_GetClassifierDetailsResponse = GetClassifierDetailsResponse;
12846
+ type index_GetClassifiersResponse = GetClassifiersResponse;
12847
+ type index_GetDocumentTypeDetailsByTagResponseV2_0 = GetDocumentTypeDetailsByTagResponseV2_0;
12848
+ type index_GetDocumentTypeDetailsResponseV2_0 = GetDocumentTypeDetailsResponseV2_0;
12849
+ type index_GetDocumentTypesResponse = GetDocumentTypesResponse;
12850
+ type index_GetExtractionValidationArtifactsResultTaskResponse = GetExtractionValidationArtifactsResultTaskResponse;
12851
+ type index_GetExtractionValidationArtifactsTaskResponse = GetExtractionValidationArtifactsTaskResponse;
12852
+ type index_GetExtractionValidationTaskResponse = GetExtractionValidationTaskResponse;
12853
+ type index_GetExtractorDetailsResponseV2_0 = GetExtractorDetailsResponseV2_0;
12854
+ type index_GetExtractorsResponse = GetExtractorsResponse;
12855
+ type index_GetModelDetailsResponse = GetModelDetailsResponse;
12856
+ type index_GetModelsResponse = GetModelsResponse;
12857
+ type index_GetProjectDetailsResponseV2_0 = GetProjectDetailsResponseV2_0;
12858
+ type index_GetProjectTaxonomyResponse = GetProjectTaxonomyResponse;
12859
+ type index_GetProjectsResponse = GetProjectsResponse;
12860
+ type index_GetTagsResponse = GetTagsResponse;
12861
+ type index_GptFieldType = GptFieldType;
12862
+ declare const index_GptFieldType: typeof GptFieldType;
12863
+ type index_LanguageInfo = LanguageInfo;
12864
+ type index_LogicalOperator = LogicalOperator;
12865
+ declare const index_LogicalOperator: typeof LogicalOperator;
12866
+ type index_MarkupType = MarkupType;
12867
+ declare const index_MarkupType: typeof MarkupType;
12868
+ type index_Metadata = Metadata;
12869
+ type index_MetadataEntry = MetadataEntry;
12870
+ type index_ModelKind = ModelKind;
12871
+ declare const index_ModelKind: typeof ModelKind;
12872
+ type index_ModelSummaryResponse = ModelSummaryResponse;
12873
+ type index_ModelType = ModelType;
12874
+ declare const index_ModelType: typeof ModelType;
12875
+ type index_Page = Page;
12876
+ type index_PageMarkup = PageMarkup;
12877
+ type index_PageSection = PageSection;
12878
+ type index_ProcessingSource = ProcessingSource;
12879
+ declare const index_ProcessingSource: typeof ProcessingSource;
12880
+ type index_Project = Project;
12881
+ type index_ProjectProperties = ProjectProperties;
12882
+ declare const index_ProjectProperties: typeof ProjectProperties;
12883
+ type index_ProjectType = ProjectType;
12884
+ declare const index_ProjectType: typeof ProjectType;
12885
+ type index_ReportAsExceptionSettings = ReportAsExceptionSettings;
12886
+ type index_ResourceStatus = ResourceStatus;
12887
+ declare const index_ResourceStatus: typeof ResourceStatus;
12888
+ type index_ResourceType = ResourceType;
12889
+ declare const index_ResourceType: typeof ResourceType;
12890
+ type index_ResultsContentReference = ResultsContentReference;
12891
+ type index_ResultsDataPoint = ResultsDataPoint;
12892
+ type index_ResultsDataSource = ResultsDataSource;
12893
+ declare const index_ResultsDataSource: typeof ResultsDataSource;
12894
+ type index_ResultsDerivedField = ResultsDerivedField;
12895
+ type index_ResultsDocument = ResultsDocument;
12896
+ type index_ResultsDocumentBounds = ResultsDocumentBounds;
12897
+ type index_ResultsTable = ResultsTable;
12898
+ type index_ResultsTableCell = ResultsTableCell;
12899
+ type index_ResultsTableColumnInfo = ResultsTableColumnInfo;
12900
+ type index_ResultsTableValue = ResultsTableValue;
12901
+ type index_ResultsValue = ResultsValue;
12902
+ type index_ResultsValueTokens = ResultsValueTokens;
12903
+ type index_Rotation = Rotation;
12904
+ declare const index_Rotation: typeof Rotation;
12905
+ type index_Rule = Rule;
12906
+ type index_RuleResult = RuleResult;
12907
+ type index_RuleSet = RuleSet;
12908
+ type index_RuleSetResult = RuleSetResult;
12909
+ type index_RuleType = RuleType;
12910
+ declare const index_RuleType: typeof RuleType;
12911
+ type index_SectionType = SectionType;
12912
+ declare const index_SectionType: typeof SectionType;
12913
+ type index_StartClassificationResponse = StartClassificationResponse;
12914
+ type index_StartClassificationValidationTaskInfo = StartClassificationValidationTaskInfo;
12915
+ type index_StartClassificationValidationTaskRequest = StartClassificationValidationTaskRequest;
12916
+ type index_StartDigitizationFromAttachmentModel = StartDigitizationFromAttachmentModel;
12917
+ type index_StartDigitizationResponse = StartDigitizationResponse;
12918
+ type index_StartExtractionResponse = StartExtractionResponse;
12919
+ type index_StartExtractionValidationArtifactsRequest = StartExtractionValidationArtifactsRequest;
12920
+ type index_StartExtractionValidationTaskInfo = StartExtractionValidationTaskInfo;
12921
+ type index_StartExtractionValidationTaskRequestV2_0 = StartExtractionValidationTaskRequestV2_0;
12922
+ type index_StartValidationArtifactsTaskResponse = StartValidationArtifactsTaskResponse;
12923
+ type index_StartValidationTaskResponse = StartValidationTaskResponse;
12924
+ type index_SwaggerGetClassificationResultResponse = SwaggerGetClassificationResultResponse;
12925
+ type index_SwaggerGetDigitizeJobResponse = SwaggerGetDigitizeJobResponse;
12926
+ type index_SwaggerGetDigitizeJobResult = SwaggerGetDigitizeJobResult;
12927
+ type index_SwaggerGetExtractionResultResponse = SwaggerGetExtractionResultResponse;
12928
+ type index_TagEntity = TagEntity;
12929
+ type index_TaggedClassifier = TaggedClassifier;
12930
+ type index_TaggedExtractor = TaggedExtractor;
12931
+ type index_TextType = TextType;
12932
+ declare const index_TextType: typeof TextType;
12933
+ type index_TrackFinishClassificationValidationRequest = TrackFinishClassificationValidationRequest;
12934
+ type index_TrackFinishExtractionValidationRequest = TrackFinishExtractionValidationRequest;
12935
+ type index_TrackStartClassificationValidationRequest = TrackStartClassificationValidationRequest;
12936
+ type index_TrackStartExtractionValidationRequest = TrackStartExtractionValidationRequest;
12937
+ type index_TypeField = TypeField;
12938
+ type index_UserData = UserData;
12939
+ type index_ValidationDisplayMode = ValidationDisplayMode;
12940
+ declare const index_ValidationDisplayMode: typeof ValidationDisplayMode;
12941
+ type index_Word = Word;
12942
+ type index_WordGroup = WordGroup;
12943
+ type index_WordGroupType = WordGroupType;
12944
+ declare const index_WordGroupType: typeof WordGroupType;
12945
+ declare namespace index {
12946
+ export { index_ActionStatus as ActionStatus, index_ClassifierDocumentTypeType as ClassifierDocumentTypeType, index_ComparisonOperator as ComparisonOperator, index_CreateTaskPriority as CreateTaskPriority, index_Criticality as Criticality, index_DocumentActionPriority as DocumentActionPriority, index_DocumentActionStatus as DocumentActionStatus, index_DocumentActionType as DocumentActionType, index_FieldType as FieldType, index_GptFieldType as GptFieldType, index_LogicalOperator as LogicalOperator, index_MarkupType as MarkupType, index_ModelKind as ModelKind, index_ModelType as ModelType, index_ProcessingSource as ProcessingSource, index_ProjectProperties as ProjectProperties, index_ProjectType as ProjectType, index_ResourceStatus as ResourceStatus, index_ResourceType as ResourceType, index_ResultsDataSource as ResultsDataSource, index_Rotation as Rotation, index_RuleType as RuleType, index_SectionType as SectionType, index_TextType as TextType, index_ValidationDisplayMode as ValidationDisplayMode, index_WordGroupType as WordGroupType };
12947
+ export type { index_ClassificationPrompt as ClassificationPrompt, index_ClassificationRequestBody as ClassificationRequestBody, index_ClassificationResponse as ClassificationResponse, index_ClassificationResult as ClassificationResult, index_ClassificationValidationConfiguration as ClassificationValidationConfiguration, index_ClassificationValidationFinishedTaskInfo as ClassificationValidationFinishedTaskInfo, index_ClassificationValidationResult as ClassificationValidationResult, index_Classifier as Classifier, index_ContentValidationData as ContentValidationData, index_DataDeletionRequest as DataDeletionRequest, index_DataSource as DataSource, index_DiscoveredDocumentType as DiscoveredDocumentType, index_DiscoveredExtractorResourceSummaryResponse as DiscoveredExtractorResourceSummaryResponse, index_DiscoveredProjectVersionResponseV2_0 as DiscoveredProjectVersionResponseV2_0, index_DiscoveredResourceSummaryResponse as DiscoveredResourceSummaryResponse, index_DocumentClassificationActionDataModel as DocumentClassificationActionDataModel, index_DocumentEntity as DocumentEntity, index_DocumentExtractionActionDataModel as DocumentExtractionActionDataModel, index_DocumentGroup as DocumentGroup, index_DocumentTaxonomy as DocumentTaxonomy, index_DocumentTypeEntity as DocumentTypeEntity, index_ErrorResponse as ErrorResponse, index_ExceptionReasonOption as ExceptionReasonOption, index_ExtractRequestBodyConfiguration as ExtractRequestBodyConfiguration, index_ExtractRequestBodyV2_0 as ExtractRequestBodyV2_0, index_ExtractSyncResult as ExtractSyncResult, index_ExtractionPrompt as ExtractionPrompt, index_ExtractionPromptRequestBody as ExtractionPromptRequestBody, index_ExtractionResult as ExtractionResult, index_ExtractionValidationArtifactsResult as ExtractionValidationArtifactsResult, index_ExtractionValidationConfigurationV2 as ExtractionValidationConfigurationV2, index_ExtractionValidationResult as ExtractionValidationResult, index_Extractor as Extractor, index_ExtractorPayload as ExtractorPayload, index_Field as Field, index_FieldGroupValueProjection as FieldGroupValueProjection, index_FieldValue as FieldValue, index_FieldValueProjection as FieldValueProjection, index_FieldValueResult as FieldValueResult, index_FinishExtractionValidationTaskInfo as FinishExtractionValidationTaskInfo, index_FolderBasedStartExtractionRequest as FolderBasedStartExtractionRequest, index_FolderBasedStartExtractionResponse as FolderBasedStartExtractionResponse, index_FolderModelsResponse as FolderModelsResponse, index_GetClassificationValidationTaskResponse as GetClassificationValidationTaskResponse, index_GetClassifierDetailsDocumentTypeResponse as GetClassifierDetailsDocumentTypeResponse, index_GetClassifierDetailsResponse as GetClassifierDetailsResponse, index_GetClassifiersResponse as GetClassifiersResponse, index_GetDocumentTypeDetailsByTagResponseV2_0 as GetDocumentTypeDetailsByTagResponseV2_0, index_GetDocumentTypeDetailsResponseV2_0 as GetDocumentTypeDetailsResponseV2_0, index_GetDocumentTypesResponse as GetDocumentTypesResponse, index_GetExtractionValidationArtifactsResultTaskResponse as GetExtractionValidationArtifactsResultTaskResponse, index_GetExtractionValidationArtifactsTaskResponse as GetExtractionValidationArtifactsTaskResponse, index_GetExtractionValidationTaskResponse as GetExtractionValidationTaskResponse, index_GetExtractorDetailsResponseV2_0 as GetExtractorDetailsResponseV2_0, index_GetExtractorsResponse as GetExtractorsResponse, index_GetModelDetailsResponse as GetModelDetailsResponse, index_GetModelsResponse as GetModelsResponse, index_GetProjectDetailsResponseV2_0 as GetProjectDetailsResponseV2_0, index_GetProjectTaxonomyResponse as GetProjectTaxonomyResponse, index_GetProjectsResponse as GetProjectsResponse, index_GetTagsResponse as GetTagsResponse, index_LanguageInfo as LanguageInfo, index_Metadata as Metadata, index_MetadataEntry as MetadataEntry, index_ModelSummaryResponse as ModelSummaryResponse, index_Page as Page, index_PageMarkup as PageMarkup, index_PageSection as PageSection, index_Project as Project, index_ReportAsExceptionSettings as ReportAsExceptionSettings, index_ResultsContentReference as ResultsContentReference, index_ResultsDataPoint as ResultsDataPoint, index_ResultsDerivedField as ResultsDerivedField, index_ResultsDocument as ResultsDocument, index_ResultsDocumentBounds as ResultsDocumentBounds, index_ResultsTable as ResultsTable, index_ResultsTableCell as ResultsTableCell, index_ResultsTableColumnInfo as ResultsTableColumnInfo, index_ResultsTableValue as ResultsTableValue, index_ResultsValue as ResultsValue, index_ResultsValueTokens as ResultsValueTokens, index_Rule as Rule, index_RuleResult as RuleResult, index_RuleSet as RuleSet, index_RuleSetResult as RuleSetResult, index_StartClassificationResponse as StartClassificationResponse, index_StartClassificationValidationTaskInfo as StartClassificationValidationTaskInfo, index_StartClassificationValidationTaskRequest as StartClassificationValidationTaskRequest, index_StartDigitizationFromAttachmentModel as StartDigitizationFromAttachmentModel, index_StartDigitizationResponse as StartDigitizationResponse, index_StartExtractionResponse as StartExtractionResponse, index_StartExtractionValidationArtifactsRequest as StartExtractionValidationArtifactsRequest, index_StartExtractionValidationTaskInfo as StartExtractionValidationTaskInfo, index_StartExtractionValidationTaskRequestV2_0 as StartExtractionValidationTaskRequestV2_0, index_StartValidationArtifactsTaskResponse as StartValidationArtifactsTaskResponse, index_StartValidationTaskResponse as StartValidationTaskResponse, index_SwaggerGetClassificationResultResponse as SwaggerGetClassificationResultResponse, index_SwaggerGetDigitizeJobResponse as SwaggerGetDigitizeJobResponse, index_SwaggerGetDigitizeJobResult as SwaggerGetDigitizeJobResult, index_SwaggerGetExtractionResultResponse as SwaggerGetExtractionResultResponse, index_TagEntity as TagEntity, index_TaggedClassifier as TaggedClassifier, index_TaggedExtractor as TaggedExtractor, index_TrackFinishClassificationValidationRequest as TrackFinishClassificationValidationRequest, index_TrackFinishExtractionValidationRequest as TrackFinishExtractionValidationRequest, index_TrackStartClassificationValidationRequest as TrackStartClassificationValidationRequest, index_TrackStartExtractionValidationRequest as TrackStartExtractionValidationRequest, index_TypeField as TypeField, index_UserData as UserData, index_Word as Word, index_WordGroup as WordGroup };
11643
12948
  }
11644
12949
 
11645
12950
  /**
@@ -11986,7 +13291,7 @@ declare const telemetryClient: TelemetryClient;
11986
13291
  * SDK Telemetry constants
11987
13292
  */
11988
13293
  declare const CONNECTION_STRING = "InstrumentationKey=a6efa11d-1feb-4508-9738-e13e12dcae5e;IngestionEndpoint=https://westeurope-5.in.applicationinsights.azure.com/;LiveEndpoint=https://westeurope.livediagnostics.monitor.azure.com/;ApplicationId=7c58eb1c-9581-4ba6-839e-11725848a037";
11989
- declare const SDK_VERSION = "1.3.4";
13294
+ declare const SDK_VERSION = "1.3.6";
11990
13295
  declare const VERSION = "Version";
11991
13296
  declare const SERVICE = "Service";
11992
13297
  declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -12001,5 +13306,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
12001
13306
  declare const SDK_RUN_EVENT = "Sdk.Run";
12002
13307
  declare const UNKNOWN = "";
12003
13308
 
12004
- export { APP_NAME, AgentMap, AssetValueScope, AssetValueType, AuthenticationError, AuthorizationError, BucketOptions, CLOUD_CLIENT_ID, CLOUD_ORGANIZATION_NAME, CLOUD_REDIRECT_URI, CLOUD_ROLE_NAME, CLOUD_TENANT_NAME, CLOUD_URL, CONNECTION_STRING, CitationErrorType, ConversationMap, DEFAULT_ITEMS_FIELD, DEFAULT_PAGE_SIZE, DEFAULT_TOTAL_COUNT_FIELD, DataDirectionType, DebugMode, EntityFieldDataType, EntityType, ErrorType, EscalationActionType, EscalationRecipientScope, EscalationTriggerType, ExchangeMap, FeedbackRating, FeedbackStatus, FieldDisplayType, HttpStatus, InputStreamSpeechSensitivity, InterruptType, JobPriority, JobSourceType, JobState, JobSubState, JobType, JoinType, LogicalOperator, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, QueryFilterOperator, RateLimitError, ReferenceType, RemoteControlAccess, RobotSize, RuntimeType, SDK_LOGGER_NAME, SDK_RUN_EVENT, SDK_SERVICE_NAME, SDK_VERSION, SERVICE, SLADurationUnit, ServerError, ServerlessJobType, SortOrder, StageTaskType, StartStrategy, StopStrategy, TargetFramework, TaskActivityType, TaskPriority, TaskSlaCriteria, TaskSlaStatus, TaskSourceName, TaskStatus, TaskType, TaskUserType, UNKNOWN, UiPath, UiPathError, UiPathMetaTags, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createJobWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
12005
- export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentInput, AgentMethods, AgentStartingPrompt, ArgumentMetadata, AssetGetAllOptions, AssetGetByIdOptions, AssetGetResponse, AssetServiceModel, AsyncInputStream, AsyncInputStreamChunkEvent, AsyncInputStreamEndEvent, AsyncInputStreamEvent, AsyncInputStreamStartEvent, AsyncToolCallStream, AttachmentGetByIdOptions, AttachmentResponse, AttachmentServiceModel, BaseConfig, BaseOptions, BaseProcessStartRequest, BlobItem, BodyOptions, BpmnXmlString, BucketGetAllOptions, BucketGetByIdOptions, BucketGetFileMetaDataOptions, BucketGetFileMetaDataResponse, BucketGetFileMetaDataWithPaginationOptions, BucketGetReadUriOptions, BucketGetResponse, BucketGetUriOptions, BucketGetUriResponse, BucketServiceModel, BucketUploadFileOptions, BucketUploadResponse, CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetStageResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstancesServiceModel, CasesServiceModel, ChoiceSetGetAllResponse, ChoiceSetGetByIdOptions, ChoiceSetGetResponse, ChoiceSetServiceModel, Citation, CitationEndEvent, CitationError, CitationEvent, CitationOptions, CitationSource, CitationSourceBase, CitationSourceMedia, CitationSourceUrl, CitationStartEvent, CollectionResponse, CompletedContentPart, CompletedMessage, CompletedToolCall, ContentPart, ContentPartChunkEvent, ContentPartData, ContentPartEndEvent, ContentPartEvent, ContentPartGetResponse, ContentPartInterrupted, ContentPartStartEvent, ContentPartStartMetaData, ContentPartStream, ConversationAttachmentCreateResponse, ConversationAttachmentUploadResponse, ConversationCreateOptions, ConversationCreateResponse, ConversationDeleteResponse, ConversationEvent, ConversationExchangeServiceModel, ConversationGetAllOptions, ConversationGetResponse, ConversationJobStartOverrides, ConversationMethods, ConversationServiceModel, ConversationSessionMethods, ConversationSessionOptions, ConversationUpdateOptions, ConversationUpdateResponse, ConversationalAgentOptions, ConversationalAgentServiceModel, CreateFeedbackOptions, CustomKeyValuePair, ElementExecutionMetadata, ElementMetaData, ElementRunMetadata, EntityBatchInsertOptions, EntityBatchInsertResponse, EntityCreateFieldOptions, EntityCreateOptions, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFieldBase, EntityFieldUpdateOptions, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityImportRecordsResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityQueryFilter, EntityQueryFilterGroup, EntityQueryRecordsOptions, EntityQueryRecordsResponse, EntityQuerySortOption, EntityRecord, EntityRemoveFieldOptions, EntityServiceModel, EntityUpdateByIdOptions, EntityUpdateOptions, EntityUpdateRecordOptions, EntityUpdateRecordResponse, EntityUpdateRecordsOptions, EntityUpdateResponse, EntityUploadAttachmentOptions, EntityUploadAttachmentResponse, ErrorEndEvent, ErrorEvent, ErrorStartEvent, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, Exchange, ExchangeEndEvent, ExchangeEvent, ExchangeGetAllOptions, ExchangeGetByIdOptions, ExchangeGetResponse, ExchangeServiceModel, ExchangeStartEvent, ExchangeStream, ExternalConnection, ExternalField, ExternalFieldMapping, ExternalObject, ExternalSourceFields, ExternalValue, FailureRecord, FeatureFlags, FeedbackCategory, FeedbackCreateResponse, FeedbackGetAllOptions, FeedbackGetResponse, FeedbackServiceModel, Field, FieldDataType, FieldMetaData, FileUploadAccess, FolderProperties, GenericInterruptStartEvent, GlobalVariableMetaData, HasPaginationOptions, Headers, HttpMethod, InlineOrExternalValue, InlineValue, Interrupt, InterruptEndEvent, InterruptEvent, InterruptStartEvent, JSONArray, JSONObject, JSONPrimitive, JSONValue, JobAttachment, JobError, JobGetAllOptions, JobGetByIdOptions, JobGetResponse, JobMethods, JobResumeOptions, JobServiceModel, JobStopOptions, LabelUpdatedEvent, Machine, MaestroProcessGetAllResponse, MaestroProcessesServiceModel, MakeOptional, MakeRequired, Message, MessageEndEvent, MessageEvent, MessageGetResponse, MessageServiceModel, MessageStartEvent, MessageStream, MetaData, MetaEvent, NonPaginatedResponse, OAuthFields, OperationResponse, PaginatedResponse, PaginationCursor, PaginationMetadata, PaginationMethodUnion, PaginationOptions, PartialUiPathConfig, ProcessGetAllOptions, ProcessGetByIdOptions, ProcessGetResponse, ProcessIncidentGetAllResponse, ProcessIncidentGetResponse, ProcessIncidentsServiceModel, ProcessInstanceExecutionHistoryResponse, ProcessInstanceGetAllOptions, ProcessInstanceGetAllWithPaginationOptions, ProcessInstanceGetResponse, ProcessInstanceGetVariablesOptions, ProcessInstanceGetVariablesResponse, ProcessInstanceMethods, ProcessInstanceOperationOptions, ProcessInstanceOperationResponse, ProcessInstanceRun, ProcessInstancesServiceModel, ProcessMetadata, ProcessMethods, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, QueryParams, QueueGetAllOptions, QueueGetByIdOptions, QueueGetResponse, QueueServiceModel, RawAgentGetByIdResponse, RawAgentGetResponse, RawCaseInstanceGetResponse, RawConversationGetResponse, RawEntityGetResponse, RawJobGetResponse, RawMaestroProcessGetAllResponse, RawProcessInstanceGetResponse, RawTaskCreateResponse, RawTaskGetResponse, RequestOptions, RequestSpec, ResponseDictionary, ResponseType, RetryOptions, RobotMetadata, SessionCapabilities, SessionEndEvent, SessionEndingEvent, SessionStartEvent, SessionStartedEvent, SessionStream, Simplify, SourceJoinCriteria, SqlType, StageSLA, StageTask, Tag, TaskActivity, TaskAssignOptions, TaskAssignment, TaskAssignmentOptions, TaskAssignmentResponse, TaskBaseResponse, TaskCompleteOptions, TaskCompletionOptions, TaskCreateOptions, TaskCreateResponse, TaskGetAllOptions, TaskGetByIdOptions, TaskGetResponse, TaskGetUsersOptions, TaskMethods, TaskServiceModel, TaskSlaDetail, TaskSource, TasksUnassignOptions, TimeoutOptions, ToolCall, ToolCallConfirmationEndValue, ToolCallConfirmationInterruptStartEvent, ToolCallConfirmationValue, ToolCallEndEvent, ToolCallEvent, ToolCallInputValue, ToolCallOutputValue, ToolCallResult, ToolCallStartEvent, ToolCallStream, UiPathSDKConfig, UserLoginInfo, UserServiceModel, UserSettingsGetResponse, UserSettingsUpdateOptions, UserSettingsUpdateResponse };
13309
+ export { APP_NAME, AgentMap, AssetValueScope, AssetValueType, AuthenticationError, AuthorizationError, BucketOptions, CLOUD_CLIENT_ID, CLOUD_ORGANIZATION_NAME, CLOUD_REDIRECT_URI, CLOUD_ROLE_NAME, CLOUD_TENANT_NAME, CLOUD_URL, CONNECTION_STRING, CitationErrorType, ConversationMap, DEFAULT_ITEMS_FIELD, DEFAULT_PAGE_SIZE, DEFAULT_TOTAL_COUNT_FIELD, DataDirectionType, DebugMode, index as DuFramework, EntityFieldDataType, EntityType, ErrorType, EscalationActionType, EscalationRecipientScope, EscalationTriggerType, ExchangeMap, FeedbackRating, FeedbackStatus, FieldDisplayType, HttpStatus, InputStreamSpeechSensitivity, InterruptType, JobPriority, JobSourceType, JobState, JobSubState, JobType, JoinType, LogicalOperator$1 as LogicalOperator, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, QueryFilterOperator, RateLimitError, ReferenceType, RemoteControlAccess, RobotSize, RuntimeType, SDK_LOGGER_NAME, SDK_RUN_EVENT, SDK_SERVICE_NAME, SDK_VERSION, SERVICE, SLADurationUnit, ServerError, ServerlessJobType, SortOrder, StageTaskType, StartStrategy, StopStrategy, TargetFramework, TaskActivityType, TaskPriority, TaskSlaCriteria, TaskSlaStatus, TaskSourceName, TaskStatus, TaskType, TaskUserType, UNKNOWN, UiPath, UiPathError, UiPathMetaTags, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createJobWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
13310
+ export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentInput, AgentMethods, AgentStartingPrompt, ArgumentMetadata, AssetGetAllOptions, AssetGetByIdOptions, AssetGetResponse, AssetServiceModel, AsyncInputStream, AsyncInputStreamChunkEvent, AsyncInputStreamEndEvent, AsyncInputStreamEvent, AsyncInputStreamStartEvent, AsyncToolCallStream, AttachmentGetByIdOptions, AttachmentResponse, AttachmentServiceModel, BaseConfig, BaseOptions, BaseProcessStartRequest, BlobItem, BodyOptions, BpmnXmlString, BucketGetAllOptions, BucketGetByIdOptions, BucketGetFileMetaDataOptions, BucketGetFileMetaDataResponse, BucketGetFileMetaDataWithPaginationOptions, BucketGetReadUriOptions, BucketGetResponse, BucketGetUriOptions, BucketGetUriResponse, BucketServiceModel, BucketUploadFileOptions, BucketUploadResponse, CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetStageResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstancesServiceModel, CasesServiceModel, ChoiceSetGetAllResponse, ChoiceSetGetByIdOptions, ChoiceSetGetResponse, ChoiceSetServiceModel, Citation, CitationEndEvent, CitationError, CitationEvent, CitationOptions, CitationSource, CitationSourceBase, CitationSourceMedia, CitationSourceUrl, CitationStartEvent, CollectionResponse, CompletedContentPart, CompletedMessage, CompletedToolCall, ContentPart, ContentPartChunkEvent, ContentPartData, ContentPartEndEvent, ContentPartEvent, ContentPartGetResponse, ContentPartInterrupted, ContentPartStartEvent, ContentPartStartMetaData, ContentPartStream, ConversationAttachmentCreateResponse, ConversationAttachmentUploadResponse, ConversationCreateOptions, ConversationCreateResponse, ConversationDeleteResponse, ConversationEvent, ConversationExchangeServiceModel, ConversationGetAllOptions, ConversationGetResponse, ConversationJobStartOverrides, ConversationMethods, ConversationServiceModel, ConversationSessionMethods, ConversationSessionOptions, ConversationUpdateOptions, ConversationUpdateResponse, ConversationalAgentOptions, ConversationalAgentServiceModel, CreateFeedbackOptions, CustomKeyValuePair, ElementExecutionMetadata, ElementMetaData, ElementRunMetadata, EntityBatchInsertOptions, EntityBatchInsertResponse, EntityCreateFieldOptions, EntityCreateOptions, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFieldBase, EntityFieldUpdateOptions, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityImportRecordsResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityQueryFilter, EntityQueryFilterGroup, EntityQueryRecordsOptions, EntityQueryRecordsResponse, EntityQuerySortOption, EntityRecord, EntityRemoveFieldOptions, EntityServiceModel, EntityUpdateByIdOptions, EntityUpdateOptions, EntityUpdateRecordOptions, EntityUpdateRecordResponse, EntityUpdateRecordsOptions, EntityUpdateResponse, EntityUploadAttachmentOptions, EntityUploadAttachmentResponse, ErrorEndEvent, ErrorEvent, ErrorStartEvent, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, Exchange, ExchangeEndEvent, ExchangeEvent, ExchangeGetAllOptions, ExchangeGetByIdOptions, ExchangeGetResponse, ExchangeServiceModel, ExchangeStartEvent, ExchangeStream, ExternalConnection, ExternalField, ExternalFieldMapping, ExternalObject, ExternalSourceFields, ExternalValue, FailureRecord, FeatureFlags, FeedbackCategory, FeedbackCreateResponse, FeedbackGetAllOptions, FeedbackGetResponse, FeedbackOptions, FeedbackServiceModel, Field$1 as Field, FieldDataType, FieldMetaData, FileUploadAccess, FolderProperties, GenericInterruptStartEvent, GlobalVariableMetaData, HasPaginationOptions, Headers, HttpMethod, InlineOrExternalValue, InlineValue, Interrupt, InterruptEndEvent, InterruptEvent, InterruptStartEvent, JSONArray, JSONObject, JSONPrimitive, JSONValue, JobAttachment, JobError, JobGetAllOptions, JobGetByIdOptions, JobGetResponse, JobMethods, JobResumeOptions, JobServiceModel, JobStopOptions, LabelUpdatedEvent, Machine, MaestroProcessGetAllResponse, MaestroProcessesServiceModel, MakeOptional, MakeRequired, Message, MessageEndEvent, MessageEvent, MessageGetResponse, MessageServiceModel, MessageStartEvent, MessageStream, MetaData, MetaEvent, NonPaginatedResponse, OAuthFields, OperationResponse, PaginatedResponse, PaginationCursor, PaginationMetadata, PaginationMethodUnion, PaginationOptions, PartialUiPathConfig, ProcessGetAllOptions, ProcessGetByIdOptions, ProcessGetResponse, ProcessIncidentGetAllResponse, ProcessIncidentGetResponse, ProcessIncidentsServiceModel, ProcessInstanceExecutionHistoryResponse, ProcessInstanceGetAllOptions, ProcessInstanceGetAllWithPaginationOptions, ProcessInstanceGetResponse, ProcessInstanceGetVariablesOptions, ProcessInstanceGetVariablesResponse, ProcessInstanceMethods, ProcessInstanceOperationOptions, ProcessInstanceOperationResponse, ProcessInstanceRun, ProcessInstancesServiceModel, ProcessMetadata, ProcessMethods, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, QueryParams, QueueGetAllOptions, QueueGetByIdOptions, QueueGetResponse, QueueServiceModel, RawAgentGetByIdResponse, RawAgentGetResponse, RawCaseInstanceGetResponse, RawConversationGetResponse, RawEntityGetResponse, RawJobGetResponse, RawMaestroProcessGetAllResponse, RawProcessInstanceGetResponse, RawTaskCreateResponse, RawTaskGetResponse, RequestOptions, RequestSpec, ResponseDictionary, ResponseType, RetryOptions, RobotMetadata, SessionCapabilities, SessionEndEvent, SessionEndingEvent, SessionStartEvent, SessionStartedEvent, SessionStream, Simplify, SourceJoinCriteria, SqlType, StageSLA, StageTask, Tag, TaskActivity, TaskAssignOptions, TaskAssignment, TaskAssignmentOptions, TaskAssignmentResponse, TaskBaseResponse, TaskCompleteOptions, TaskCompletionOptions, TaskCreateOptions, TaskCreateResponse, TaskGetAllOptions, TaskGetByIdOptions, TaskGetResponse, TaskGetUsersOptions, TaskMethods, TaskServiceModel, TaskSlaDetail, TaskSource, TasksUnassignOptions, TimeoutOptions, ToolCall, ToolCallConfirmationEndValue, ToolCallConfirmationInterruptStartEvent, ToolCallConfirmationValue, ToolCallEndEvent, ToolCallEvent, ToolCallInputValue, ToolCallOutputValue, ToolCallResult, ToolCallStartEvent, ToolCallStream, UiPathSDKConfig, UserLoginInfo, UserServiceModel, UserSettingsGetResponse, UserSettingsUpdateOptions, UserSettingsUpdateResponse };