@uipath/uipath-typescript 1.3.3 → 1.3.5
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/assets/index.cjs +8 -1
- package/dist/assets/index.mjs +8 -1
- package/dist/attachments/index.cjs +8 -1
- package/dist/attachments/index.mjs +8 -1
- package/dist/buckets/index.cjs +8 -1
- package/dist/buckets/index.mjs +8 -1
- package/dist/cases/index.cjs +8 -1
- package/dist/cases/index.mjs +8 -1
- package/dist/conversational-agent/index.cjs +8 -1
- package/dist/conversational-agent/index.d.ts +29 -2
- package/dist/conversational-agent/index.mjs +8 -1
- package/dist/core/index.cjs +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.mjs +1 -1
- package/dist/document-understanding/index.cjs +257 -0
- package/dist/document-understanding/index.d.ts +1185 -0
- package/dist/document-understanding/index.mjs +255 -0
- package/dist/entities/index.cjs +277 -15
- package/dist/entities/index.d.ts +135 -0
- package/dist/entities/index.mjs +277 -15
- package/dist/feedback/index.cjs +8 -1
- package/dist/feedback/index.mjs +8 -1
- package/dist/index.cjs +578 -15
- package/dist/index.d.ts +1384 -9
- package/dist/index.mjs +580 -18
- package/dist/index.umd.js +578 -15
- package/dist/jobs/index.cjs +54 -1
- package/dist/jobs/index.d.ts +52 -0
- package/dist/jobs/index.mjs +54 -1
- package/dist/maestro-processes/index.cjs +8 -1
- package/dist/maestro-processes/index.mjs +8 -1
- package/dist/processes/index.cjs +8 -1
- package/dist/processes/index.mjs +8 -1
- package/dist/queues/index.cjs +8 -1
- package/dist/queues/index.mjs +8 -1
- package/dist/tasks/index.cjs +8 -1
- package/dist/tasks/index.mjs +8 -1
- package/package.json +12 -2
package/dist/index.d.ts
CHANGED
|
@@ -570,7 +570,7 @@ interface EntityDeleteRecordsOptions extends EntityDeleteOptions {
|
|
|
570
570
|
/**
|
|
571
571
|
* Logical operator for combining query filter groups
|
|
572
572
|
*/
|
|
573
|
-
declare enum LogicalOperator {
|
|
573
|
+
declare enum LogicalOperator$1 {
|
|
574
574
|
/** Combine conditions with AND — all conditions must match */
|
|
575
575
|
And = 0,
|
|
576
576
|
/** Combine conditions with OR — any condition must match */
|
|
@@ -615,9 +615,9 @@ interface EntityQueryFilter {
|
|
|
615
615
|
*/
|
|
616
616
|
interface EntityQueryFilterGroup {
|
|
617
617
|
/** Logical operator applied between filters in `queryFilters` (default: AND) */
|
|
618
|
-
logicalOperator?: LogicalOperator;
|
|
618
|
+
logicalOperator?: LogicalOperator$1;
|
|
619
619
|
/** Logical operator applied between sibling filter groups (default: AND) */
|
|
620
|
-
continueLogicalOperator?: LogicalOperator;
|
|
620
|
+
continueLogicalOperator?: LogicalOperator$1;
|
|
621
621
|
/** Array of filter conditions */
|
|
622
622
|
queryFilters?: EntityQueryFilter[];
|
|
623
623
|
/** Nested filter groups for complex boolean expressions */
|
|
@@ -675,6 +675,14 @@ interface EntityFieldBase {
|
|
|
675
675
|
isEncrypted?: boolean;
|
|
676
676
|
/** Default value for the field */
|
|
677
677
|
defaultValue?: string;
|
|
678
|
+
/** Maximum character length for STRING fields (default: 200, range: 1–4000) and MULTILINE_TEXT fields (default: 200, range: 1–10000). */
|
|
679
|
+
lengthLimit?: number;
|
|
680
|
+
/** 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) */
|
|
681
|
+
maxValue?: number;
|
|
682
|
+
/** 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) */
|
|
683
|
+
minValue?: number;
|
|
684
|
+
/** Number of decimal places for DECIMAL, FLOAT, and DOUBLE fields (default: 2, range: 0–10) */
|
|
685
|
+
decimalPrecision?: number;
|
|
678
686
|
}
|
|
679
687
|
/**
|
|
680
688
|
* User-facing field definition for creating or updating entity schemas
|
|
@@ -873,7 +881,7 @@ declare enum JoinType {
|
|
|
873
881
|
/**
|
|
874
882
|
* Field reference with ID
|
|
875
883
|
*/
|
|
876
|
-
interface Field {
|
|
884
|
+
interface Field$1 {
|
|
877
885
|
id: string;
|
|
878
886
|
definition?: FieldMetaData;
|
|
879
887
|
}
|
|
@@ -918,7 +926,7 @@ interface FieldMetaData {
|
|
|
918
926
|
referenceName?: string;
|
|
919
927
|
referenceEntity?: RawEntityGetResponse;
|
|
920
928
|
referenceChoiceSet?: RawEntityGetResponse;
|
|
921
|
-
referenceField?: Field;
|
|
929
|
+
referenceField?: Field$1;
|
|
922
930
|
referenceType?: ReferenceType;
|
|
923
931
|
choiceSetId?: string;
|
|
924
932
|
defaultValue?: string;
|
|
@@ -1282,6 +1290,8 @@ interface EntityServiceModel {
|
|
|
1282
1290
|
/**
|
|
1283
1291
|
* Deletes data from an entity by entity ID
|
|
1284
1292
|
*
|
|
1293
|
+
* Note: Records deleted using deleteRecordsById will not trigger Data Fabric trigger events. Use {@link deleteRecordById} if you need trigger events to fire for the deleted record.
|
|
1294
|
+
*
|
|
1285
1295
|
* @param id - UUID of the entity
|
|
1286
1296
|
* @param recordIds - Array of record UUIDs to delete
|
|
1287
1297
|
* @param options - Delete options
|
|
@@ -1296,6 +1306,25 @@ interface EntityServiceModel {
|
|
|
1296
1306
|
* ```
|
|
1297
1307
|
*/
|
|
1298
1308
|
deleteRecordsById(id: string, recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
|
|
1309
|
+
/**
|
|
1310
|
+
* Deletes a single record from an entity by entity ID and record ID
|
|
1311
|
+
*
|
|
1312
|
+
* Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
|
|
1313
|
+
* Use this method if you need trigger events to fire for the deleted record.
|
|
1314
|
+
*
|
|
1315
|
+
* @param entityId - UUID of the entity
|
|
1316
|
+
* @param recordId - UUID of the record to delete
|
|
1317
|
+
* @returns Promise resolving to void on success
|
|
1318
|
+
* @example
|
|
1319
|
+
* ```typescript
|
|
1320
|
+
* import { Entities } from '@uipath/uipath-typescript/entities';
|
|
1321
|
+
*
|
|
1322
|
+
* const entities = new Entities(sdk);
|
|
1323
|
+
*
|
|
1324
|
+
* await entities.deleteRecordById("<entityId>", "<recordId>");
|
|
1325
|
+
* ```
|
|
1326
|
+
*/
|
|
1327
|
+
deleteRecordById(entityId: string, recordId: string): Promise<void>;
|
|
1299
1328
|
/**
|
|
1300
1329
|
* Queries entity records with filters, sorting, and SDK-managed pagination
|
|
1301
1330
|
*
|
|
@@ -1481,6 +1510,13 @@ interface EntityServiceModel {
|
|
|
1481
1510
|
* { fieldName: "product_name", type: EntityFieldDataType.STRING, isRequired: true, isUnique: true },
|
|
1482
1511
|
* { fieldName: "price", type: EntityFieldDataType.INTEGER, defaultValue: "0" },
|
|
1483
1512
|
* ], { displayName: "Product Catalog", description: "Our product catalog", isRbacEnabled: true });
|
|
1513
|
+
*
|
|
1514
|
+
* // With advanced sqlType constraints (lengthLimit, decimalPrecision, maxValue, minValue) and defaultValue
|
|
1515
|
+
* const ordersId = await entities.create("orders", [
|
|
1516
|
+
* { fieldName: "product_name", type: EntityFieldDataType.STRING, isRequired: true, isUnique: true, lengthLimit: 500 },
|
|
1517
|
+
* { fieldName: "price", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
|
|
1518
|
+
* { fieldName: "quantity", type: EntityFieldDataType.INTEGER, maxValue: 10000, minValue: 1, defaultValue: "0" },
|
|
1519
|
+
* ]);
|
|
1484
1520
|
* ```
|
|
1485
1521
|
* @internal
|
|
1486
1522
|
*/
|
|
@@ -1528,6 +1564,17 @@ interface EntityServiceModel {
|
|
|
1528
1564
|
* updateFields: [{ id: <fieldId>, displayName: "Unit Price", isRequired: true }],
|
|
1529
1565
|
* displayName: "Price Catalog",
|
|
1530
1566
|
* });
|
|
1567
|
+
*
|
|
1568
|
+
* // Add a STRING/DECIMAL field with explicit advanced sqlType constraints and defaultValue
|
|
1569
|
+
* await entities.updateById(<id>, {
|
|
1570
|
+
* addFields: [
|
|
1571
|
+
* { fieldName: "summary", type: EntityFieldDataType.STRING, lengthLimit: 500, defaultValue: "summary" },
|
|
1572
|
+
* { fieldName: "amount", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
|
|
1573
|
+
* ],
|
|
1574
|
+
* updateFields: [
|
|
1575
|
+
* { id: <fieldId>, lengthLimit: 1000 },
|
|
1576
|
+
* ],
|
|
1577
|
+
* });
|
|
1531
1578
|
* ```
|
|
1532
1579
|
* @internal
|
|
1533
1580
|
*/
|
|
@@ -1586,11 +1633,23 @@ interface EntityMethods {
|
|
|
1586
1633
|
/**
|
|
1587
1634
|
* Delete data from this entity
|
|
1588
1635
|
*
|
|
1636
|
+
* Note: Records deleted using deleteRecords will not trigger Data Fabric trigger events. Use {@link deleteRecord} if you need trigger events to fire for the deleted record.
|
|
1637
|
+
*
|
|
1589
1638
|
* @param recordIds - Array of record UUIDs to delete
|
|
1590
1639
|
* @param options - Delete options
|
|
1591
1640
|
* @returns Promise resolving to delete response
|
|
1592
1641
|
*/
|
|
1593
1642
|
deleteRecords(recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
|
|
1643
|
+
/**
|
|
1644
|
+
* Delete a single record from this entity
|
|
1645
|
+
*
|
|
1646
|
+
* Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
|
|
1647
|
+
* Use this method if you need trigger events to fire for the deleted record.
|
|
1648
|
+
*
|
|
1649
|
+
* @param recordId - UUID of the record to delete
|
|
1650
|
+
* @returns Promise resolving to void on success
|
|
1651
|
+
*/
|
|
1652
|
+
deleteRecord(recordId: string): Promise<void>;
|
|
1594
1653
|
/**
|
|
1595
1654
|
* Get all records from this entity
|
|
1596
1655
|
*
|
|
@@ -1705,6 +1764,14 @@ interface EntityMethods {
|
|
|
1705
1764
|
* displayName: "Updated Name",
|
|
1706
1765
|
* addFields: [{ fieldName: "notes", type: EntityFieldDataType.MULTILINE_TEXT }],
|
|
1707
1766
|
* });
|
|
1767
|
+
*
|
|
1768
|
+
* // Add a STRING/DECIMAL field with explicit advanced sqlType constraints
|
|
1769
|
+
* await entity.update({
|
|
1770
|
+
* addFields: [
|
|
1771
|
+
* { fieldName: "summary", type: EntityFieldDataType.STRING, lengthLimit: 500, defaultValue: "string" },
|
|
1772
|
+
* { fieldName: "amount", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
|
|
1773
|
+
* ],
|
|
1774
|
+
* });
|
|
1708
1775
|
* ```
|
|
1709
1776
|
* @internal
|
|
1710
1777
|
*/
|
|
@@ -1924,6 +1991,8 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
1924
1991
|
/**
|
|
1925
1992
|
* Deletes data from an entity by entity ID
|
|
1926
1993
|
*
|
|
1994
|
+
* Note: Records deleted using deleteRecordsById will not trigger Data Fabric trigger events. Use {@link deleteRecordById} if you need trigger events to fire for the deleted record.
|
|
1995
|
+
*
|
|
1927
1996
|
* @param entityId - UUID of the entity
|
|
1928
1997
|
* @param recordIds - Array of record UUIDs to delete
|
|
1929
1998
|
* @param options - Delete options
|
|
@@ -1942,6 +2011,25 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
1942
2011
|
* ```
|
|
1943
2012
|
*/
|
|
1944
2013
|
deleteRecordsById(id: string, recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
|
|
2014
|
+
/**
|
|
2015
|
+
* Deletes a single record from an entity by entity ID and record ID
|
|
2016
|
+
*
|
|
2017
|
+
* Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
|
|
2018
|
+
* Use this method if you need trigger events to fire for the deleted record.
|
|
2019
|
+
*
|
|
2020
|
+
* @param entityId - UUID of the entity
|
|
2021
|
+
* @param recordId - UUID of the record to delete
|
|
2022
|
+
* @returns Promise resolving to void on success
|
|
2023
|
+
* @example
|
|
2024
|
+
* ```typescript
|
|
2025
|
+
* import { Entities } from '@uipath/uipath-typescript/entities';
|
|
2026
|
+
*
|
|
2027
|
+
* const entities = new Entities(sdk);
|
|
2028
|
+
*
|
|
2029
|
+
* await entities.deleteRecordById("<entityId>", "<recordId>");
|
|
2030
|
+
* ```
|
|
2031
|
+
*/
|
|
2032
|
+
deleteRecordById(entityId: string, recordId: string): Promise<void>;
|
|
1945
2033
|
/**
|
|
1946
2034
|
* Gets all entities in the system
|
|
1947
2035
|
*
|
|
@@ -2140,6 +2228,13 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
2140
2228
|
* { fieldName: "product_name", type: EntityFieldDataType.STRING, isRequired: true, isUnique: true },
|
|
2141
2229
|
* { fieldName: "price", type: EntityFieldDataType.INTEGER, defaultValue: "0" },
|
|
2142
2230
|
* ], { displayName: "Product Catalog", description: "Our product catalog", isRbacEnabled: true });
|
|
2231
|
+
*
|
|
2232
|
+
* // With advanced sqlType constraints (lengthLimit, decimalPrecision, maxValue, minValue) and defaultValue
|
|
2233
|
+
* const ordersId = await entities.create("orders", [
|
|
2234
|
+
* { fieldName: "product_name", type: EntityFieldDataType.STRING, isRequired: true, isUnique: true, lengthLimit: 500 },
|
|
2235
|
+
* { fieldName: "price", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
|
|
2236
|
+
* { fieldName: "quantity", type: EntityFieldDataType.INTEGER, maxValue: 10000, minValue: 1, defaultValue: "0" },
|
|
2237
|
+
* ]);
|
|
2143
2238
|
* ```
|
|
2144
2239
|
* @internal
|
|
2145
2240
|
*/
|
|
@@ -2191,6 +2286,17 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
2191
2286
|
* updateFields: [{ id: "<fieldId>", displayName: "Unit Price", isRequired: true }],
|
|
2192
2287
|
* displayName: "Price Catalog",
|
|
2193
2288
|
* });
|
|
2289
|
+
*
|
|
2290
|
+
* // Add a STRING/DECIMAL field with explicit advanced sqlType constraints and defaultValue
|
|
2291
|
+
* await entities.updateById("<entityId>", {
|
|
2292
|
+
* addFields: [
|
|
2293
|
+
* { fieldName: "summary", type: EntityFieldDataType.STRING, lengthLimit: 500, defaultValue: "summary" },
|
|
2294
|
+
* { fieldName: "amount", type: EntityFieldDataType.DECIMAL, decimalPrecision: 4, maxValue: 999999, minValue: 0 },
|
|
2295
|
+
* ],
|
|
2296
|
+
* updateFields: [
|
|
2297
|
+
* { id: "<fieldId>", lengthLimit: 1000 },
|
|
2298
|
+
* ],
|
|
2299
|
+
* });
|
|
2194
2300
|
* ```
|
|
2195
2301
|
* @internal
|
|
2196
2302
|
*/
|
|
@@ -2217,6 +2323,13 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
2217
2323
|
* @private
|
|
2218
2324
|
*/
|
|
2219
2325
|
private mapFieldTypes;
|
|
2326
|
+
/**
|
|
2327
|
+
* Resolves an {@link EntityFieldDataType} from a field's `fieldDisplayType` and
|
|
2328
|
+
* raw SQL type name. Prefers `fieldDisplayType` to disambiguate types that
|
|
2329
|
+
* share a SQL type (FILE, CHOICE_SET_*, AUTO_NUMBER, RELATIONSHIP); falls back
|
|
2330
|
+
* to the SQL-type-name mapping. Returns `undefined` if neither resolves.
|
|
2331
|
+
*/
|
|
2332
|
+
private tryResolveFieldDataType;
|
|
2220
2333
|
/**
|
|
2221
2334
|
* Transforms nested reference objects in field metadata
|
|
2222
2335
|
*/
|
|
@@ -2230,6 +2343,28 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
2230
2343
|
private mapExternalFields;
|
|
2231
2344
|
/** Converts a user-facing EntityCreateFieldOptions to the raw API field payload */
|
|
2232
2345
|
private buildSchemaFieldPayload;
|
|
2346
|
+
/**
|
|
2347
|
+
* Derives the user-facing {@link EntityFieldDataType} for a field on the raw
|
|
2348
|
+
* API response. Throws if the field's `fieldDisplayType` and `sqlType.name`
|
|
2349
|
+
* are both unmappable.
|
|
2350
|
+
*/
|
|
2351
|
+
private resolveFieldDataType;
|
|
2352
|
+
/**
|
|
2353
|
+
* Validates that the user-supplied constraint properties on a field are
|
|
2354
|
+
* supported by the field's data type. Throws a `ValidationError` listing
|
|
2355
|
+
* any unsupported properties.
|
|
2356
|
+
*/
|
|
2357
|
+
private validateFieldConstraints;
|
|
2358
|
+
/**
|
|
2359
|
+
* Returns the sqlType constraint fields for a given field type.
|
|
2360
|
+
*
|
|
2361
|
+
* The API requires specific constraint properties to be set per SQL type;
|
|
2362
|
+
* without them the field is stored in an incomplete state, causing
|
|
2363
|
+
* "Field type cannot be changed" errors when the UI later tries to edit
|
|
2364
|
+
* advanced options. User-supplied values from `EntityCreateFieldOptions`
|
|
2365
|
+
* override the defaults where the type accepts overrides.
|
|
2366
|
+
*/
|
|
2367
|
+
private buildSqlTypeConstraints;
|
|
2233
2368
|
private static readonly RESERVED_FIELD_NAMES;
|
|
2234
2369
|
private validateName;
|
|
2235
2370
|
}
|
|
@@ -6118,6 +6253,29 @@ interface JobServiceModel {
|
|
|
6118
6253
|
* ```
|
|
6119
6254
|
*/
|
|
6120
6255
|
resume(jobKey: string, folderId: number, options?: JobResumeOptions): Promise<void>;
|
|
6256
|
+
/**
|
|
6257
|
+
* Restarts a job in a final state (Successful, Faulted, or Stopped).
|
|
6258
|
+
*
|
|
6259
|
+
* Creates a **new** job execution from a previously successful, faulted, or stopped job.
|
|
6260
|
+
* The new job has its own unique `key`, starts in `Pending` state, and uses
|
|
6261
|
+
* the same process and input arguments as the original job.
|
|
6262
|
+
*
|
|
6263
|
+
* To monitor the new job's progress, poll with {@link getById}
|
|
6264
|
+
* using the returned job's key until the state reaches a final value.
|
|
6265
|
+
*
|
|
6266
|
+
* @param jobKey - The unique key (GUID) of the job to restart
|
|
6267
|
+
* @param folderId - The folder ID where the job resides
|
|
6268
|
+
* @returns Promise resolving to the new {@link JobGetResponse} with full job details
|
|
6269
|
+
*
|
|
6270
|
+
* @example
|
|
6271
|
+
* ```typescript
|
|
6272
|
+
* // Restart a faulted job
|
|
6273
|
+
* const newJob = await jobs.restart(<jobKey>, <folderId>);
|
|
6274
|
+
* console.log(newJob.state); // 'Pending'
|
|
6275
|
+
* console.log(newJob.key); // new job key (different from original)
|
|
6276
|
+
* ```
|
|
6277
|
+
*/
|
|
6278
|
+
restart(jobKey: string, folderId: number): Promise<JobGetResponse>;
|
|
6121
6279
|
}
|
|
6122
6280
|
/**
|
|
6123
6281
|
* Methods available on job response objects.
|
|
@@ -6170,6 +6328,12 @@ interface JobMethods {
|
|
|
6170
6328
|
* @returns Promise that resolves when the job is resumed successfully, or rejects on failure
|
|
6171
6329
|
*/
|
|
6172
6330
|
resume(options?: JobResumeOptions): Promise<void>;
|
|
6331
|
+
/**
|
|
6332
|
+
* Restarts this job, creating a new execution with a new key.
|
|
6333
|
+
*
|
|
6334
|
+
* @returns Promise resolving to the new {@link JobGetResponse} with full job details
|
|
6335
|
+
*/
|
|
6336
|
+
restart(): Promise<JobGetResponse>;
|
|
6173
6337
|
}
|
|
6174
6338
|
/**
|
|
6175
6339
|
* Creates a job response with bound methods.
|
|
@@ -7141,6 +7305,12 @@ interface ExternalValue {
|
|
|
7141
7305
|
* from which the data can be downloaded.
|
|
7142
7306
|
*/
|
|
7143
7307
|
type InlineOrExternalValue<T> = InlineValue<T> | ExternalValue;
|
|
7308
|
+
/**
|
|
7309
|
+
* Input arguments passed in to the execution of the agent on each exchange. The input arguments are
|
|
7310
|
+
* expected to match the input-schema defined in the Agent definition. Currently, only inline values
|
|
7311
|
+
* are supported and the total serialized JSON payload must be less than 4,000 characters.
|
|
7312
|
+
*/
|
|
7313
|
+
type AgentInput = InlineValue<JSONObject>;
|
|
7144
7314
|
/**
|
|
7145
7315
|
* Tool call input value type.
|
|
7146
7316
|
*/
|
|
@@ -7512,6 +7682,10 @@ interface RawConversationGetResponse {
|
|
|
7512
7682
|
* Whether the conversation's job is running locally.
|
|
7513
7683
|
*/
|
|
7514
7684
|
isLocalJobExecution?: boolean;
|
|
7685
|
+
/**
|
|
7686
|
+
* Optional agent input arguments for the conversation.
|
|
7687
|
+
*/
|
|
7688
|
+
agentInput?: AgentInput;
|
|
7515
7689
|
}
|
|
7516
7690
|
|
|
7517
7691
|
/**
|
|
@@ -10426,7 +10600,7 @@ interface ConversationServiceModel {
|
|
|
10426
10600
|
* @param options - Optional settings for the conversation
|
|
10427
10601
|
* @returns Promise resolving to {@link ConversationCreateResponse} with bound methods
|
|
10428
10602
|
*
|
|
10429
|
-
* @example
|
|
10603
|
+
* @example Basic usage
|
|
10430
10604
|
* ```typescript
|
|
10431
10605
|
* const conversation = await conversationalAgent.conversations.create(
|
|
10432
10606
|
* agentId,
|
|
@@ -10443,6 +10617,19 @@ interface ConversationServiceModel {
|
|
|
10443
10617
|
* // Delete the conversation
|
|
10444
10618
|
* await conversation.delete();
|
|
10445
10619
|
* ```
|
|
10620
|
+
*
|
|
10621
|
+
* @example With agent input arguments
|
|
10622
|
+
* ```typescript
|
|
10623
|
+
* const conversation = await conversationalAgent.conversations.create(
|
|
10624
|
+
* agentId,
|
|
10625
|
+
* folderId,
|
|
10626
|
+
* {
|
|
10627
|
+
* agentInput: {
|
|
10628
|
+
* inline: { userId: 'user-123', language: 'en' }
|
|
10629
|
+
* }
|
|
10630
|
+
* }
|
|
10631
|
+
* );
|
|
10632
|
+
* ```
|
|
10446
10633
|
*/
|
|
10447
10634
|
create(agentId: number, folderId: number, options?: ConversationCreateOptions): Promise<ConversationCreateResponse>;
|
|
10448
10635
|
/**
|
|
@@ -10854,6 +11041,8 @@ interface ConversationCreateOptions {
|
|
|
10854
11041
|
traceId?: string;
|
|
10855
11042
|
/** Optional configuration for job start behavior */
|
|
10856
11043
|
jobStartOverrides?: ConversationJobStartOverrides;
|
|
11044
|
+
/** Input arguments for the agent */
|
|
11045
|
+
agentInput?: AgentInput;
|
|
10857
11046
|
}
|
|
10858
11047
|
interface ConversationUpdateOptions {
|
|
10859
11048
|
/** Human-readable label for the conversation */
|
|
@@ -10864,6 +11053,8 @@ interface ConversationUpdateOptions {
|
|
|
10864
11053
|
jobKey?: string;
|
|
10865
11054
|
/** Whether the conversation's job is running locally */
|
|
10866
11055
|
isLocalJobExecution?: boolean;
|
|
11056
|
+
/** Input arguments for the agent */
|
|
11057
|
+
agentInput?: AgentInput;
|
|
10867
11058
|
}
|
|
10868
11059
|
type ConversationGetAllOptions = PaginationOptions & {
|
|
10869
11060
|
/** Sort order for conversations */
|
|
@@ -11532,6 +11723,1190 @@ interface FeedbackServiceModel {
|
|
|
11532
11723
|
getAll<T extends FeedbackGetAllOptions = FeedbackGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<FeedbackGetResponse> : NonPaginatedResponse<FeedbackGetResponse>>;
|
|
11533
11724
|
}
|
|
11534
11725
|
|
|
11726
|
+
declare enum DocumentActionPriority {
|
|
11727
|
+
Low = "Low",
|
|
11728
|
+
Medium = "Medium",
|
|
11729
|
+
High = "High",
|
|
11730
|
+
Critical = "Critical"
|
|
11731
|
+
}
|
|
11732
|
+
declare enum DocumentActionStatus {
|
|
11733
|
+
Unassigned = "Unassigned",
|
|
11734
|
+
Pending = "Pending",
|
|
11735
|
+
Completed = "Completed"
|
|
11736
|
+
}
|
|
11737
|
+
declare enum DocumentActionType {
|
|
11738
|
+
Validation = "Validation",
|
|
11739
|
+
Classification = "Classification"
|
|
11740
|
+
}
|
|
11741
|
+
interface UserData {
|
|
11742
|
+
id?: number | null;
|
|
11743
|
+
emailAddress?: string | null;
|
|
11744
|
+
}
|
|
11745
|
+
|
|
11746
|
+
declare enum ComparisonOperator {
|
|
11747
|
+
Equals = "Equals",
|
|
11748
|
+
NotEquals = "NotEquals",
|
|
11749
|
+
Greater = "Greater",
|
|
11750
|
+
Less = "Less",
|
|
11751
|
+
GreaterOrEqual = "GreaterOrEqual",
|
|
11752
|
+
LessOrEqual = "LessOrEqual"
|
|
11753
|
+
}
|
|
11754
|
+
declare enum Criticality {
|
|
11755
|
+
Must = "Must",
|
|
11756
|
+
Should = "Should"
|
|
11757
|
+
}
|
|
11758
|
+
declare enum FieldType {
|
|
11759
|
+
Text = "Text",
|
|
11760
|
+
Number = "Number",
|
|
11761
|
+
Date = "Date",
|
|
11762
|
+
Name = "Name",
|
|
11763
|
+
Address = "Address",
|
|
11764
|
+
Keyword = "Keyword",
|
|
11765
|
+
Set = "Set",
|
|
11766
|
+
Boolean = "Boolean",
|
|
11767
|
+
Table = "Table",
|
|
11768
|
+
Internal = "Internal",
|
|
11769
|
+
FieldGroup = "FieldGroup",
|
|
11770
|
+
MonetaryQuantity = "MonetaryQuantity"
|
|
11771
|
+
}
|
|
11772
|
+
declare enum LogicalOperator {
|
|
11773
|
+
AND = "AND",
|
|
11774
|
+
OR = "OR"
|
|
11775
|
+
}
|
|
11776
|
+
declare enum RuleType {
|
|
11777
|
+
Mandatory = "Mandatory",
|
|
11778
|
+
PossibleValues = "PossibleValues",
|
|
11779
|
+
Regex = "Regex",
|
|
11780
|
+
StartsWith = "StartsWith",
|
|
11781
|
+
EndsWith = "EndsWith",
|
|
11782
|
+
FixedLength = "FixedLength",
|
|
11783
|
+
IsNumeric = "IsNumeric",
|
|
11784
|
+
IsDate = "IsDate",
|
|
11785
|
+
IsEmail = "IsEmail",
|
|
11786
|
+
Contains = "Contains",
|
|
11787
|
+
Expression = "Expression",
|
|
11788
|
+
TableExpression = "TableExpression",
|
|
11789
|
+
IsEmpty = "IsEmpty"
|
|
11790
|
+
}
|
|
11791
|
+
interface DataSource {
|
|
11792
|
+
resourceId?: string | null;
|
|
11793
|
+
elementFieldId?: string | null;
|
|
11794
|
+
}
|
|
11795
|
+
interface DocumentGroup {
|
|
11796
|
+
name?: string | null;
|
|
11797
|
+
categories?: string[] | null;
|
|
11798
|
+
}
|
|
11799
|
+
interface DocumentTaxonomy {
|
|
11800
|
+
dataContractVersion?: string | null;
|
|
11801
|
+
documentTypes?: DocumentTypeEntity[] | null;
|
|
11802
|
+
groups?: DocumentGroup[] | null;
|
|
11803
|
+
supportedLanguages?: LanguageInfo[] | null;
|
|
11804
|
+
reportAsExceptionSettings?: ReportAsExceptionSettings;
|
|
11805
|
+
}
|
|
11806
|
+
interface DocumentTypeEntity {
|
|
11807
|
+
documentTypeId?: string | null;
|
|
11808
|
+
group?: string | null;
|
|
11809
|
+
category?: string | null;
|
|
11810
|
+
name?: string | null;
|
|
11811
|
+
optionalUniqueIdentifier?: string | null;
|
|
11812
|
+
typeField?: TypeField;
|
|
11813
|
+
fields?: Field[] | null;
|
|
11814
|
+
metadata?: MetadataEntry[] | null;
|
|
11815
|
+
}
|
|
11816
|
+
interface ExceptionReasonOption {
|
|
11817
|
+
exceptionReason?: string | null;
|
|
11818
|
+
}
|
|
11819
|
+
interface Field {
|
|
11820
|
+
fieldId?: string | null;
|
|
11821
|
+
fieldName?: string | null;
|
|
11822
|
+
isMultiValue?: boolean;
|
|
11823
|
+
type?: FieldType;
|
|
11824
|
+
deriveFieldsFormat?: string | null;
|
|
11825
|
+
components?: Field[] | null;
|
|
11826
|
+
setValues?: string[] | null;
|
|
11827
|
+
metadata?: MetadataEntry[] | null;
|
|
11828
|
+
ruleSet?: RuleSet;
|
|
11829
|
+
defaultValue?: string | null;
|
|
11830
|
+
dataSource?: DataSource;
|
|
11831
|
+
}
|
|
11832
|
+
interface LanguageInfo {
|
|
11833
|
+
name?: string | null;
|
|
11834
|
+
code?: string | null;
|
|
11835
|
+
}
|
|
11836
|
+
interface MetadataEntry {
|
|
11837
|
+
key?: string | null;
|
|
11838
|
+
value?: string | null;
|
|
11839
|
+
}
|
|
11840
|
+
interface ReportAsExceptionSettings {
|
|
11841
|
+
exceptionReasonOptions?: ExceptionReasonOption[] | null;
|
|
11842
|
+
}
|
|
11843
|
+
interface Rule {
|
|
11844
|
+
name?: string | null;
|
|
11845
|
+
type?: RuleType;
|
|
11846
|
+
logicalOperator?: LogicalOperator;
|
|
11847
|
+
comparisonOperator?: ComparisonOperator;
|
|
11848
|
+
expression?: string | null;
|
|
11849
|
+
setValues?: string[] | null;
|
|
11850
|
+
}
|
|
11851
|
+
interface RuleSet {
|
|
11852
|
+
criticality?: Criticality;
|
|
11853
|
+
rules?: Rule[] | null;
|
|
11854
|
+
}
|
|
11855
|
+
interface TypeField {
|
|
11856
|
+
fieldId?: string | null;
|
|
11857
|
+
fieldName?: string | null;
|
|
11858
|
+
}
|
|
11859
|
+
|
|
11860
|
+
interface FieldValue {
|
|
11861
|
+
value?: string | null;
|
|
11862
|
+
derivedValue?: string | null;
|
|
11863
|
+
}
|
|
11864
|
+
interface FieldValueResult {
|
|
11865
|
+
value?: FieldValue;
|
|
11866
|
+
isValid?: boolean;
|
|
11867
|
+
rules?: RuleResult[] | null;
|
|
11868
|
+
}
|
|
11869
|
+
interface RuleResult {
|
|
11870
|
+
rule?: Rule;
|
|
11871
|
+
isValid?: boolean;
|
|
11872
|
+
}
|
|
11873
|
+
interface RuleSetResult {
|
|
11874
|
+
fieldId?: string | null;
|
|
11875
|
+
fieldType?: FieldType;
|
|
11876
|
+
criticality?: Criticality;
|
|
11877
|
+
isValid?: boolean;
|
|
11878
|
+
results?: FieldValueResult[] | null;
|
|
11879
|
+
brokenRules?: Rule[] | null;
|
|
11880
|
+
rowIndex?: number | null;
|
|
11881
|
+
tableFieldId?: string | null;
|
|
11882
|
+
}
|
|
11883
|
+
|
|
11884
|
+
interface ErrorResponse {
|
|
11885
|
+
message?: string | null;
|
|
11886
|
+
severity?: 'Info' | 'Warning' | 'Error';
|
|
11887
|
+
code?: string | null;
|
|
11888
|
+
parameters?: string[] | null;
|
|
11889
|
+
}
|
|
11890
|
+
|
|
11891
|
+
declare enum ClassifierDocumentTypeType {
|
|
11892
|
+
FormsAi = "FormsAi",
|
|
11893
|
+
SemiStructuredAi = "SemiStructuredAi",
|
|
11894
|
+
Helix = "Helix",
|
|
11895
|
+
Unknown = "Unknown"
|
|
11896
|
+
}
|
|
11897
|
+
declare enum CreateTaskPriority {
|
|
11898
|
+
Low = "Low",
|
|
11899
|
+
Medium = "Medium",
|
|
11900
|
+
High = "High",
|
|
11901
|
+
Critical = "Critical"
|
|
11902
|
+
}
|
|
11903
|
+
declare enum GptFieldType {
|
|
11904
|
+
Address = "Address",
|
|
11905
|
+
Boolean = "Boolean",
|
|
11906
|
+
Date = "Date",
|
|
11907
|
+
Name = "Name",
|
|
11908
|
+
Number = "Number",
|
|
11909
|
+
Text = "Text"
|
|
11910
|
+
}
|
|
11911
|
+
declare enum ValidationDisplayMode {
|
|
11912
|
+
Classic = "Classic",
|
|
11913
|
+
Compact = "Compact"
|
|
11914
|
+
}
|
|
11915
|
+
interface ClassificationPrompt {
|
|
11916
|
+
name?: string | null;
|
|
11917
|
+
description?: string | null;
|
|
11918
|
+
}
|
|
11919
|
+
interface ClassificationValidationConfiguration {
|
|
11920
|
+
enablePageReordering?: boolean;
|
|
11921
|
+
}
|
|
11922
|
+
interface ContentValidationData {
|
|
11923
|
+
bucketName?: string | null;
|
|
11924
|
+
bucketId?: number;
|
|
11925
|
+
folderId?: number;
|
|
11926
|
+
folderKey?: string;
|
|
11927
|
+
documentId?: string;
|
|
11928
|
+
encodedDocumentPath?: string | null;
|
|
11929
|
+
textPath?: string | null;
|
|
11930
|
+
documentObjectModelPath?: string | null;
|
|
11931
|
+
taxonomyPath?: string | null;
|
|
11932
|
+
automaticExtractionResultsPath?: string | null;
|
|
11933
|
+
validatedExtractionResultsPath?: string | null;
|
|
11934
|
+
customizationInfoPath?: string | null;
|
|
11935
|
+
}
|
|
11936
|
+
interface DocumentClassificationActionDataModel {
|
|
11937
|
+
id?: number | null;
|
|
11938
|
+
status?: DocumentActionStatus;
|
|
11939
|
+
title?: string | null;
|
|
11940
|
+
priority?: DocumentActionPriority;
|
|
11941
|
+
taskCatalogName?: string | null;
|
|
11942
|
+
taskUrl?: string | null;
|
|
11943
|
+
folderPath?: string | null;
|
|
11944
|
+
folderId?: number | null;
|
|
11945
|
+
data?: unknown | null;
|
|
11946
|
+
action?: string | null;
|
|
11947
|
+
isDeleted?: boolean | null;
|
|
11948
|
+
assignedToUser?: UserData;
|
|
11949
|
+
creatorUser?: UserData;
|
|
11950
|
+
deleterUser?: UserData;
|
|
11951
|
+
lastModifierUser?: UserData;
|
|
11952
|
+
completedByUser?: UserData;
|
|
11953
|
+
creationTime?: string | null;
|
|
11954
|
+
lastAssignedTime?: string | null;
|
|
11955
|
+
completionTime?: string | null;
|
|
11956
|
+
processingTime?: number | null;
|
|
11957
|
+
type?: DocumentActionType;
|
|
11958
|
+
}
|
|
11959
|
+
interface DocumentExtractionActionDataModel {
|
|
11960
|
+
id?: number | null;
|
|
11961
|
+
status?: DocumentActionStatus;
|
|
11962
|
+
title?: string | null;
|
|
11963
|
+
priority?: DocumentActionPriority;
|
|
11964
|
+
taskCatalogName?: string | null;
|
|
11965
|
+
taskUrl?: string | null;
|
|
11966
|
+
folderPath?: string | null;
|
|
11967
|
+
folderId?: number | null;
|
|
11968
|
+
data?: unknown | null;
|
|
11969
|
+
action?: string | null;
|
|
11970
|
+
isDeleted?: boolean | null;
|
|
11971
|
+
assignedToUser?: UserData;
|
|
11972
|
+
creatorUser?: UserData;
|
|
11973
|
+
deleterUser?: UserData;
|
|
11974
|
+
lastModifierUser?: UserData;
|
|
11975
|
+
completedByUser?: UserData;
|
|
11976
|
+
creationTime?: string | null;
|
|
11977
|
+
lastAssignedTime?: string | null;
|
|
11978
|
+
completionTime?: string | null;
|
|
11979
|
+
processingTime?: number | null;
|
|
11980
|
+
type?: DocumentActionType;
|
|
11981
|
+
}
|
|
11982
|
+
interface ExtractionPrompt {
|
|
11983
|
+
id?: string | null;
|
|
11984
|
+
question?: string | null;
|
|
11985
|
+
fieldType?: GptFieldType;
|
|
11986
|
+
multiValued?: boolean | null;
|
|
11987
|
+
}
|
|
11988
|
+
interface ExtractionValidationConfigurationV2 {
|
|
11989
|
+
enableRtlControls?: boolean;
|
|
11990
|
+
displayMode?: ValidationDisplayMode;
|
|
11991
|
+
fieldsValidationConfidence?: number | null;
|
|
11992
|
+
allowChangeOfDocumentType?: boolean | null;
|
|
11993
|
+
}
|
|
11994
|
+
interface FieldGroupValueProjection {
|
|
11995
|
+
fieldGroupName?: string | null;
|
|
11996
|
+
fieldValues?: FieldValueProjection[] | null;
|
|
11997
|
+
}
|
|
11998
|
+
interface FieldValueProjection {
|
|
11999
|
+
id?: string | null;
|
|
12000
|
+
name?: string | null;
|
|
12001
|
+
value?: string | null;
|
|
12002
|
+
unformattedValue?: string | null;
|
|
12003
|
+
confidence?: number | null;
|
|
12004
|
+
ocrConfidence?: number | null;
|
|
12005
|
+
type?: FieldType;
|
|
12006
|
+
}
|
|
12007
|
+
|
|
12008
|
+
declare enum MarkupType {
|
|
12009
|
+
Unknown = "Unknown",
|
|
12010
|
+
Circled = "Circled",
|
|
12011
|
+
Underlined = "Underlined",
|
|
12012
|
+
Strikethrough = "Strikethrough"
|
|
12013
|
+
}
|
|
12014
|
+
declare enum ProcessingSource {
|
|
12015
|
+
Unknown = "Unknown",
|
|
12016
|
+
Ocr = "Ocr",
|
|
12017
|
+
Pdf = "Pdf",
|
|
12018
|
+
PlainText = "PlainText",
|
|
12019
|
+
PdfAndOcr = "PdfAndOcr"
|
|
12020
|
+
}
|
|
12021
|
+
declare enum Rotation {
|
|
12022
|
+
None = "None",
|
|
12023
|
+
Rotated90 = "Rotated90",
|
|
12024
|
+
Rotated180 = "Rotated180",
|
|
12025
|
+
Rotated270 = "Rotated270",
|
|
12026
|
+
Other = "Other"
|
|
12027
|
+
}
|
|
12028
|
+
declare enum SectionType {
|
|
12029
|
+
Vertical = "Vertical",
|
|
12030
|
+
Paragraph = "Paragraph",
|
|
12031
|
+
Header = "Header",
|
|
12032
|
+
Footer = "Footer",
|
|
12033
|
+
Table = "Table"
|
|
12034
|
+
}
|
|
12035
|
+
declare enum TextType {
|
|
12036
|
+
Unknown = "Unknown",
|
|
12037
|
+
Text = "Text",
|
|
12038
|
+
Checkbox = "Checkbox",
|
|
12039
|
+
Handwriting = "Handwriting",
|
|
12040
|
+
Barcode = "Barcode",
|
|
12041
|
+
QRcode = "QRcode",
|
|
12042
|
+
Stamp = "Stamp",
|
|
12043
|
+
Logo = "Logo",
|
|
12044
|
+
Circle = "Circle",
|
|
12045
|
+
Underline = "Underline",
|
|
12046
|
+
Cut = "Cut"
|
|
12047
|
+
}
|
|
12048
|
+
declare enum WordGroupType {
|
|
12049
|
+
Sentence = "Sentence",
|
|
12050
|
+
TableCell = "TableCell",
|
|
12051
|
+
TableRowEnd = "TableRowEnd",
|
|
12052
|
+
Heading = "Heading",
|
|
12053
|
+
Other = "Other"
|
|
12054
|
+
}
|
|
12055
|
+
interface DocumentEntity {
|
|
12056
|
+
documentId?: string | null;
|
|
12057
|
+
contentType?: string | null;
|
|
12058
|
+
length?: number;
|
|
12059
|
+
pages?: Page[] | null;
|
|
12060
|
+
documentMetadata?: Metadata[] | null;
|
|
12061
|
+
}
|
|
12062
|
+
interface Metadata {
|
|
12063
|
+
key?: string | null;
|
|
12064
|
+
value?: string | null;
|
|
12065
|
+
}
|
|
12066
|
+
interface Page {
|
|
12067
|
+
pageIndex?: number;
|
|
12068
|
+
size?: number[];
|
|
12069
|
+
sections?: PageSection[] | null;
|
|
12070
|
+
pageMarkups?: PageMarkup[] | null;
|
|
12071
|
+
processingSource?: ProcessingSource;
|
|
12072
|
+
indexInText?: number;
|
|
12073
|
+
textLength?: number;
|
|
12074
|
+
skewAngle?: number;
|
|
12075
|
+
rotation?: Rotation;
|
|
12076
|
+
pageMetadata?: Metadata[] | null;
|
|
12077
|
+
}
|
|
12078
|
+
interface PageMarkup {
|
|
12079
|
+
box?: number[];
|
|
12080
|
+
polygon?: number[] | null;
|
|
12081
|
+
ocrConfidence?: number;
|
|
12082
|
+
text?: string | null;
|
|
12083
|
+
markupType?: MarkupType;
|
|
12084
|
+
}
|
|
12085
|
+
interface PageSection {
|
|
12086
|
+
indexInText?: number;
|
|
12087
|
+
language?: string | null;
|
|
12088
|
+
length?: number;
|
|
12089
|
+
rotation?: Rotation;
|
|
12090
|
+
skewAngle?: number;
|
|
12091
|
+
type?: SectionType;
|
|
12092
|
+
wordGroups?: WordGroup[] | null;
|
|
12093
|
+
}
|
|
12094
|
+
interface Word {
|
|
12095
|
+
box?: number[];
|
|
12096
|
+
polygon?: number[] | null;
|
|
12097
|
+
indexInText?: number;
|
|
12098
|
+
ocrConfidence?: number;
|
|
12099
|
+
text?: string | null;
|
|
12100
|
+
visualLineNumber?: number;
|
|
12101
|
+
textType?: TextType;
|
|
12102
|
+
markupType?: MarkupType[] | null;
|
|
12103
|
+
}
|
|
12104
|
+
interface WordGroup {
|
|
12105
|
+
indexInText?: number;
|
|
12106
|
+
length?: number;
|
|
12107
|
+
type?: WordGroupType;
|
|
12108
|
+
words?: Word[] | null;
|
|
12109
|
+
}
|
|
12110
|
+
|
|
12111
|
+
declare enum ResultsDataSource {
|
|
12112
|
+
Automatic = "Automatic",
|
|
12113
|
+
Manual = "Manual",
|
|
12114
|
+
ManuallyChanged = "ManuallyChanged",
|
|
12115
|
+
Defaulted = "Defaulted",
|
|
12116
|
+
External = "External"
|
|
12117
|
+
}
|
|
12118
|
+
interface ClassificationResult {
|
|
12119
|
+
documentTypeId?: string | null;
|
|
12120
|
+
documentId?: string | null;
|
|
12121
|
+
confidence?: number;
|
|
12122
|
+
ocrConfidence?: number;
|
|
12123
|
+
reference?: ResultsContentReference;
|
|
12124
|
+
documentBounds?: ResultsDocumentBounds;
|
|
12125
|
+
classifierName?: string | null;
|
|
12126
|
+
}
|
|
12127
|
+
interface ExtractionResult {
|
|
12128
|
+
documentId?: string | null;
|
|
12129
|
+
resultsVersion?: number;
|
|
12130
|
+
resultsDocument?: ResultsDocument;
|
|
12131
|
+
extractorPayloads?: ExtractorPayload[] | null;
|
|
12132
|
+
businessRulesResults?: RuleSetResult[] | null;
|
|
12133
|
+
}
|
|
12134
|
+
interface ExtractorPayload {
|
|
12135
|
+
id?: string | null;
|
|
12136
|
+
payload?: string | null;
|
|
12137
|
+
savedPayloadId?: string | null;
|
|
12138
|
+
taxonomySchemaMapping?: string | null;
|
|
12139
|
+
}
|
|
12140
|
+
interface ResultsContentReference {
|
|
12141
|
+
textStartIndex?: number;
|
|
12142
|
+
textLength?: number;
|
|
12143
|
+
tokens?: ResultsValueTokens[] | null;
|
|
12144
|
+
}
|
|
12145
|
+
interface ResultsDataPoint {
|
|
12146
|
+
fieldId?: string | null;
|
|
12147
|
+
fieldName?: string | null;
|
|
12148
|
+
fieldType?: FieldType;
|
|
12149
|
+
isMissing?: boolean;
|
|
12150
|
+
dataSource?: ResultsDataSource;
|
|
12151
|
+
values?: ResultsValue[] | null;
|
|
12152
|
+
dataVersion?: number;
|
|
12153
|
+
operatorConfirmed?: boolean;
|
|
12154
|
+
validatorNotes?: string | null;
|
|
12155
|
+
validatorNotesInfo?: string | null;
|
|
12156
|
+
}
|
|
12157
|
+
interface ResultsDerivedField {
|
|
12158
|
+
fieldId?: string | null;
|
|
12159
|
+
value?: string | null;
|
|
12160
|
+
}
|
|
12161
|
+
interface ResultsDocument {
|
|
12162
|
+
bounds?: ResultsDocumentBounds;
|
|
12163
|
+
language?: string | null;
|
|
12164
|
+
documentGroup?: string | null;
|
|
12165
|
+
documentCategory?: string | null;
|
|
12166
|
+
documentTypeId?: string | null;
|
|
12167
|
+
documentTypeName?: string | null;
|
|
12168
|
+
documentTypeDataVersion?: number;
|
|
12169
|
+
dataVersion?: number;
|
|
12170
|
+
documentTypeSource?: ResultsDataSource;
|
|
12171
|
+
documentTypeField?: ResultsValue;
|
|
12172
|
+
fields?: ResultsDataPoint[] | null;
|
|
12173
|
+
tables?: ResultsTable[] | null;
|
|
12174
|
+
}
|
|
12175
|
+
interface ResultsDocumentBounds {
|
|
12176
|
+
startPage?: number;
|
|
12177
|
+
pageCount?: number;
|
|
12178
|
+
textStartIndex?: number;
|
|
12179
|
+
textLength?: number;
|
|
12180
|
+
pageRange?: string | null;
|
|
12181
|
+
}
|
|
12182
|
+
interface ResultsTable {
|
|
12183
|
+
fieldId?: string | null;
|
|
12184
|
+
fieldName?: string | null;
|
|
12185
|
+
isMissing?: boolean;
|
|
12186
|
+
dataSource?: ResultsDataSource;
|
|
12187
|
+
dataVersion?: number;
|
|
12188
|
+
operatorConfirmed?: boolean;
|
|
12189
|
+
values?: ResultsTableValue[] | null;
|
|
12190
|
+
validatorNotes?: string | null;
|
|
12191
|
+
validatorNotesInfo?: string | null;
|
|
12192
|
+
}
|
|
12193
|
+
interface ResultsTableCell {
|
|
12194
|
+
rowIndex?: number;
|
|
12195
|
+
columnIndex?: number;
|
|
12196
|
+
isHeader?: boolean;
|
|
12197
|
+
isMissing?: boolean;
|
|
12198
|
+
operatorConfirmed?: boolean;
|
|
12199
|
+
dataSource?: ResultsDataSource;
|
|
12200
|
+
dataVersion?: number;
|
|
12201
|
+
values?: ResultsValue[] | null;
|
|
12202
|
+
}
|
|
12203
|
+
interface ResultsTableColumnInfo {
|
|
12204
|
+
fieldId?: string | null;
|
|
12205
|
+
fieldName?: string | null;
|
|
12206
|
+
fieldType?: FieldType;
|
|
12207
|
+
}
|
|
12208
|
+
interface ResultsTableValue {
|
|
12209
|
+
operatorConfirmed?: boolean;
|
|
12210
|
+
confidence?: number;
|
|
12211
|
+
ocrConfidence?: number;
|
|
12212
|
+
cells?: ResultsTableCell[] | null;
|
|
12213
|
+
columnInfo?: ResultsTableColumnInfo[] | null;
|
|
12214
|
+
numberOfRows?: number;
|
|
12215
|
+
validatorNotes?: string | null;
|
|
12216
|
+
validatorNotesInfo?: string | null;
|
|
12217
|
+
}
|
|
12218
|
+
interface ResultsValue {
|
|
12219
|
+
components?: ResultsDataPoint[] | null;
|
|
12220
|
+
value?: string | null;
|
|
12221
|
+
unformattedValue?: string | null;
|
|
12222
|
+
reference?: ResultsContentReference;
|
|
12223
|
+
derivedFields?: ResultsDerivedField[] | null;
|
|
12224
|
+
confidence?: number;
|
|
12225
|
+
operatorConfirmed?: boolean;
|
|
12226
|
+
ocrConfidence?: number;
|
|
12227
|
+
textType?: TextType;
|
|
12228
|
+
validatorNotes?: string | null;
|
|
12229
|
+
validatorNotesInfo?: string | null;
|
|
12230
|
+
}
|
|
12231
|
+
interface ResultsValueTokens {
|
|
12232
|
+
textStartIndex?: number;
|
|
12233
|
+
textLength?: number;
|
|
12234
|
+
page?: number;
|
|
12235
|
+
pageWidth?: number;
|
|
12236
|
+
pageHeight?: number;
|
|
12237
|
+
boxes?: number[][] | null;
|
|
12238
|
+
}
|
|
12239
|
+
|
|
12240
|
+
interface ClassificationRequestBody {
|
|
12241
|
+
documentId?: string;
|
|
12242
|
+
prompts?: ClassificationPrompt[] | null;
|
|
12243
|
+
}
|
|
12244
|
+
interface ClassificationResponse {
|
|
12245
|
+
classificationResults?: ClassificationResult[] | null;
|
|
12246
|
+
}
|
|
12247
|
+
interface StartClassificationResponse {
|
|
12248
|
+
operationId?: string;
|
|
12249
|
+
resultUrl?: string | null;
|
|
12250
|
+
}
|
|
12251
|
+
interface SwaggerGetClassificationResultResponse {
|
|
12252
|
+
status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
|
|
12253
|
+
createdAt?: string;
|
|
12254
|
+
lastUpdatedAt?: string;
|
|
12255
|
+
error?: ErrorResponse;
|
|
12256
|
+
result?: ClassificationResponse;
|
|
12257
|
+
}
|
|
12258
|
+
|
|
12259
|
+
interface DataDeletionRequest {
|
|
12260
|
+
removeValidationDataFromStorage?: boolean;
|
|
12261
|
+
}
|
|
12262
|
+
|
|
12263
|
+
interface StartDigitizationFromAttachmentModel {
|
|
12264
|
+
attachmentId?: string;
|
|
12265
|
+
folderId?: string | null;
|
|
12266
|
+
fileName?: string | null;
|
|
12267
|
+
mimeType?: string | null;
|
|
12268
|
+
}
|
|
12269
|
+
interface StartDigitizationResponse {
|
|
12270
|
+
documentId?: string;
|
|
12271
|
+
resultUrl?: string | null;
|
|
12272
|
+
}
|
|
12273
|
+
interface SwaggerGetDigitizeJobResponse {
|
|
12274
|
+
status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
|
|
12275
|
+
error?: ErrorResponse;
|
|
12276
|
+
result?: SwaggerGetDigitizeJobResult;
|
|
12277
|
+
createdAt?: string;
|
|
12278
|
+
lastUpdatedAt?: string;
|
|
12279
|
+
}
|
|
12280
|
+
interface SwaggerGetDigitizeJobResult {
|
|
12281
|
+
documentObjectModel?: DocumentEntity;
|
|
12282
|
+
documentText?: string | null;
|
|
12283
|
+
}
|
|
12284
|
+
|
|
12285
|
+
declare enum ProjectProperties {
|
|
12286
|
+
IsPredefined = "IsPredefined",
|
|
12287
|
+
SupportsTags = "SupportsTags",
|
|
12288
|
+
SupportsVersions = "SupportsVersions",
|
|
12289
|
+
IsSplittingEnabled = "IsSplittingEnabled"
|
|
12290
|
+
}
|
|
12291
|
+
declare enum ProjectType {
|
|
12292
|
+
Classic = "Classic",
|
|
12293
|
+
Modern = "Modern",
|
|
12294
|
+
IXP = "IXP",
|
|
12295
|
+
Unknown = "Unknown"
|
|
12296
|
+
}
|
|
12297
|
+
declare enum ResourceStatus {
|
|
12298
|
+
Unknown = "Unknown",
|
|
12299
|
+
NotStarted = "NotStarted",
|
|
12300
|
+
ExportInProgress = "ExportInProgress",
|
|
12301
|
+
ExportCompleted = "ExportCompleted",
|
|
12302
|
+
InProgress = "InProgress",
|
|
12303
|
+
Suspended = "Suspended",
|
|
12304
|
+
Resuming = "Resuming",
|
|
12305
|
+
Available = "Available",
|
|
12306
|
+
Error = "Error",
|
|
12307
|
+
Deleting = "Deleting"
|
|
12308
|
+
}
|
|
12309
|
+
declare enum ResourceType {
|
|
12310
|
+
Specialized = "Specialized",
|
|
12311
|
+
Generative = "Generative",
|
|
12312
|
+
Custom = "Custom",
|
|
12313
|
+
Unknown = "Unknown"
|
|
12314
|
+
}
|
|
12315
|
+
interface Classifier {
|
|
12316
|
+
id?: string | null;
|
|
12317
|
+
name?: string | null;
|
|
12318
|
+
resourceType?: ResourceType;
|
|
12319
|
+
status?: ResourceStatus;
|
|
12320
|
+
documentTypeIds?: string[] | null;
|
|
12321
|
+
detailsUrl?: string | null;
|
|
12322
|
+
syncUrl?: string | null;
|
|
12323
|
+
asyncUrl?: string | null;
|
|
12324
|
+
projectVersion?: number | null;
|
|
12325
|
+
projectVersionName?: string | null;
|
|
12326
|
+
properties?: ProjectProperties[] | null;
|
|
12327
|
+
}
|
|
12328
|
+
interface DiscoveredDocumentType {
|
|
12329
|
+
id?: string | null;
|
|
12330
|
+
name?: string | null;
|
|
12331
|
+
resourceType?: ResourceType;
|
|
12332
|
+
detailsUrl?: string | null;
|
|
12333
|
+
}
|
|
12334
|
+
interface DiscoveredExtractorResourceSummaryResponse {
|
|
12335
|
+
id?: string | null;
|
|
12336
|
+
name?: string | null;
|
|
12337
|
+
resourceType?: ResourceType;
|
|
12338
|
+
detailsUrl?: string | null;
|
|
12339
|
+
documentTypeId?: string | null;
|
|
12340
|
+
documentTypeName?: string | null;
|
|
12341
|
+
projectVersion?: number | null;
|
|
12342
|
+
projectVersionName?: string | null;
|
|
12343
|
+
createdOn?: string | null;
|
|
12344
|
+
description?: string | null;
|
|
12345
|
+
}
|
|
12346
|
+
interface DiscoveredProjectVersionResponseV2_0 {
|
|
12347
|
+
version?: number;
|
|
12348
|
+
versionName?: string | null;
|
|
12349
|
+
tags?: string[] | null;
|
|
12350
|
+
date?: string;
|
|
12351
|
+
deployed?: boolean;
|
|
12352
|
+
}
|
|
12353
|
+
interface DiscoveredResourceSummaryResponse {
|
|
12354
|
+
id?: string | null;
|
|
12355
|
+
name?: string | null;
|
|
12356
|
+
resourceType?: ResourceType;
|
|
12357
|
+
detailsUrl?: string | null;
|
|
12358
|
+
projectVersion?: number | null;
|
|
12359
|
+
projectVersionName?: string | null;
|
|
12360
|
+
createdOn?: string | null;
|
|
12361
|
+
description?: string | null;
|
|
12362
|
+
}
|
|
12363
|
+
interface Extractor {
|
|
12364
|
+
id?: string | null;
|
|
12365
|
+
name?: string | null;
|
|
12366
|
+
documentTypeId?: string | null;
|
|
12367
|
+
resourceType?: ResourceType;
|
|
12368
|
+
status?: ResourceStatus;
|
|
12369
|
+
detailsUrl?: string | null;
|
|
12370
|
+
syncUrl?: string | null;
|
|
12371
|
+
asyncUrl?: string | null;
|
|
12372
|
+
projectVersion?: number | null;
|
|
12373
|
+
projectVersionName?: string | null;
|
|
12374
|
+
description?: string | null;
|
|
12375
|
+
}
|
|
12376
|
+
interface GetClassifierDetailsDocumentTypeResponse {
|
|
12377
|
+
id?: string | null;
|
|
12378
|
+
name?: string | null;
|
|
12379
|
+
resourceType?: ResourceType;
|
|
12380
|
+
type?: ClassifierDocumentTypeType;
|
|
12381
|
+
createdOn?: string | null;
|
|
12382
|
+
}
|
|
12383
|
+
interface GetClassifierDetailsResponse {
|
|
12384
|
+
id?: string | null;
|
|
12385
|
+
name?: string | null;
|
|
12386
|
+
resourceType?: ResourceType;
|
|
12387
|
+
status?: ResourceStatus;
|
|
12388
|
+
documentTypes?: GetClassifierDetailsDocumentTypeResponse[] | null;
|
|
12389
|
+
createdOn?: string | null;
|
|
12390
|
+
syncUrl?: string | null;
|
|
12391
|
+
asyncUrl?: string | null;
|
|
12392
|
+
projectVersion?: number | null;
|
|
12393
|
+
projectVersionName?: string | null;
|
|
12394
|
+
properties?: ProjectProperties[] | null;
|
|
12395
|
+
}
|
|
12396
|
+
interface GetClassifiersResponse {
|
|
12397
|
+
classifiers?: Classifier[] | null;
|
|
12398
|
+
}
|
|
12399
|
+
interface GetDocumentTypeDetailsByTagResponseV2_0 {
|
|
12400
|
+
id?: string | null;
|
|
12401
|
+
name?: string | null;
|
|
12402
|
+
resourceType?: ResourceType;
|
|
12403
|
+
createdOn?: string | null;
|
|
12404
|
+
documentTaxonomy?: DocumentTaxonomy;
|
|
12405
|
+
}
|
|
12406
|
+
interface GetDocumentTypeDetailsResponseV2_0 {
|
|
12407
|
+
id?: string | null;
|
|
12408
|
+
name?: string | null;
|
|
12409
|
+
resourceType?: ResourceType;
|
|
12410
|
+
createdOn?: string | null;
|
|
12411
|
+
classifiers?: DiscoveredResourceSummaryResponse[] | null;
|
|
12412
|
+
extractors?: DiscoveredResourceSummaryResponse[] | null;
|
|
12413
|
+
}
|
|
12414
|
+
interface GetDocumentTypesResponse {
|
|
12415
|
+
documentTypes?: DiscoveredDocumentType[] | null;
|
|
12416
|
+
}
|
|
12417
|
+
interface GetExtractorDetailsResponseV2_0 {
|
|
12418
|
+
id?: string | null;
|
|
12419
|
+
name?: string | null;
|
|
12420
|
+
resourceType?: ResourceType;
|
|
12421
|
+
status?: ResourceStatus;
|
|
12422
|
+
projectId?: string;
|
|
12423
|
+
projectVersion?: number | null;
|
|
12424
|
+
projectVersionName?: string | null;
|
|
12425
|
+
documentTypeName?: string | null;
|
|
12426
|
+
documentTypeId?: string | null;
|
|
12427
|
+
createdOn?: string | null;
|
|
12428
|
+
syncUrl?: string | null;
|
|
12429
|
+
asyncUrl?: string | null;
|
|
12430
|
+
description?: string | null;
|
|
12431
|
+
documentTaxonomy?: DocumentTaxonomy;
|
|
12432
|
+
}
|
|
12433
|
+
interface GetExtractorsResponse {
|
|
12434
|
+
extractors?: Extractor[] | null;
|
|
12435
|
+
}
|
|
12436
|
+
interface GetProjectDetailsResponseV2_0 {
|
|
12437
|
+
id?: string;
|
|
12438
|
+
name?: string | null;
|
|
12439
|
+
description?: string | null;
|
|
12440
|
+
type?: ProjectType;
|
|
12441
|
+
properties?: ProjectProperties[] | null;
|
|
12442
|
+
documentTypes?: DiscoveredResourceSummaryResponse[] | null;
|
|
12443
|
+
classifiers?: DiscoveredResourceSummaryResponse[] | null;
|
|
12444
|
+
extractors?: DiscoveredExtractorResourceSummaryResponse[] | null;
|
|
12445
|
+
projectVersions?: DiscoveredProjectVersionResponseV2_0[] | null;
|
|
12446
|
+
createdOn?: string | null;
|
|
12447
|
+
}
|
|
12448
|
+
interface GetProjectsResponse {
|
|
12449
|
+
projects?: Project[] | null;
|
|
12450
|
+
}
|
|
12451
|
+
interface GetProjectTaxonomyResponse {
|
|
12452
|
+
documentTaxonomy?: DocumentTaxonomy;
|
|
12453
|
+
}
|
|
12454
|
+
interface GetTagsResponse {
|
|
12455
|
+
tags?: TagEntity[] | null;
|
|
12456
|
+
}
|
|
12457
|
+
interface Project {
|
|
12458
|
+
id?: string;
|
|
12459
|
+
name?: string | null;
|
|
12460
|
+
type?: ProjectType;
|
|
12461
|
+
description?: string | null;
|
|
12462
|
+
createdOn?: string | null;
|
|
12463
|
+
detailsUrl?: string | null;
|
|
12464
|
+
digitizationStartUrl?: string | null;
|
|
12465
|
+
classifiersDiscoveryUrl?: string | null;
|
|
12466
|
+
extractorsDiscoveryUrl?: string | null;
|
|
12467
|
+
properties?: ProjectProperties[] | null;
|
|
12468
|
+
}
|
|
12469
|
+
interface TagEntity {
|
|
12470
|
+
name?: string | null;
|
|
12471
|
+
projectVersion?: number | null;
|
|
12472
|
+
projectVersionName?: string | null;
|
|
12473
|
+
extractors?: TaggedExtractor[] | null;
|
|
12474
|
+
classifiers?: TaggedClassifier[] | null;
|
|
12475
|
+
}
|
|
12476
|
+
interface TaggedClassifier {
|
|
12477
|
+
name?: string | null;
|
|
12478
|
+
documentTypes?: DiscoveredDocumentType[] | null;
|
|
12479
|
+
syncUrl?: string | null;
|
|
12480
|
+
asyncUrl?: string | null;
|
|
12481
|
+
}
|
|
12482
|
+
interface TaggedExtractor {
|
|
12483
|
+
name?: string | null;
|
|
12484
|
+
documentType?: DiscoveredDocumentType;
|
|
12485
|
+
syncUrl?: string | null;
|
|
12486
|
+
asyncUrl?: string | null;
|
|
12487
|
+
}
|
|
12488
|
+
|
|
12489
|
+
interface ExtractionPromptRequestBody {
|
|
12490
|
+
id?: string | null;
|
|
12491
|
+
question?: string | null;
|
|
12492
|
+
fieldType?: GptFieldType;
|
|
12493
|
+
multiValued?: boolean | null;
|
|
12494
|
+
}
|
|
12495
|
+
interface ExtractRequestBodyConfiguration {
|
|
12496
|
+
autoValidationConfidenceThreshold?: number | null;
|
|
12497
|
+
}
|
|
12498
|
+
interface ExtractRequestBodyV2_0 {
|
|
12499
|
+
documentId?: string;
|
|
12500
|
+
pageRange?: string | null;
|
|
12501
|
+
prompts?: ExtractionPromptRequestBody[] | null;
|
|
12502
|
+
configuration?: ExtractRequestBodyConfiguration;
|
|
12503
|
+
documentTaxonomy?: DocumentTaxonomy;
|
|
12504
|
+
}
|
|
12505
|
+
interface ExtractSyncResult {
|
|
12506
|
+
extractionResult?: ExtractionResult;
|
|
12507
|
+
}
|
|
12508
|
+
interface StartExtractionResponse {
|
|
12509
|
+
operationId?: string;
|
|
12510
|
+
resultUrl?: string | null;
|
|
12511
|
+
}
|
|
12512
|
+
interface SwaggerGetExtractionResultResponse {
|
|
12513
|
+
status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
|
|
12514
|
+
createdAt?: string;
|
|
12515
|
+
lastUpdatedAt?: string;
|
|
12516
|
+
error?: ErrorResponse;
|
|
12517
|
+
result?: ExtractSyncResult;
|
|
12518
|
+
}
|
|
12519
|
+
|
|
12520
|
+
declare enum ModelKind {
|
|
12521
|
+
Classifier = "Classifier",
|
|
12522
|
+
Extractor = "Extractor"
|
|
12523
|
+
}
|
|
12524
|
+
declare enum ModelType {
|
|
12525
|
+
IXP = "IXP",
|
|
12526
|
+
Modern = "Modern",
|
|
12527
|
+
Predefined = "Predefined"
|
|
12528
|
+
}
|
|
12529
|
+
interface FolderBasedStartExtractionRequest {
|
|
12530
|
+
documentId?: string;
|
|
12531
|
+
documentTaxonomy?: DocumentTaxonomy;
|
|
12532
|
+
pageRange?: string | null;
|
|
12533
|
+
}
|
|
12534
|
+
interface FolderBasedStartExtractionResponse {
|
|
12535
|
+
operationId?: string;
|
|
12536
|
+
resultUrl?: string | null;
|
|
12537
|
+
}
|
|
12538
|
+
interface FolderModelsResponse {
|
|
12539
|
+
folderKey?: string | null;
|
|
12540
|
+
fullyQualifiedName?: string | null;
|
|
12541
|
+
models?: ModelSummaryResponse[] | null;
|
|
12542
|
+
}
|
|
12543
|
+
interface GetModelDetailsResponse {
|
|
12544
|
+
fullyQualifiedName?: string | null;
|
|
12545
|
+
kind?: ModelKind;
|
|
12546
|
+
type?: ModelType;
|
|
12547
|
+
description?: string | null;
|
|
12548
|
+
asyncDigitizationUrl?: string | null;
|
|
12549
|
+
asyncExtractionUrl?: string | null;
|
|
12550
|
+
documentTaxonomy?: DocumentTaxonomy;
|
|
12551
|
+
}
|
|
12552
|
+
interface GetModelsResponse {
|
|
12553
|
+
folders?: FolderModelsResponse[] | null;
|
|
12554
|
+
}
|
|
12555
|
+
interface ModelSummaryResponse {
|
|
12556
|
+
modelName?: string | null;
|
|
12557
|
+
description?: string | null;
|
|
12558
|
+
kind?: ModelKind;
|
|
12559
|
+
type?: ModelType;
|
|
12560
|
+
fullyQualifiedName?: string | null;
|
|
12561
|
+
detailsUrl?: string | null;
|
|
12562
|
+
asyncDigitizationUrl?: string | null;
|
|
12563
|
+
asyncExtractionUrl?: string | null;
|
|
12564
|
+
}
|
|
12565
|
+
|
|
12566
|
+
declare enum ActionStatus {
|
|
12567
|
+
Unassigned = "Unassigned",
|
|
12568
|
+
Pending = "Pending",
|
|
12569
|
+
Completed = "Completed"
|
|
12570
|
+
}
|
|
12571
|
+
interface ClassificationValidationResult {
|
|
12572
|
+
actionStatus?: ActionStatus;
|
|
12573
|
+
actionData?: DocumentClassificationActionDataModel;
|
|
12574
|
+
validatedClassificationResults?: ClassificationResult[] | null;
|
|
12575
|
+
}
|
|
12576
|
+
interface ExtractionValidationArtifactsResult {
|
|
12577
|
+
validatedExtractionResults?: ExtractionResult;
|
|
12578
|
+
}
|
|
12579
|
+
interface ExtractionValidationResult {
|
|
12580
|
+
actionStatus?: ActionStatus;
|
|
12581
|
+
actionData?: DocumentExtractionActionDataModel;
|
|
12582
|
+
validatedExtractionResults?: ExtractionResult;
|
|
12583
|
+
dataProjection?: FieldGroupValueProjection[] | null;
|
|
12584
|
+
}
|
|
12585
|
+
interface GetClassificationValidationTaskResponse {
|
|
12586
|
+
status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
|
|
12587
|
+
error?: ErrorResponse;
|
|
12588
|
+
createdAt?: string;
|
|
12589
|
+
lastUpdatedAt?: string;
|
|
12590
|
+
result?: ClassificationValidationResult;
|
|
12591
|
+
}
|
|
12592
|
+
interface GetExtractionValidationArtifactsResultTaskResponse {
|
|
12593
|
+
result?: ExtractionValidationArtifactsResult;
|
|
12594
|
+
}
|
|
12595
|
+
interface GetExtractionValidationArtifactsTaskResponse {
|
|
12596
|
+
status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
|
|
12597
|
+
error?: ErrorResponse;
|
|
12598
|
+
createdAt?: string;
|
|
12599
|
+
lastUpdatedAt?: string;
|
|
12600
|
+
contentValidationData?: ContentValidationData;
|
|
12601
|
+
}
|
|
12602
|
+
interface GetExtractionValidationTaskResponse {
|
|
12603
|
+
status?: 'Succeeded' | 'Failed' | 'Running' | 'NotStarted';
|
|
12604
|
+
error?: ErrorResponse;
|
|
12605
|
+
createdAt?: string;
|
|
12606
|
+
lastUpdatedAt?: string;
|
|
12607
|
+
result?: ExtractionValidationResult;
|
|
12608
|
+
}
|
|
12609
|
+
interface StartClassificationValidationTaskRequest {
|
|
12610
|
+
documentId?: string | null;
|
|
12611
|
+
actionTitle?: string | null;
|
|
12612
|
+
actionPriority?: CreateTaskPriority;
|
|
12613
|
+
actionCatalog?: string | null;
|
|
12614
|
+
actionFolder?: string | null;
|
|
12615
|
+
storageBucketName?: string | null;
|
|
12616
|
+
storageBucketDirectoryPath?: string | null;
|
|
12617
|
+
prompts?: ClassificationPrompt[] | null;
|
|
12618
|
+
configuration?: ClassificationValidationConfiguration;
|
|
12619
|
+
classificationResults?: ClassificationResult[] | null;
|
|
12620
|
+
}
|
|
12621
|
+
interface StartExtractionValidationArtifactsRequest {
|
|
12622
|
+
documentId?: string;
|
|
12623
|
+
extractionResult?: ExtractionResult;
|
|
12624
|
+
documentTaxonomy?: DocumentTaxonomy;
|
|
12625
|
+
folderName?: string | null;
|
|
12626
|
+
storageBucketName?: string | null;
|
|
12627
|
+
storageBucketDirectoryPath?: string | null;
|
|
12628
|
+
}
|
|
12629
|
+
interface StartExtractionValidationTaskRequestV2_0 {
|
|
12630
|
+
documentId?: string | null;
|
|
12631
|
+
actionTitle?: string | null;
|
|
12632
|
+
actionPriority?: CreateTaskPriority;
|
|
12633
|
+
actionCatalog?: string | null;
|
|
12634
|
+
actionFolder?: string | null;
|
|
12635
|
+
storageBucketName?: string | null;
|
|
12636
|
+
storageBucketDirectoryPath?: string | null;
|
|
12637
|
+
fieldsValidationConfidence?: number | null;
|
|
12638
|
+
allowChangeOfDocumentType?: boolean | null;
|
|
12639
|
+
prompts?: ExtractionPrompt[] | null;
|
|
12640
|
+
extractionResult?: ExtractionResult;
|
|
12641
|
+
configuration?: ExtractionValidationConfigurationV2;
|
|
12642
|
+
documentTaxonomy?: DocumentTaxonomy;
|
|
12643
|
+
}
|
|
12644
|
+
interface StartValidationArtifactsTaskResponse {
|
|
12645
|
+
operationId?: string;
|
|
12646
|
+
artifactsUrl?: string | null;
|
|
12647
|
+
resultUrl?: string | null;
|
|
12648
|
+
}
|
|
12649
|
+
interface StartValidationTaskResponse {
|
|
12650
|
+
operationId?: string;
|
|
12651
|
+
resultUrl?: string | null;
|
|
12652
|
+
}
|
|
12653
|
+
|
|
12654
|
+
interface ClassificationValidationFinishedTaskInfo {
|
|
12655
|
+
id?: number;
|
|
12656
|
+
title?: string | null;
|
|
12657
|
+
priority?: DocumentActionPriority;
|
|
12658
|
+
status?: ActionStatus;
|
|
12659
|
+
creationTime?: string;
|
|
12660
|
+
completionTime?: string | null;
|
|
12661
|
+
lastAssignedTime?: string;
|
|
12662
|
+
url?: string | null;
|
|
12663
|
+
assignedToUser?: string | null;
|
|
12664
|
+
completedByUser?: string | null;
|
|
12665
|
+
lastModifierUser?: string | null;
|
|
12666
|
+
documentRejectionReason?: string | null;
|
|
12667
|
+
catalogName?: string | null;
|
|
12668
|
+
folderName?: string | null;
|
|
12669
|
+
processingTime?: number | null;
|
|
12670
|
+
}
|
|
12671
|
+
interface FinishExtractionValidationTaskInfo {
|
|
12672
|
+
id?: number;
|
|
12673
|
+
title?: string | null;
|
|
12674
|
+
priority?: DocumentActionPriority;
|
|
12675
|
+
status?: ActionStatus;
|
|
12676
|
+
creationTime?: string;
|
|
12677
|
+
completionTime?: string | null;
|
|
12678
|
+
lastAssignedTime?: string;
|
|
12679
|
+
url?: string | null;
|
|
12680
|
+
assignedToUser?: string | null;
|
|
12681
|
+
completedByUser?: string | null;
|
|
12682
|
+
lastModifierUser?: string | null;
|
|
12683
|
+
documentRejectionReason?: string | null;
|
|
12684
|
+
catalogName?: string | null;
|
|
12685
|
+
folderName?: string | null;
|
|
12686
|
+
processingTime?: number | null;
|
|
12687
|
+
}
|
|
12688
|
+
interface StartClassificationValidationTaskInfo {
|
|
12689
|
+
id?: number;
|
|
12690
|
+
title?: string | null;
|
|
12691
|
+
folderName?: string | null;
|
|
12692
|
+
storageBucketName?: string | null;
|
|
12693
|
+
storageBucketDirectoryPath?: string | null;
|
|
12694
|
+
catalogName?: string | null;
|
|
12695
|
+
priority?: DocumentActionPriority;
|
|
12696
|
+
status?: ActionStatus;
|
|
12697
|
+
}
|
|
12698
|
+
interface StartExtractionValidationTaskInfo {
|
|
12699
|
+
id?: number;
|
|
12700
|
+
title?: string | null;
|
|
12701
|
+
folderName?: string | null;
|
|
12702
|
+
storageBucketName?: string | null;
|
|
12703
|
+
storageBucketDirectoryPath?: string | null;
|
|
12704
|
+
catalogName?: string | null;
|
|
12705
|
+
priority?: DocumentActionPriority;
|
|
12706
|
+
status?: ActionStatus;
|
|
12707
|
+
}
|
|
12708
|
+
interface TrackFinishClassificationValidationRequest {
|
|
12709
|
+
classifierId?: string | null;
|
|
12710
|
+
tag?: string | null;
|
|
12711
|
+
documentId?: string;
|
|
12712
|
+
task?: ClassificationValidationFinishedTaskInfo;
|
|
12713
|
+
classificationResult?: ClassificationResult[] | null;
|
|
12714
|
+
}
|
|
12715
|
+
interface TrackFinishExtractionValidationRequest {
|
|
12716
|
+
extractorId?: string | null;
|
|
12717
|
+
tag?: string | null;
|
|
12718
|
+
documentTypeId?: string | null;
|
|
12719
|
+
documentId?: string;
|
|
12720
|
+
task?: FinishExtractionValidationTaskInfo;
|
|
12721
|
+
extractionResult?: ExtractionResult;
|
|
12722
|
+
validatedExtractionResult?: ExtractionResult;
|
|
12723
|
+
}
|
|
12724
|
+
interface TrackStartClassificationValidationRequest {
|
|
12725
|
+
classifierId?: string | null;
|
|
12726
|
+
tag?: string | null;
|
|
12727
|
+
documentId?: string;
|
|
12728
|
+
duration?: number;
|
|
12729
|
+
task?: StartClassificationValidationTaskInfo;
|
|
12730
|
+
classificationResult?: ClassificationResult[] | null;
|
|
12731
|
+
}
|
|
12732
|
+
interface TrackStartExtractionValidationRequest {
|
|
12733
|
+
extractorId?: string | null;
|
|
12734
|
+
tag?: string | null;
|
|
12735
|
+
documentTypeId?: string | null;
|
|
12736
|
+
documentId?: string;
|
|
12737
|
+
duration?: number;
|
|
12738
|
+
task?: StartExtractionValidationTaskInfo;
|
|
12739
|
+
extractionResult?: ExtractionResult;
|
|
12740
|
+
}
|
|
12741
|
+
|
|
12742
|
+
type index_ActionStatus = ActionStatus;
|
|
12743
|
+
declare const index_ActionStatus: typeof ActionStatus;
|
|
12744
|
+
type index_ClassificationPrompt = ClassificationPrompt;
|
|
12745
|
+
type index_ClassificationRequestBody = ClassificationRequestBody;
|
|
12746
|
+
type index_ClassificationResponse = ClassificationResponse;
|
|
12747
|
+
type index_ClassificationResult = ClassificationResult;
|
|
12748
|
+
type index_ClassificationValidationConfiguration = ClassificationValidationConfiguration;
|
|
12749
|
+
type index_ClassificationValidationFinishedTaskInfo = ClassificationValidationFinishedTaskInfo;
|
|
12750
|
+
type index_ClassificationValidationResult = ClassificationValidationResult;
|
|
12751
|
+
type index_Classifier = Classifier;
|
|
12752
|
+
type index_ClassifierDocumentTypeType = ClassifierDocumentTypeType;
|
|
12753
|
+
declare const index_ClassifierDocumentTypeType: typeof ClassifierDocumentTypeType;
|
|
12754
|
+
type index_ComparisonOperator = ComparisonOperator;
|
|
12755
|
+
declare const index_ComparisonOperator: typeof ComparisonOperator;
|
|
12756
|
+
type index_ContentValidationData = ContentValidationData;
|
|
12757
|
+
type index_CreateTaskPriority = CreateTaskPriority;
|
|
12758
|
+
declare const index_CreateTaskPriority: typeof CreateTaskPriority;
|
|
12759
|
+
type index_Criticality = Criticality;
|
|
12760
|
+
declare const index_Criticality: typeof Criticality;
|
|
12761
|
+
type index_DataDeletionRequest = DataDeletionRequest;
|
|
12762
|
+
type index_DataSource = DataSource;
|
|
12763
|
+
type index_DiscoveredDocumentType = DiscoveredDocumentType;
|
|
12764
|
+
type index_DiscoveredExtractorResourceSummaryResponse = DiscoveredExtractorResourceSummaryResponse;
|
|
12765
|
+
type index_DiscoveredProjectVersionResponseV2_0 = DiscoveredProjectVersionResponseV2_0;
|
|
12766
|
+
type index_DiscoveredResourceSummaryResponse = DiscoveredResourceSummaryResponse;
|
|
12767
|
+
type index_DocumentActionPriority = DocumentActionPriority;
|
|
12768
|
+
declare const index_DocumentActionPriority: typeof DocumentActionPriority;
|
|
12769
|
+
type index_DocumentActionStatus = DocumentActionStatus;
|
|
12770
|
+
declare const index_DocumentActionStatus: typeof DocumentActionStatus;
|
|
12771
|
+
type index_DocumentActionType = DocumentActionType;
|
|
12772
|
+
declare const index_DocumentActionType: typeof DocumentActionType;
|
|
12773
|
+
type index_DocumentClassificationActionDataModel = DocumentClassificationActionDataModel;
|
|
12774
|
+
type index_DocumentEntity = DocumentEntity;
|
|
12775
|
+
type index_DocumentExtractionActionDataModel = DocumentExtractionActionDataModel;
|
|
12776
|
+
type index_DocumentGroup = DocumentGroup;
|
|
12777
|
+
type index_DocumentTaxonomy = DocumentTaxonomy;
|
|
12778
|
+
type index_DocumentTypeEntity = DocumentTypeEntity;
|
|
12779
|
+
type index_ErrorResponse = ErrorResponse;
|
|
12780
|
+
type index_ExceptionReasonOption = ExceptionReasonOption;
|
|
12781
|
+
type index_ExtractRequestBodyConfiguration = ExtractRequestBodyConfiguration;
|
|
12782
|
+
type index_ExtractRequestBodyV2_0 = ExtractRequestBodyV2_0;
|
|
12783
|
+
type index_ExtractSyncResult = ExtractSyncResult;
|
|
12784
|
+
type index_ExtractionPrompt = ExtractionPrompt;
|
|
12785
|
+
type index_ExtractionPromptRequestBody = ExtractionPromptRequestBody;
|
|
12786
|
+
type index_ExtractionResult = ExtractionResult;
|
|
12787
|
+
type index_ExtractionValidationArtifactsResult = ExtractionValidationArtifactsResult;
|
|
12788
|
+
type index_ExtractionValidationConfigurationV2 = ExtractionValidationConfigurationV2;
|
|
12789
|
+
type index_ExtractionValidationResult = ExtractionValidationResult;
|
|
12790
|
+
type index_Extractor = Extractor;
|
|
12791
|
+
type index_ExtractorPayload = ExtractorPayload;
|
|
12792
|
+
type index_Field = Field;
|
|
12793
|
+
type index_FieldGroupValueProjection = FieldGroupValueProjection;
|
|
12794
|
+
type index_FieldType = FieldType;
|
|
12795
|
+
declare const index_FieldType: typeof FieldType;
|
|
12796
|
+
type index_FieldValue = FieldValue;
|
|
12797
|
+
type index_FieldValueProjection = FieldValueProjection;
|
|
12798
|
+
type index_FieldValueResult = FieldValueResult;
|
|
12799
|
+
type index_FinishExtractionValidationTaskInfo = FinishExtractionValidationTaskInfo;
|
|
12800
|
+
type index_FolderBasedStartExtractionRequest = FolderBasedStartExtractionRequest;
|
|
12801
|
+
type index_FolderBasedStartExtractionResponse = FolderBasedStartExtractionResponse;
|
|
12802
|
+
type index_FolderModelsResponse = FolderModelsResponse;
|
|
12803
|
+
type index_GetClassificationValidationTaskResponse = GetClassificationValidationTaskResponse;
|
|
12804
|
+
type index_GetClassifierDetailsDocumentTypeResponse = GetClassifierDetailsDocumentTypeResponse;
|
|
12805
|
+
type index_GetClassifierDetailsResponse = GetClassifierDetailsResponse;
|
|
12806
|
+
type index_GetClassifiersResponse = GetClassifiersResponse;
|
|
12807
|
+
type index_GetDocumentTypeDetailsByTagResponseV2_0 = GetDocumentTypeDetailsByTagResponseV2_0;
|
|
12808
|
+
type index_GetDocumentTypeDetailsResponseV2_0 = GetDocumentTypeDetailsResponseV2_0;
|
|
12809
|
+
type index_GetDocumentTypesResponse = GetDocumentTypesResponse;
|
|
12810
|
+
type index_GetExtractionValidationArtifactsResultTaskResponse = GetExtractionValidationArtifactsResultTaskResponse;
|
|
12811
|
+
type index_GetExtractionValidationArtifactsTaskResponse = GetExtractionValidationArtifactsTaskResponse;
|
|
12812
|
+
type index_GetExtractionValidationTaskResponse = GetExtractionValidationTaskResponse;
|
|
12813
|
+
type index_GetExtractorDetailsResponseV2_0 = GetExtractorDetailsResponseV2_0;
|
|
12814
|
+
type index_GetExtractorsResponse = GetExtractorsResponse;
|
|
12815
|
+
type index_GetModelDetailsResponse = GetModelDetailsResponse;
|
|
12816
|
+
type index_GetModelsResponse = GetModelsResponse;
|
|
12817
|
+
type index_GetProjectDetailsResponseV2_0 = GetProjectDetailsResponseV2_0;
|
|
12818
|
+
type index_GetProjectTaxonomyResponse = GetProjectTaxonomyResponse;
|
|
12819
|
+
type index_GetProjectsResponse = GetProjectsResponse;
|
|
12820
|
+
type index_GetTagsResponse = GetTagsResponse;
|
|
12821
|
+
type index_GptFieldType = GptFieldType;
|
|
12822
|
+
declare const index_GptFieldType: typeof GptFieldType;
|
|
12823
|
+
type index_LanguageInfo = LanguageInfo;
|
|
12824
|
+
type index_LogicalOperator = LogicalOperator;
|
|
12825
|
+
declare const index_LogicalOperator: typeof LogicalOperator;
|
|
12826
|
+
type index_MarkupType = MarkupType;
|
|
12827
|
+
declare const index_MarkupType: typeof MarkupType;
|
|
12828
|
+
type index_Metadata = Metadata;
|
|
12829
|
+
type index_MetadataEntry = MetadataEntry;
|
|
12830
|
+
type index_ModelKind = ModelKind;
|
|
12831
|
+
declare const index_ModelKind: typeof ModelKind;
|
|
12832
|
+
type index_ModelSummaryResponse = ModelSummaryResponse;
|
|
12833
|
+
type index_ModelType = ModelType;
|
|
12834
|
+
declare const index_ModelType: typeof ModelType;
|
|
12835
|
+
type index_Page = Page;
|
|
12836
|
+
type index_PageMarkup = PageMarkup;
|
|
12837
|
+
type index_PageSection = PageSection;
|
|
12838
|
+
type index_ProcessingSource = ProcessingSource;
|
|
12839
|
+
declare const index_ProcessingSource: typeof ProcessingSource;
|
|
12840
|
+
type index_Project = Project;
|
|
12841
|
+
type index_ProjectProperties = ProjectProperties;
|
|
12842
|
+
declare const index_ProjectProperties: typeof ProjectProperties;
|
|
12843
|
+
type index_ProjectType = ProjectType;
|
|
12844
|
+
declare const index_ProjectType: typeof ProjectType;
|
|
12845
|
+
type index_ReportAsExceptionSettings = ReportAsExceptionSettings;
|
|
12846
|
+
type index_ResourceStatus = ResourceStatus;
|
|
12847
|
+
declare const index_ResourceStatus: typeof ResourceStatus;
|
|
12848
|
+
type index_ResourceType = ResourceType;
|
|
12849
|
+
declare const index_ResourceType: typeof ResourceType;
|
|
12850
|
+
type index_ResultsContentReference = ResultsContentReference;
|
|
12851
|
+
type index_ResultsDataPoint = ResultsDataPoint;
|
|
12852
|
+
type index_ResultsDataSource = ResultsDataSource;
|
|
12853
|
+
declare const index_ResultsDataSource: typeof ResultsDataSource;
|
|
12854
|
+
type index_ResultsDerivedField = ResultsDerivedField;
|
|
12855
|
+
type index_ResultsDocument = ResultsDocument;
|
|
12856
|
+
type index_ResultsDocumentBounds = ResultsDocumentBounds;
|
|
12857
|
+
type index_ResultsTable = ResultsTable;
|
|
12858
|
+
type index_ResultsTableCell = ResultsTableCell;
|
|
12859
|
+
type index_ResultsTableColumnInfo = ResultsTableColumnInfo;
|
|
12860
|
+
type index_ResultsTableValue = ResultsTableValue;
|
|
12861
|
+
type index_ResultsValue = ResultsValue;
|
|
12862
|
+
type index_ResultsValueTokens = ResultsValueTokens;
|
|
12863
|
+
type index_Rotation = Rotation;
|
|
12864
|
+
declare const index_Rotation: typeof Rotation;
|
|
12865
|
+
type index_Rule = Rule;
|
|
12866
|
+
type index_RuleResult = RuleResult;
|
|
12867
|
+
type index_RuleSet = RuleSet;
|
|
12868
|
+
type index_RuleSetResult = RuleSetResult;
|
|
12869
|
+
type index_RuleType = RuleType;
|
|
12870
|
+
declare const index_RuleType: typeof RuleType;
|
|
12871
|
+
type index_SectionType = SectionType;
|
|
12872
|
+
declare const index_SectionType: typeof SectionType;
|
|
12873
|
+
type index_StartClassificationResponse = StartClassificationResponse;
|
|
12874
|
+
type index_StartClassificationValidationTaskInfo = StartClassificationValidationTaskInfo;
|
|
12875
|
+
type index_StartClassificationValidationTaskRequest = StartClassificationValidationTaskRequest;
|
|
12876
|
+
type index_StartDigitizationFromAttachmentModel = StartDigitizationFromAttachmentModel;
|
|
12877
|
+
type index_StartDigitizationResponse = StartDigitizationResponse;
|
|
12878
|
+
type index_StartExtractionResponse = StartExtractionResponse;
|
|
12879
|
+
type index_StartExtractionValidationArtifactsRequest = StartExtractionValidationArtifactsRequest;
|
|
12880
|
+
type index_StartExtractionValidationTaskInfo = StartExtractionValidationTaskInfo;
|
|
12881
|
+
type index_StartExtractionValidationTaskRequestV2_0 = StartExtractionValidationTaskRequestV2_0;
|
|
12882
|
+
type index_StartValidationArtifactsTaskResponse = StartValidationArtifactsTaskResponse;
|
|
12883
|
+
type index_StartValidationTaskResponse = StartValidationTaskResponse;
|
|
12884
|
+
type index_SwaggerGetClassificationResultResponse = SwaggerGetClassificationResultResponse;
|
|
12885
|
+
type index_SwaggerGetDigitizeJobResponse = SwaggerGetDigitizeJobResponse;
|
|
12886
|
+
type index_SwaggerGetDigitizeJobResult = SwaggerGetDigitizeJobResult;
|
|
12887
|
+
type index_SwaggerGetExtractionResultResponse = SwaggerGetExtractionResultResponse;
|
|
12888
|
+
type index_TagEntity = TagEntity;
|
|
12889
|
+
type index_TaggedClassifier = TaggedClassifier;
|
|
12890
|
+
type index_TaggedExtractor = TaggedExtractor;
|
|
12891
|
+
type index_TextType = TextType;
|
|
12892
|
+
declare const index_TextType: typeof TextType;
|
|
12893
|
+
type index_TrackFinishClassificationValidationRequest = TrackFinishClassificationValidationRequest;
|
|
12894
|
+
type index_TrackFinishExtractionValidationRequest = TrackFinishExtractionValidationRequest;
|
|
12895
|
+
type index_TrackStartClassificationValidationRequest = TrackStartClassificationValidationRequest;
|
|
12896
|
+
type index_TrackStartExtractionValidationRequest = TrackStartExtractionValidationRequest;
|
|
12897
|
+
type index_TypeField = TypeField;
|
|
12898
|
+
type index_UserData = UserData;
|
|
12899
|
+
type index_ValidationDisplayMode = ValidationDisplayMode;
|
|
12900
|
+
declare const index_ValidationDisplayMode: typeof ValidationDisplayMode;
|
|
12901
|
+
type index_Word = Word;
|
|
12902
|
+
type index_WordGroup = WordGroup;
|
|
12903
|
+
type index_WordGroupType = WordGroupType;
|
|
12904
|
+
declare const index_WordGroupType: typeof WordGroupType;
|
|
12905
|
+
declare namespace index {
|
|
12906
|
+
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 };
|
|
12907
|
+
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 };
|
|
12908
|
+
}
|
|
12909
|
+
|
|
11535
12910
|
/**
|
|
11536
12911
|
* Error thrown when authorization fails (403 errors)
|
|
11537
12912
|
* Common scenarios:
|
|
@@ -11876,7 +13251,7 @@ declare const telemetryClient: TelemetryClient;
|
|
|
11876
13251
|
* SDK Telemetry constants
|
|
11877
13252
|
*/
|
|
11878
13253
|
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";
|
|
11879
|
-
declare const SDK_VERSION = "1.3.
|
|
13254
|
+
declare const SDK_VERSION = "1.3.5";
|
|
11880
13255
|
declare const VERSION = "Version";
|
|
11881
13256
|
declare const SERVICE = "Service";
|
|
11882
13257
|
declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
|
|
@@ -11891,5 +13266,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
|
|
|
11891
13266
|
declare const SDK_RUN_EVENT = "Sdk.Run";
|
|
11892
13267
|
declare const UNKNOWN = "";
|
|
11893
13268
|
|
|
11894
|
-
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 };
|
|
11895
|
-
export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, 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 };
|
|
13269
|
+
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 };
|
|
13270
|
+
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$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 };
|