@uipath/uipath-typescript 1.3.2 → 1.3.4
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 +21 -8
- package/dist/assets/index.mjs +21 -8
- package/dist/attachments/index.cjs +21 -8
- package/dist/attachments/index.mjs +21 -8
- package/dist/buckets/index.cjs +21 -8
- package/dist/buckets/index.mjs +21 -8
- package/dist/cases/index.cjs +41 -13
- package/dist/cases/index.d.ts +15 -0
- package/dist/cases/index.mjs +41 -13
- package/dist/conversational-agent/index.cjs +39 -8
- package/dist/conversational-agent/index.d.ts +55 -2
- package/dist/conversational-agent/index.mjs +39 -8
- package/dist/core/index.cjs +16 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.mjs +16 -1
- package/dist/entities/index.cjs +55 -8
- package/dist/entities/index.d.ts +54 -0
- package/dist/entities/index.mjs +55 -8
- package/dist/feedback/index.cjs +1911 -0
- package/dist/feedback/index.d.ts +475 -0
- package/dist/feedback/index.mjs +1909 -0
- package/dist/index.cjs +451 -189
- package/dist/index.d.ts +388 -13
- package/dist/index.mjs +452 -190
- package/dist/index.umd.js +451 -189
- package/dist/jobs/index.cjs +384 -8
- package/dist/jobs/index.d.ts +220 -2
- package/dist/jobs/index.mjs +385 -9
- package/dist/maestro-processes/index.cjs +21 -8
- package/dist/maestro-processes/index.mjs +21 -8
- package/dist/processes/index.cjs +21 -8
- package/dist/processes/index.mjs +21 -8
- package/dist/queues/index.cjs +21 -8
- package/dist/queues/index.mjs +21 -8
- package/dist/tasks/index.cjs +41 -13
- package/dist/tasks/index.d.ts +25 -10
- package/dist/tasks/index.mjs +42 -14
- package/package.json +13 -2
package/dist/index.d.ts
CHANGED
|
@@ -1282,6 +1282,8 @@ interface EntityServiceModel {
|
|
|
1282
1282
|
/**
|
|
1283
1283
|
* Deletes data from an entity by entity ID
|
|
1284
1284
|
*
|
|
1285
|
+
* 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.
|
|
1286
|
+
*
|
|
1285
1287
|
* @param id - UUID of the entity
|
|
1286
1288
|
* @param recordIds - Array of record UUIDs to delete
|
|
1287
1289
|
* @param options - Delete options
|
|
@@ -1296,6 +1298,25 @@ interface EntityServiceModel {
|
|
|
1296
1298
|
* ```
|
|
1297
1299
|
*/
|
|
1298
1300
|
deleteRecordsById(id: string, recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
|
|
1301
|
+
/**
|
|
1302
|
+
* Deletes a single record from an entity by entity ID and record ID
|
|
1303
|
+
*
|
|
1304
|
+
* Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
|
|
1305
|
+
* Use this method if you need trigger events to fire for the deleted record.
|
|
1306
|
+
*
|
|
1307
|
+
* @param entityId - UUID of the entity
|
|
1308
|
+
* @param recordId - UUID of the record to delete
|
|
1309
|
+
* @returns Promise resolving to void on success
|
|
1310
|
+
* @example
|
|
1311
|
+
* ```typescript
|
|
1312
|
+
* import { Entities } from '@uipath/uipath-typescript/entities';
|
|
1313
|
+
*
|
|
1314
|
+
* const entities = new Entities(sdk);
|
|
1315
|
+
*
|
|
1316
|
+
* await entities.deleteRecordById("<entityId>", "<recordId>");
|
|
1317
|
+
* ```
|
|
1318
|
+
*/
|
|
1319
|
+
deleteRecordById(entityId: string, recordId: string): Promise<void>;
|
|
1299
1320
|
/**
|
|
1300
1321
|
* Queries entity records with filters, sorting, and SDK-managed pagination
|
|
1301
1322
|
*
|
|
@@ -1586,11 +1607,23 @@ interface EntityMethods {
|
|
|
1586
1607
|
/**
|
|
1587
1608
|
* Delete data from this entity
|
|
1588
1609
|
*
|
|
1610
|
+
* 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.
|
|
1611
|
+
*
|
|
1589
1612
|
* @param recordIds - Array of record UUIDs to delete
|
|
1590
1613
|
* @param options - Delete options
|
|
1591
1614
|
* @returns Promise resolving to delete response
|
|
1592
1615
|
*/
|
|
1593
1616
|
deleteRecords(recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
|
|
1617
|
+
/**
|
|
1618
|
+
* Delete a single record from this entity
|
|
1619
|
+
*
|
|
1620
|
+
* Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
|
|
1621
|
+
* Use this method if you need trigger events to fire for the deleted record.
|
|
1622
|
+
*
|
|
1623
|
+
* @param recordId - UUID of the record to delete
|
|
1624
|
+
* @returns Promise resolving to void on success
|
|
1625
|
+
*/
|
|
1626
|
+
deleteRecord(recordId: string): Promise<void>;
|
|
1594
1627
|
/**
|
|
1595
1628
|
* Get all records from this entity
|
|
1596
1629
|
*
|
|
@@ -1924,6 +1957,8 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
1924
1957
|
/**
|
|
1925
1958
|
* Deletes data from an entity by entity ID
|
|
1926
1959
|
*
|
|
1960
|
+
* 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.
|
|
1961
|
+
*
|
|
1927
1962
|
* @param entityId - UUID of the entity
|
|
1928
1963
|
* @param recordIds - Array of record UUIDs to delete
|
|
1929
1964
|
* @param options - Delete options
|
|
@@ -1942,6 +1977,25 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
1942
1977
|
* ```
|
|
1943
1978
|
*/
|
|
1944
1979
|
deleteRecordsById(id: string, recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
|
|
1980
|
+
/**
|
|
1981
|
+
* Deletes a single record from an entity by entity ID and record ID
|
|
1982
|
+
*
|
|
1983
|
+
* Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
|
|
1984
|
+
* Use this method if you need trigger events to fire for the deleted record.
|
|
1985
|
+
*
|
|
1986
|
+
* @param entityId - UUID of the entity
|
|
1987
|
+
* @param recordId - UUID of the record to delete
|
|
1988
|
+
* @returns Promise resolving to void on success
|
|
1989
|
+
* @example
|
|
1990
|
+
* ```typescript
|
|
1991
|
+
* import { Entities } from '@uipath/uipath-typescript/entities';
|
|
1992
|
+
*
|
|
1993
|
+
* const entities = new Entities(sdk);
|
|
1994
|
+
*
|
|
1995
|
+
* await entities.deleteRecordById("<entityId>", "<recordId>");
|
|
1996
|
+
* ```
|
|
1997
|
+
*/
|
|
1998
|
+
deleteRecordById(entityId: string, recordId: string): Promise<void>;
|
|
1945
1999
|
/**
|
|
1946
2000
|
* Gets all entities in the system
|
|
1947
2001
|
*
|
|
@@ -3442,6 +3496,20 @@ interface ElementRunMetadata {
|
|
|
3442
3496
|
parentElementRunId: string | null;
|
|
3443
3497
|
}
|
|
3444
3498
|
|
|
3499
|
+
declare enum TaskUserType {
|
|
3500
|
+
/** A user of this type is supposed to be used by a human. */
|
|
3501
|
+
User = "User",
|
|
3502
|
+
/** A user of this type is automatically created when adding a robot, is associated with Robot role and it is used by a robot when communicating with Orchestrator. */
|
|
3503
|
+
Robot = "Robot",
|
|
3504
|
+
/** A user of type Directory User */
|
|
3505
|
+
DirectoryUser = "DirectoryUser",
|
|
3506
|
+
/** A user of type Directory Group */
|
|
3507
|
+
DirectoryGroup = "DirectoryGroup",
|
|
3508
|
+
/** A user of type Directory Robot Account */
|
|
3509
|
+
DirectoryRobot = "DirectoryRobot",
|
|
3510
|
+
/** A user of type Directory External Application */
|
|
3511
|
+
DirectoryExternalApplication = "DirectoryExternalApplication"
|
|
3512
|
+
}
|
|
3445
3513
|
interface UserLoginInfo {
|
|
3446
3514
|
name: string;
|
|
3447
3515
|
surname: string;
|
|
@@ -3449,6 +3517,7 @@ interface UserLoginInfo {
|
|
|
3449
3517
|
emailAddress: string;
|
|
3450
3518
|
displayName: string;
|
|
3451
3519
|
id: number;
|
|
3520
|
+
type: TaskUserType;
|
|
3452
3521
|
}
|
|
3453
3522
|
/**
|
|
3454
3523
|
* Types of tasks available in Action Center.
|
|
@@ -3923,17 +3992,17 @@ interface TaskServiceModel {
|
|
|
3923
3992
|
*/
|
|
3924
3993
|
complete(options: TaskCompletionOptions, folderId: number): Promise<OperationResponse<TaskCompletionOptions>>;
|
|
3925
3994
|
/**
|
|
3926
|
-
* Gets users in the given folder who have Tasks.View and Tasks.Edit permissions
|
|
3995
|
+
* Gets task users (users, robots, groups etc) in the given folder who have Tasks.View and Tasks.Edit permissions
|
|
3927
3996
|
* Returns a NonPaginatedResponse with data and totalCount when no pagination parameters are provided,
|
|
3928
3997
|
* or a PaginatedResponse when any pagination parameter is provided
|
|
3929
3998
|
*
|
|
3930
|
-
* @param folderId - The folder ID to get users from
|
|
3999
|
+
* @param folderId - The folder ID to get task users from
|
|
3931
4000
|
* @param options - Optional query and pagination parameters
|
|
3932
|
-
* @returns Promise resolving to either an array of users NonPaginatedResponse<UserLoginInfo> or a PaginatedResponse<UserLoginInfo> when pagination options are used.
|
|
4001
|
+
* @returns Promise resolving to either an array of task users NonPaginatedResponse<UserLoginInfo> or a PaginatedResponse<UserLoginInfo> when pagination options are used.
|
|
3933
4002
|
* {@link UserLoginInfo}
|
|
3934
4003
|
* @example
|
|
3935
4004
|
* ```typescript
|
|
3936
|
-
* // Get users from a folder
|
|
4005
|
+
* // Get task users from a folder
|
|
3937
4006
|
* const users = await tasks.getUsers(<folderId>);
|
|
3938
4007
|
*
|
|
3939
4008
|
* // Access user properties
|
|
@@ -5892,6 +5961,13 @@ interface RawJobGetResponse extends FolderProperties {
|
|
|
5892
5961
|
/** Error details for the job, or null if the job has no errors */
|
|
5893
5962
|
jobError: JobError | null;
|
|
5894
5963
|
}
|
|
5964
|
+
/**
|
|
5965
|
+
* Options for resuming a suspended job
|
|
5966
|
+
*/
|
|
5967
|
+
interface JobResumeOptions {
|
|
5968
|
+
/** Input arguments to pass to the resumed job */
|
|
5969
|
+
inputArguments?: Record<string, unknown>;
|
|
5970
|
+
}
|
|
5895
5971
|
/**
|
|
5896
5972
|
* Options for getting all jobs
|
|
5897
5973
|
*/
|
|
@@ -5906,6 +5982,18 @@ type JobGetAllOptions = RequestOptions & PaginationOptions & {
|
|
|
5906
5982
|
*/
|
|
5907
5983
|
interface JobGetByIdOptions extends BaseOptions {
|
|
5908
5984
|
}
|
|
5985
|
+
/**
|
|
5986
|
+
* Options for stopping jobs
|
|
5987
|
+
*/
|
|
5988
|
+
interface JobStopOptions {
|
|
5989
|
+
/**
|
|
5990
|
+
* The stop strategy to use.
|
|
5991
|
+
* - `SoftStop` — requests graceful cancellation; the job completes its current activity before stopping
|
|
5992
|
+
* - `Kill` — requests immediate termination of the job
|
|
5993
|
+
* @default StopStrategy.SoftStop
|
|
5994
|
+
*/
|
|
5995
|
+
strategy?: StopStrategy;
|
|
5996
|
+
}
|
|
5909
5997
|
|
|
5910
5998
|
/** Combined response type for job data with bound methods. */
|
|
5911
5999
|
type JobGetResponse = RawJobGetResponse & JobMethods;
|
|
@@ -6028,6 +6116,85 @@ interface JobServiceModel {
|
|
|
6028
6116
|
* ```
|
|
6029
6117
|
*/
|
|
6030
6118
|
getOutput(jobKey: string, folderId: number): Promise<Record<string, unknown> | null>;
|
|
6119
|
+
/**
|
|
6120
|
+
* Stops one or more jobs by their UUID keys.
|
|
6121
|
+
*
|
|
6122
|
+
* Sends a stop request for the specified jobs to the Orchestrator. Throws if any keys cannot be resolved.
|
|
6123
|
+
*
|
|
6124
|
+
* @param jobKeys - Array of job UUID keys to stop (e.g., from {@link JobGetResponse}.key)
|
|
6125
|
+
* @param folderId - The folder ID where the jobs reside (required)
|
|
6126
|
+
* @param options - Optional {@link JobStopOptions} including stop strategy
|
|
6127
|
+
* @returns Promise that resolves when the jobs are stopped successfully, or rejects on failure
|
|
6128
|
+
*
|
|
6129
|
+
* @example
|
|
6130
|
+
* ```typescript
|
|
6131
|
+
* // Stop a single job with default soft stop
|
|
6132
|
+
* await jobs.stop([<jobKey>], <folderId>);
|
|
6133
|
+
* ```
|
|
6134
|
+
*
|
|
6135
|
+
* @example
|
|
6136
|
+
* ```typescript
|
|
6137
|
+
* import { StopStrategy } from '@uipath/uipath-typescript/jobs';
|
|
6138
|
+
*
|
|
6139
|
+
* // Force-kill multiple jobs
|
|
6140
|
+
* await jobs.stop(
|
|
6141
|
+
* [<jobKey1>, <jobKey2>],
|
|
6142
|
+
* <folderId>,
|
|
6143
|
+
* { strategy: StopStrategy.Kill }
|
|
6144
|
+
* );
|
|
6145
|
+
* ```
|
|
6146
|
+
*/
|
|
6147
|
+
stop(jobKeys: string[], folderId: number, options?: JobStopOptions): Promise<void>;
|
|
6148
|
+
/**
|
|
6149
|
+
* Resumes a suspended job.
|
|
6150
|
+
*
|
|
6151
|
+
* Sends a resume request to a job that is currently in the `Suspended` state.
|
|
6152
|
+
* The job transitions to `Resumed` and then to `Running` as it continues execution. Optionally pass
|
|
6153
|
+
* input arguments to provide data for the resumed workflow.
|
|
6154
|
+
*
|
|
6155
|
+
* @param jobKey - The unique key (GUID) of the suspended job to resume
|
|
6156
|
+
* @param folderId - The folder ID where the job resides
|
|
6157
|
+
* @param options - Optional parameters including input arguments
|
|
6158
|
+
* @returns Promise that resolves when the job is resumed successfully, or rejects on failure
|
|
6159
|
+
*
|
|
6160
|
+
* @example
|
|
6161
|
+
* ```typescript
|
|
6162
|
+
* // Resume a suspended job
|
|
6163
|
+
* await jobs.resume(<jobKey>, <folderId>);
|
|
6164
|
+
* ```
|
|
6165
|
+
*
|
|
6166
|
+
* @example
|
|
6167
|
+
* ```typescript
|
|
6168
|
+
* // Resume with input arguments
|
|
6169
|
+
* await jobs.resume(<jobKey>, <folderId>, {
|
|
6170
|
+
* inputArguments: { approved: true }
|
|
6171
|
+
* });
|
|
6172
|
+
* ```
|
|
6173
|
+
*/
|
|
6174
|
+
resume(jobKey: string, folderId: number, options?: JobResumeOptions): Promise<void>;
|
|
6175
|
+
/**
|
|
6176
|
+
* Restarts a job in a final state (Successful, Faulted, or Stopped).
|
|
6177
|
+
*
|
|
6178
|
+
* Creates a **new** job execution from a previously successful, faulted, or stopped job.
|
|
6179
|
+
* The new job has its own unique `key`, starts in `Pending` state, and uses
|
|
6180
|
+
* the same process and input arguments as the original job.
|
|
6181
|
+
*
|
|
6182
|
+
* To monitor the new job's progress, poll with {@link getById}
|
|
6183
|
+
* using the returned job's key until the state reaches a final value.
|
|
6184
|
+
*
|
|
6185
|
+
* @param jobKey - The unique key (GUID) of the job to restart
|
|
6186
|
+
* @param folderId - The folder ID where the job resides
|
|
6187
|
+
* @returns Promise resolving to the new {@link JobGetResponse} with full job details
|
|
6188
|
+
*
|
|
6189
|
+
* @example
|
|
6190
|
+
* ```typescript
|
|
6191
|
+
* // Restart a faulted job
|
|
6192
|
+
* const newJob = await jobs.restart(<jobKey>, <folderId>);
|
|
6193
|
+
* console.log(newJob.state); // 'Pending'
|
|
6194
|
+
* console.log(newJob.key); // new job key (different from original)
|
|
6195
|
+
* ```
|
|
6196
|
+
*/
|
|
6197
|
+
restart(jobKey: string, folderId: number): Promise<JobGetResponse>;
|
|
6031
6198
|
}
|
|
6032
6199
|
/**
|
|
6033
6200
|
* Methods available on job response objects.
|
|
@@ -6054,6 +6221,38 @@ interface JobMethods {
|
|
|
6054
6221
|
* ```
|
|
6055
6222
|
*/
|
|
6056
6223
|
getOutput(): Promise<Record<string, unknown> | null>;
|
|
6224
|
+
/**
|
|
6225
|
+
* Stops this job.
|
|
6226
|
+
*
|
|
6227
|
+
* Sends a stop request for this job to the Orchestrator.
|
|
6228
|
+
*
|
|
6229
|
+
* @param options - Optional {@link JobStopOptions} including stop strategy (defaults to SoftStop)
|
|
6230
|
+
* @returns Promise that resolves when the jobs are stopped successfully, or rejects on failure
|
|
6231
|
+
*
|
|
6232
|
+
* @example
|
|
6233
|
+
* ```typescript
|
|
6234
|
+
* const allJobs = await jobs.getAll({ folderId: <folderId> });
|
|
6235
|
+
* const runningJob = allJobs.items.find(j => j.state === JobState.Running);
|
|
6236
|
+
*
|
|
6237
|
+
* if (runningJob) {
|
|
6238
|
+
* await runningJob.stop();
|
|
6239
|
+
* }
|
|
6240
|
+
* ```
|
|
6241
|
+
*/
|
|
6242
|
+
stop(options?: JobStopOptions): Promise<void>;
|
|
6243
|
+
/**
|
|
6244
|
+
* Resumes this suspended job.
|
|
6245
|
+
*
|
|
6246
|
+
* @param options - Optional parameters including input arguments
|
|
6247
|
+
* @returns Promise that resolves when the job is resumed successfully, or rejects on failure
|
|
6248
|
+
*/
|
|
6249
|
+
resume(options?: JobResumeOptions): Promise<void>;
|
|
6250
|
+
/**
|
|
6251
|
+
* Restarts this job, creating a new execution with a new key.
|
|
6252
|
+
*
|
|
6253
|
+
* @returns Promise resolving to the new {@link JobGetResponse} with full job details
|
|
6254
|
+
*/
|
|
6255
|
+
restart(): Promise<JobGetResponse>;
|
|
6057
6256
|
}
|
|
6058
6257
|
/**
|
|
6059
6258
|
* Creates a job response with bound methods.
|
|
@@ -6524,15 +6723,15 @@ declare class TaskService extends BaseService implements TaskServiceModel {
|
|
|
6524
6723
|
*/
|
|
6525
6724
|
create(task: TaskCreateOptions, folderId: number): Promise<TaskCreateResponse>;
|
|
6526
6725
|
/**
|
|
6527
|
-
* Gets users in the given folder who have Tasks.View and Tasks.Edit permissions
|
|
6726
|
+
* Gets task users (users, robots, groups etc) in the given folder who have Tasks.View and Tasks.Edit permissions
|
|
6528
6727
|
*
|
|
6529
6728
|
* The method returns either:
|
|
6530
|
-
* - An array of users (when no pagination parameters are provided)
|
|
6729
|
+
* - An array of task users (when no pagination parameters are provided)
|
|
6531
6730
|
* - A paginated result with navigation cursors (when any pagination parameter is provided)
|
|
6532
6731
|
*
|
|
6533
|
-
* @param folderId - The folder ID to get users from
|
|
6732
|
+
* @param folderId - The folder ID to get task users from
|
|
6534
6733
|
* @param options - Optional query and pagination parameters
|
|
6535
|
-
* @returns Promise resolving to an array of users or paginated result
|
|
6734
|
+
* @returns Promise resolving to an array of task users or paginated result
|
|
6536
6735
|
*
|
|
6537
6736
|
* @example
|
|
6538
6737
|
* ```typescript
|
|
@@ -6543,7 +6742,7 @@ declare class TaskService extends BaseService implements TaskServiceModel {
|
|
|
6543
6742
|
* // Standard array return
|
|
6544
6743
|
* const users = await tasks.getUsers(123);
|
|
6545
6744
|
*
|
|
6546
|
-
* // Get users with filtering
|
|
6745
|
+
* // Get task users with filtering
|
|
6547
6746
|
* const users = await tasks.getUsers(123, {
|
|
6548
6747
|
* filter: "name eq 'abc'"
|
|
6549
6748
|
* });
|
|
@@ -7025,6 +7224,12 @@ interface ExternalValue {
|
|
|
7025
7224
|
* from which the data can be downloaded.
|
|
7026
7225
|
*/
|
|
7027
7226
|
type InlineOrExternalValue<T> = InlineValue<T> | ExternalValue;
|
|
7227
|
+
/**
|
|
7228
|
+
* Input arguments passed in to the execution of the agent on each exchange. The input arguments are
|
|
7229
|
+
* expected to match the input-schema defined in the Agent definition. Currently, only inline values
|
|
7230
|
+
* are supported and the total serialized JSON payload must be less than 4,000 characters.
|
|
7231
|
+
*/
|
|
7232
|
+
type AgentInput = InlineValue<JSONObject>;
|
|
7028
7233
|
/**
|
|
7029
7234
|
* Tool call input value type.
|
|
7030
7235
|
*/
|
|
@@ -7396,6 +7601,10 @@ interface RawConversationGetResponse {
|
|
|
7396
7601
|
* Whether the conversation's job is running locally.
|
|
7397
7602
|
*/
|
|
7398
7603
|
isLocalJobExecution?: boolean;
|
|
7604
|
+
/**
|
|
7605
|
+
* Optional agent input arguments for the conversation.
|
|
7606
|
+
*/
|
|
7607
|
+
agentInput?: AgentInput;
|
|
7399
7608
|
}
|
|
7400
7609
|
|
|
7401
7610
|
/**
|
|
@@ -10310,7 +10519,7 @@ interface ConversationServiceModel {
|
|
|
10310
10519
|
* @param options - Optional settings for the conversation
|
|
10311
10520
|
* @returns Promise resolving to {@link ConversationCreateResponse} with bound methods
|
|
10312
10521
|
*
|
|
10313
|
-
* @example
|
|
10522
|
+
* @example Basic usage
|
|
10314
10523
|
* ```typescript
|
|
10315
10524
|
* const conversation = await conversationalAgent.conversations.create(
|
|
10316
10525
|
* agentId,
|
|
@@ -10327,6 +10536,19 @@ interface ConversationServiceModel {
|
|
|
10327
10536
|
* // Delete the conversation
|
|
10328
10537
|
* await conversation.delete();
|
|
10329
10538
|
* ```
|
|
10539
|
+
*
|
|
10540
|
+
* @example With agent input arguments
|
|
10541
|
+
* ```typescript
|
|
10542
|
+
* const conversation = await conversationalAgent.conversations.create(
|
|
10543
|
+
* agentId,
|
|
10544
|
+
* folderId,
|
|
10545
|
+
* {
|
|
10546
|
+
* agentInput: {
|
|
10547
|
+
* inline: { userId: 'user-123', language: 'en' }
|
|
10548
|
+
* }
|
|
10549
|
+
* }
|
|
10550
|
+
* );
|
|
10551
|
+
* ```
|
|
10330
10552
|
*/
|
|
10331
10553
|
create(agentId: number, folderId: number, options?: ConversationCreateOptions): Promise<ConversationCreateResponse>;
|
|
10332
10554
|
/**
|
|
@@ -10562,6 +10784,19 @@ interface ConversationServiceModel {
|
|
|
10562
10784
|
* @internal
|
|
10563
10785
|
*/
|
|
10564
10786
|
onConnectionStatusChanged(handler: ConnectionStatusChangedHandler): () => void;
|
|
10787
|
+
/**
|
|
10788
|
+
* Closes the WebSocket connection and releases all session resources.
|
|
10789
|
+
*
|
|
10790
|
+
* In Node.js the WebSocket keeps the event loop alive until disconnected,
|
|
10791
|
+
* so call this to allow the process to exit cleanly. In the browser the
|
|
10792
|
+
* runtime handles socket cleanup on page unload, so this is effectively a no-op.
|
|
10793
|
+
*
|
|
10794
|
+
* @example
|
|
10795
|
+
* ```typescript
|
|
10796
|
+
* conversationalAgent.conversations.disconnect();
|
|
10797
|
+
* ```
|
|
10798
|
+
*/
|
|
10799
|
+
disconnect(): void;
|
|
10565
10800
|
}
|
|
10566
10801
|
/**
|
|
10567
10802
|
* Methods interface that will be added to conversation objects
|
|
@@ -10725,6 +10960,8 @@ interface ConversationCreateOptions {
|
|
|
10725
10960
|
traceId?: string;
|
|
10726
10961
|
/** Optional configuration for job start behavior */
|
|
10727
10962
|
jobStartOverrides?: ConversationJobStartOverrides;
|
|
10963
|
+
/** Input arguments for the agent */
|
|
10964
|
+
agentInput?: AgentInput;
|
|
10728
10965
|
}
|
|
10729
10966
|
interface ConversationUpdateOptions {
|
|
10730
10967
|
/** Human-readable label for the conversation */
|
|
@@ -10735,6 +10972,8 @@ interface ConversationUpdateOptions {
|
|
|
10735
10972
|
jobKey?: string;
|
|
10736
10973
|
/** Whether the conversation's job is running locally */
|
|
10737
10974
|
isLocalJobExecution?: boolean;
|
|
10975
|
+
/** Input arguments for the agent */
|
|
10976
|
+
agentInput?: AgentInput;
|
|
10738
10977
|
}
|
|
10739
10978
|
type ConversationGetAllOptions = PaginationOptions & {
|
|
10740
10979
|
/** Sort order for conversations */
|
|
@@ -11267,6 +11506,142 @@ interface ConversationalAgentOptions {
|
|
|
11267
11506
|
logLevel?: LogLevel;
|
|
11268
11507
|
}
|
|
11269
11508
|
|
|
11509
|
+
/**
|
|
11510
|
+
* Represents a category that can be associated with feedback.
|
|
11511
|
+
* Default categories (Output, Agent Error, Agent Plan Execution) are auto-created per tenant.
|
|
11512
|
+
*/
|
|
11513
|
+
interface FeedbackCategory {
|
|
11514
|
+
/** Unique identifier of the feedback category */
|
|
11515
|
+
id: string;
|
|
11516
|
+
/** Category name (max 256 characters, unique per tenant) */
|
|
11517
|
+
category: string;
|
|
11518
|
+
/** Timestamp when the category was created */
|
|
11519
|
+
createdAt: string;
|
|
11520
|
+
/** Whether this is a system default category (e.g., Output, Agent Error, Agent Plan Execution) */
|
|
11521
|
+
isDefault: boolean;
|
|
11522
|
+
/** Whether this category applies to positive feedback */
|
|
11523
|
+
isPositive: boolean;
|
|
11524
|
+
/** Whether this category applies to negative feedback */
|
|
11525
|
+
isNegative: boolean;
|
|
11526
|
+
}
|
|
11527
|
+
/**
|
|
11528
|
+
* Status of a feedback entry in the review workflow
|
|
11529
|
+
*/
|
|
11530
|
+
declare enum FeedbackStatus {
|
|
11531
|
+
/** Feedback is awaiting review */
|
|
11532
|
+
Pending = 0,
|
|
11533
|
+
/** Feedback has been approved and confirmed */
|
|
11534
|
+
Approved = 1,
|
|
11535
|
+
/** Feedback has been dismissed */
|
|
11536
|
+
Dismissed = 2
|
|
11537
|
+
}
|
|
11538
|
+
/**
|
|
11539
|
+
* Complete feedback object returned from the API
|
|
11540
|
+
*/
|
|
11541
|
+
interface FeedbackGetResponse {
|
|
11542
|
+
/** Unique identifier of the feedback entry */
|
|
11543
|
+
id: string;
|
|
11544
|
+
/** Trace identifier linking feedback to a specific agent execution */
|
|
11545
|
+
traceId: string;
|
|
11546
|
+
/** Span identifier representing a specific operation within the trace */
|
|
11547
|
+
spanId: string;
|
|
11548
|
+
/** Identifier of the agent that generated the response being reviewed */
|
|
11549
|
+
agentId: string | null;
|
|
11550
|
+
/** Version of the agent at the time the feedback was given (max 100 characters) */
|
|
11551
|
+
agentVersion?: string;
|
|
11552
|
+
/** Optional text comment provided by the user (max 4000 characters) */
|
|
11553
|
+
comment?: string;
|
|
11554
|
+
/** Optional metadata string associated with the feedback (max 4000 characters) */
|
|
11555
|
+
metadata?: string;
|
|
11556
|
+
/** Whether the feedback is positive (thumbs up) or negative (thumbs down) */
|
|
11557
|
+
isPositive: boolean;
|
|
11558
|
+
/** Categories associated with this feedback entry */
|
|
11559
|
+
feedbackCategories: FeedbackCategory[];
|
|
11560
|
+
/** Email address of the user who submitted the feedback */
|
|
11561
|
+
userEmail?: string;
|
|
11562
|
+
/** Current status of the feedback in the review workflow */
|
|
11563
|
+
status: FeedbackStatus;
|
|
11564
|
+
/** Timestamp when the feedback was created */
|
|
11565
|
+
createdTime: string;
|
|
11566
|
+
/** Timestamp when the feedback was last updated */
|
|
11567
|
+
updatedTime: string;
|
|
11568
|
+
}
|
|
11569
|
+
/**
|
|
11570
|
+
* Options for retrieving multiple feedback entries
|
|
11571
|
+
*/
|
|
11572
|
+
type FeedbackGetAllOptions = PaginationOptions & {
|
|
11573
|
+
/** Filter by agent identifier */
|
|
11574
|
+
agentId?: string;
|
|
11575
|
+
/** Filter by agent version */
|
|
11576
|
+
agentVersion?: string;
|
|
11577
|
+
/** Filter by feedback status */
|
|
11578
|
+
status?: FeedbackStatus;
|
|
11579
|
+
/** Filter by OpenTelemetry trace identifier */
|
|
11580
|
+
traceId?: string;
|
|
11581
|
+
/** Filter by OpenTelemetry span identifier */
|
|
11582
|
+
spanId?: string;
|
|
11583
|
+
};
|
|
11584
|
+
|
|
11585
|
+
/**
|
|
11586
|
+
* Service for managing UiPath Agent Feedback.
|
|
11587
|
+
*
|
|
11588
|
+
* Feedback allows you to collect and manage user feedback on AI agent responses,
|
|
11589
|
+
* including positive/negative ratings, comments, and categorized feedback.
|
|
11590
|
+
* This is useful for monitoring agent quality, identifying areas for improvement,
|
|
11591
|
+
* and building datasets for fine-tuning. [Feedback on agent runs](https://docs.uipath.com/agents/automation-cloud/latest/user-guide/agent-traces#feedback-on-agent-runs)
|
|
11592
|
+
*
|
|
11593
|
+
* ### Usage
|
|
11594
|
+
*
|
|
11595
|
+
* Prerequisites: Initialize the SDK first - see [Getting Started](/uipath-typescript/getting-started/#import-initialize)
|
|
11596
|
+
*
|
|
11597
|
+
* ```typescript
|
|
11598
|
+
* import { Feedback } from '@uipath/uipath-typescript/feedback';
|
|
11599
|
+
*
|
|
11600
|
+
* const feedback = new Feedback(sdk);
|
|
11601
|
+
* const allFeedback = await feedback.getAll();
|
|
11602
|
+
* ```
|
|
11603
|
+
*/
|
|
11604
|
+
interface FeedbackServiceModel {
|
|
11605
|
+
/**
|
|
11606
|
+
* Gets all feedback across all agents in the tenant, with optional filters.
|
|
11607
|
+
*
|
|
11608
|
+
* Retrieves a list of feedback entries, optionally filtered by agent, trace, span, status, or agent version.
|
|
11609
|
+
* When no pagination options are provided, the API returns up to 100 items. When pagination options are provided without a pageSize, the SDK defaults to 50 items per page.
|
|
11610
|
+
*
|
|
11611
|
+
* @param options - Optional query parameters for filtering and pagination
|
|
11612
|
+
* @returns Promise resolving to {@link NonPaginatedResponse} of {@link FeedbackGetResponse} without pagination options, or {@link PaginatedResponse} of {@link FeedbackGetResponse} when pagination options are used.
|
|
11613
|
+
* @example
|
|
11614
|
+
* ```typescript
|
|
11615
|
+
* import { Feedback, FeedbackStatus } from '@uipath/uipath-typescript/feedback';
|
|
11616
|
+
*
|
|
11617
|
+
* // Get all feedback (returns API default page size)
|
|
11618
|
+
* const allFeedback = await feedback.getAll();
|
|
11619
|
+
*
|
|
11620
|
+
* // Get the agentId from a feedback entry
|
|
11621
|
+
* const agentId = allFeedback.items[0].agentId;
|
|
11622
|
+
*
|
|
11623
|
+
* // Get feedback for a specific agent
|
|
11624
|
+
* const agentFeedback = await feedback.getAll({
|
|
11625
|
+
* agentId,
|
|
11626
|
+
* });
|
|
11627
|
+
*
|
|
11628
|
+
* // First page with pagination
|
|
11629
|
+
* const page1 = await feedback.getAll({ pageSize: 10 });
|
|
11630
|
+
*
|
|
11631
|
+
* // Navigate using cursor
|
|
11632
|
+
* if (page1.hasNextPage) {
|
|
11633
|
+
* const page2 = await feedback.getAll({ cursor: page1.nextCursor });
|
|
11634
|
+
* }
|
|
11635
|
+
*
|
|
11636
|
+
* // Filter by status
|
|
11637
|
+
* const activeFeedback = await feedback.getAll({
|
|
11638
|
+
* status: FeedbackStatus.Pending,
|
|
11639
|
+
* });
|
|
11640
|
+
* ```
|
|
11641
|
+
*/
|
|
11642
|
+
getAll<T extends FeedbackGetAllOptions = FeedbackGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<FeedbackGetResponse> : NonPaginatedResponse<FeedbackGetResponse>>;
|
|
11643
|
+
}
|
|
11644
|
+
|
|
11270
11645
|
/**
|
|
11271
11646
|
* Error thrown when authorization fails (403 errors)
|
|
11272
11647
|
* Common scenarios:
|
|
@@ -11611,7 +11986,7 @@ declare const telemetryClient: TelemetryClient;
|
|
|
11611
11986
|
* SDK Telemetry constants
|
|
11612
11987
|
*/
|
|
11613
11988
|
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";
|
|
11614
|
-
declare const SDK_VERSION = "1.3.
|
|
11989
|
+
declare const SDK_VERSION = "1.3.4";
|
|
11615
11990
|
declare const VERSION = "Version";
|
|
11616
11991
|
declare const SERVICE = "Service";
|
|
11617
11992
|
declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
|
|
@@ -11626,5 +12001,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
|
|
|
11626
12001
|
declare const SDK_RUN_EVENT = "Sdk.Run";
|
|
11627
12002
|
declare const UNKNOWN = "";
|
|
11628
12003
|
|
|
11629
|
-
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, 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, 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 };
|
|
11630
|
-
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, FeedbackCreateResponse, 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, JobServiceModel, 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 };
|
|
12004
|
+
export { APP_NAME, AgentMap, AssetValueScope, AssetValueType, AuthenticationError, AuthorizationError, BucketOptions, CLOUD_CLIENT_ID, CLOUD_ORGANIZATION_NAME, CLOUD_REDIRECT_URI, CLOUD_ROLE_NAME, CLOUD_TENANT_NAME, CLOUD_URL, CONNECTION_STRING, CitationErrorType, ConversationMap, DEFAULT_ITEMS_FIELD, DEFAULT_PAGE_SIZE, DEFAULT_TOTAL_COUNT_FIELD, DataDirectionType, DebugMode, EntityFieldDataType, EntityType, ErrorType, EscalationActionType, EscalationRecipientScope, EscalationTriggerType, ExchangeMap, FeedbackRating, FeedbackStatus, FieldDisplayType, HttpStatus, InputStreamSpeechSensitivity, InterruptType, JobPriority, JobSourceType, JobState, JobSubState, JobType, JoinType, LogicalOperator, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, QueryFilterOperator, RateLimitError, ReferenceType, RemoteControlAccess, RobotSize, RuntimeType, SDK_LOGGER_NAME, SDK_RUN_EVENT, SDK_SERVICE_NAME, SDK_VERSION, SERVICE, SLADurationUnit, ServerError, ServerlessJobType, SortOrder, StageTaskType, StartStrategy, StopStrategy, TargetFramework, TaskActivityType, TaskPriority, TaskSlaCriteria, TaskSlaStatus, TaskSourceName, TaskStatus, TaskType, TaskUserType, UNKNOWN, UiPath, UiPathError, UiPathMetaTags, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createJobWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
|
|
12005
|
+
export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentInput, AgentMethods, AgentStartingPrompt, ArgumentMetadata, AssetGetAllOptions, AssetGetByIdOptions, AssetGetResponse, AssetServiceModel, AsyncInputStream, AsyncInputStreamChunkEvent, AsyncInputStreamEndEvent, AsyncInputStreamEvent, AsyncInputStreamStartEvent, AsyncToolCallStream, AttachmentGetByIdOptions, AttachmentResponse, AttachmentServiceModel, BaseConfig, BaseOptions, BaseProcessStartRequest, BlobItem, BodyOptions, BpmnXmlString, BucketGetAllOptions, BucketGetByIdOptions, BucketGetFileMetaDataOptions, BucketGetFileMetaDataResponse, BucketGetFileMetaDataWithPaginationOptions, BucketGetReadUriOptions, BucketGetResponse, BucketGetUriOptions, BucketGetUriResponse, BucketServiceModel, BucketUploadFileOptions, BucketUploadResponse, CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetStageResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstancesServiceModel, CasesServiceModel, ChoiceSetGetAllResponse, ChoiceSetGetByIdOptions, ChoiceSetGetResponse, ChoiceSetServiceModel, Citation, CitationEndEvent, CitationError, CitationEvent, CitationOptions, CitationSource, CitationSourceBase, CitationSourceMedia, CitationSourceUrl, CitationStartEvent, CollectionResponse, CompletedContentPart, CompletedMessage, CompletedToolCall, ContentPart, ContentPartChunkEvent, ContentPartData, ContentPartEndEvent, ContentPartEvent, ContentPartGetResponse, ContentPartInterrupted, ContentPartStartEvent, ContentPartStartMetaData, ContentPartStream, ConversationAttachmentCreateResponse, ConversationAttachmentUploadResponse, ConversationCreateOptions, ConversationCreateResponse, ConversationDeleteResponse, ConversationEvent, ConversationExchangeServiceModel, ConversationGetAllOptions, ConversationGetResponse, ConversationJobStartOverrides, ConversationMethods, ConversationServiceModel, ConversationSessionMethods, ConversationSessionOptions, ConversationUpdateOptions, ConversationUpdateResponse, ConversationalAgentOptions, ConversationalAgentServiceModel, CreateFeedbackOptions, CustomKeyValuePair, ElementExecutionMetadata, ElementMetaData, ElementRunMetadata, EntityBatchInsertOptions, EntityBatchInsertResponse, EntityCreateFieldOptions, EntityCreateOptions, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFieldBase, EntityFieldUpdateOptions, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityImportRecordsResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityQueryFilter, EntityQueryFilterGroup, EntityQueryRecordsOptions, EntityQueryRecordsResponse, EntityQuerySortOption, EntityRecord, EntityRemoveFieldOptions, EntityServiceModel, EntityUpdateByIdOptions, EntityUpdateOptions, EntityUpdateRecordOptions, EntityUpdateRecordResponse, EntityUpdateRecordsOptions, EntityUpdateResponse, EntityUploadAttachmentOptions, EntityUploadAttachmentResponse, ErrorEndEvent, ErrorEvent, ErrorStartEvent, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, Exchange, ExchangeEndEvent, ExchangeEvent, ExchangeGetAllOptions, ExchangeGetByIdOptions, ExchangeGetResponse, ExchangeServiceModel, ExchangeStartEvent, ExchangeStream, ExternalConnection, ExternalField, ExternalFieldMapping, ExternalObject, ExternalSourceFields, ExternalValue, FailureRecord, FeatureFlags, FeedbackCategory, FeedbackCreateResponse, FeedbackGetAllOptions, FeedbackGetResponse, FeedbackServiceModel, Field, FieldDataType, FieldMetaData, FileUploadAccess, FolderProperties, GenericInterruptStartEvent, GlobalVariableMetaData, HasPaginationOptions, Headers, HttpMethod, InlineOrExternalValue, InlineValue, Interrupt, InterruptEndEvent, InterruptEvent, InterruptStartEvent, JSONArray, JSONObject, JSONPrimitive, JSONValue, JobAttachment, JobError, JobGetAllOptions, JobGetByIdOptions, JobGetResponse, JobMethods, JobResumeOptions, JobServiceModel, JobStopOptions, LabelUpdatedEvent, Machine, MaestroProcessGetAllResponse, MaestroProcessesServiceModel, MakeOptional, MakeRequired, Message, MessageEndEvent, MessageEvent, MessageGetResponse, MessageServiceModel, MessageStartEvent, MessageStream, MetaData, MetaEvent, NonPaginatedResponse, OAuthFields, OperationResponse, PaginatedResponse, PaginationCursor, PaginationMetadata, PaginationMethodUnion, PaginationOptions, PartialUiPathConfig, ProcessGetAllOptions, ProcessGetByIdOptions, ProcessGetResponse, ProcessIncidentGetAllResponse, ProcessIncidentGetResponse, ProcessIncidentsServiceModel, ProcessInstanceExecutionHistoryResponse, ProcessInstanceGetAllOptions, ProcessInstanceGetAllWithPaginationOptions, ProcessInstanceGetResponse, ProcessInstanceGetVariablesOptions, ProcessInstanceGetVariablesResponse, ProcessInstanceMethods, ProcessInstanceOperationOptions, ProcessInstanceOperationResponse, ProcessInstanceRun, ProcessInstancesServiceModel, ProcessMetadata, ProcessMethods, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, QueryParams, QueueGetAllOptions, QueueGetByIdOptions, QueueGetResponse, QueueServiceModel, RawAgentGetByIdResponse, RawAgentGetResponse, RawCaseInstanceGetResponse, RawConversationGetResponse, RawEntityGetResponse, RawJobGetResponse, RawMaestroProcessGetAllResponse, RawProcessInstanceGetResponse, RawTaskCreateResponse, RawTaskGetResponse, RequestOptions, RequestSpec, ResponseDictionary, ResponseType, RetryOptions, RobotMetadata, SessionCapabilities, SessionEndEvent, SessionEndingEvent, SessionStartEvent, SessionStartedEvent, SessionStream, Simplify, SourceJoinCriteria, SqlType, StageSLA, StageTask, Tag, TaskActivity, TaskAssignOptions, TaskAssignment, TaskAssignmentOptions, TaskAssignmentResponse, TaskBaseResponse, TaskCompleteOptions, TaskCompletionOptions, TaskCreateOptions, TaskCreateResponse, TaskGetAllOptions, TaskGetByIdOptions, TaskGetResponse, TaskGetUsersOptions, TaskMethods, TaskServiceModel, TaskSlaDetail, TaskSource, TasksUnassignOptions, TimeoutOptions, ToolCall, ToolCallConfirmationEndValue, ToolCallConfirmationInterruptStartEvent, ToolCallConfirmationValue, ToolCallEndEvent, ToolCallEvent, ToolCallInputValue, ToolCallOutputValue, ToolCallResult, ToolCallStartEvent, ToolCallStream, UiPathSDKConfig, UserLoginInfo, UserServiceModel, UserSettingsGetResponse, UserSettingsUpdateOptions, UserSettingsUpdateResponse };
|