@uipath/uipath-typescript 1.2.1 → 1.3.0
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 +1 -1
- package/dist/assets/index.d.ts +2 -1
- package/dist/assets/index.mjs +1 -1
- package/dist/attachments/index.cjs +1944 -0
- package/dist/attachments/index.d.ts +399 -0
- package/dist/attachments/index.mjs +1941 -0
- package/dist/buckets/index.cjs +1 -1
- package/dist/buckets/index.d.ts +4 -2
- package/dist/buckets/index.mjs +1 -1
- package/dist/cases/index.cjs +95 -48
- package/dist/cases/index.d.ts +31 -2
- package/dist/cases/index.mjs +95 -48
- package/dist/conversational-agent/index.cjs +1 -1
- package/dist/conversational-agent/index.d.ts +10 -5
- package/dist/conversational-agent/index.mjs +1 -1
- package/dist/core/index.cjs +109 -17
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.mjs +109 -17
- package/dist/entities/index.cjs +11 -27
- package/dist/entities/index.d.ts +38 -26
- package/dist/entities/index.mjs +11 -27
- package/dist/index.cjs +683 -284
- package/dist/index.d.ts +549 -75
- package/dist/index.mjs +683 -285
- package/dist/index.umd.js +680 -281
- package/dist/jobs/index.cjs +2264 -0
- package/dist/jobs/index.d.ts +860 -0
- package/dist/jobs/index.mjs +2260 -0
- package/dist/maestro-processes/index.cjs +1 -1
- package/dist/maestro-processes/index.mjs +1 -1
- package/dist/processes/index.cjs +67 -1
- package/dist/processes/index.d.ts +80 -15
- package/dist/processes/index.mjs +68 -2
- package/dist/queues/index.cjs +1 -1
- package/dist/queues/index.d.ts +2 -1
- package/dist/queues/index.mjs +1 -1
- package/dist/tasks/index.cjs +1319 -1272
- package/dist/tasks/index.d.ts +331 -287
- package/dist/tasks/index.mjs +1319 -1272
- package/package.json +23 -2
package/dist/index.d.ts
CHANGED
|
@@ -473,7 +473,7 @@ interface EntityRecord {
|
|
|
473
473
|
/**
|
|
474
474
|
* Unique identifier for the record
|
|
475
475
|
*/
|
|
476
|
-
|
|
476
|
+
Id: string;
|
|
477
477
|
/**
|
|
478
478
|
* Additional dynamic fields for the entity
|
|
479
479
|
*/
|
|
@@ -518,29 +518,35 @@ interface EntityInsertOptions {
|
|
|
518
518
|
/**
|
|
519
519
|
* Options for inserting a single record into an entity
|
|
520
520
|
*/
|
|
521
|
-
|
|
521
|
+
interface EntityInsertRecordOptions extends EntityInsertOptions {
|
|
522
|
+
}
|
|
522
523
|
/**
|
|
523
524
|
* Options for batch inserting data into an entity
|
|
524
525
|
* @deprecated Use {@link EntityInsertRecordsOptions} instead for better clarity on inserting multiple records into an entity. This type will be removed in future versions.
|
|
525
526
|
*/
|
|
526
|
-
|
|
527
|
+
interface EntityBatchInsertOptions extends EntityOperationOptions {
|
|
528
|
+
}
|
|
527
529
|
/**
|
|
528
530
|
* Options for inserting multiple records into an entity
|
|
529
531
|
*/
|
|
530
|
-
|
|
532
|
+
interface EntityInsertRecordsOptions extends EntityOperationOptions {
|
|
533
|
+
}
|
|
531
534
|
/**
|
|
532
535
|
* Options for updating a single record in an entity
|
|
533
536
|
*/
|
|
534
|
-
|
|
537
|
+
interface EntityUpdateRecordOptions extends EntityGetRecordByIdOptions {
|
|
538
|
+
}
|
|
535
539
|
/**
|
|
536
540
|
* Options for updating data in an entity
|
|
537
541
|
* @deprecated Use {@link EntityUpdateRecordsOptions} instead for better clarity on updating records in an entity. This type will be removed in future versions.
|
|
538
542
|
*/
|
|
539
|
-
|
|
543
|
+
interface EntityUpdateOptions extends EntityOperationOptions {
|
|
544
|
+
}
|
|
540
545
|
/**
|
|
541
546
|
* Options for updating data in an entity
|
|
542
547
|
*/
|
|
543
|
-
|
|
548
|
+
interface EntityUpdateRecordsOptions extends EntityOperationOptions {
|
|
549
|
+
}
|
|
544
550
|
/**
|
|
545
551
|
* Options for deleting data from an entity
|
|
546
552
|
* @deprecated Use {@link EntityDeleteRecordsOptions} instead for better clarity on deleting records from an entity. This type will be removed in future versions.
|
|
@@ -552,7 +558,8 @@ interface EntityDeleteOptions {
|
|
|
552
558
|
/**
|
|
553
559
|
* Options for deleting records in an entity
|
|
554
560
|
*/
|
|
555
|
-
|
|
561
|
+
interface EntityDeleteRecordsOptions extends EntityDeleteOptions {
|
|
562
|
+
}
|
|
556
563
|
/**
|
|
557
564
|
* Supported file types for attachment upload
|
|
558
565
|
*/
|
|
@@ -591,27 +598,32 @@ interface EntityOperationResponse {
|
|
|
591
598
|
failureRecords: FailureRecord[];
|
|
592
599
|
}
|
|
593
600
|
/**
|
|
594
|
-
* Response from inserting a single record into an entity
|
|
595
|
-
* Returns the inserted record with its generated record ID and other fields
|
|
601
|
+
* Response from inserting a single record into an entity.
|
|
602
|
+
* Returns the inserted record with its generated record ID and other fields.
|
|
596
603
|
*/
|
|
597
|
-
|
|
604
|
+
interface EntityInsertResponse extends EntityRecord {
|
|
605
|
+
}
|
|
598
606
|
/**
|
|
599
|
-
* Response from updating a single record in an entity
|
|
600
|
-
* Returns the updated record
|
|
607
|
+
* Response from updating a single record in an entity.
|
|
608
|
+
* Returns the updated record.
|
|
601
609
|
*/
|
|
602
|
-
|
|
610
|
+
interface EntityUpdateRecordResponse extends EntityRecord {
|
|
611
|
+
}
|
|
603
612
|
/**
|
|
604
613
|
* Response from batch inserting data into an entity
|
|
605
614
|
*/
|
|
606
|
-
|
|
615
|
+
interface EntityBatchInsertResponse extends EntityOperationResponse {
|
|
616
|
+
}
|
|
607
617
|
/**
|
|
608
618
|
* Response from updating data in an entity
|
|
609
619
|
*/
|
|
610
|
-
|
|
620
|
+
interface EntityUpdateResponse extends EntityOperationResponse {
|
|
621
|
+
}
|
|
611
622
|
/**
|
|
612
623
|
* Response from deleting data from an entity
|
|
613
624
|
*/
|
|
614
|
-
|
|
625
|
+
interface EntityDeleteResponse extends EntityOperationResponse {
|
|
626
|
+
}
|
|
615
627
|
/**
|
|
616
628
|
* Entity type enum
|
|
617
629
|
*/
|
|
@@ -922,7 +934,7 @@ interface EntityServiceModel {
|
|
|
922
934
|
* // First, get records to obtain the record ID
|
|
923
935
|
* const records = await entities.getAllRecords(<entityId>);
|
|
924
936
|
* // Get the recordId for the record
|
|
925
|
-
* const recordId = records.items[0].
|
|
937
|
+
* const recordId = records.items[0].Id;
|
|
926
938
|
* // Get the record
|
|
927
939
|
* const record = await entities.getRecordById(<entityId>, recordId);
|
|
928
940
|
*
|
|
@@ -1026,7 +1038,7 @@ interface EntityServiceModel {
|
|
|
1026
1038
|
* Note: Records updated using updateRecordsById will not trigger Data Fabric trigger events. Use {@link updateRecordById} if you need trigger events to fire for each updated record.
|
|
1027
1039
|
*
|
|
1028
1040
|
* @param id - UUID of the entity
|
|
1029
|
-
* @param data - Array of records to update. Each record MUST contain the record
|
|
1041
|
+
* @param data - Array of records to update. Each record MUST contain the record id.
|
|
1030
1042
|
* @param options - Update options
|
|
1031
1043
|
* @returns Promise resolving to update response
|
|
1032
1044
|
* {@link EntityUpdateResponse}
|
|
@@ -1092,7 +1104,7 @@ interface EntityServiceModel {
|
|
|
1092
1104
|
* // First, get records to obtain the record ID
|
|
1093
1105
|
* const records = await entities.getAllRecords("<entityId>");
|
|
1094
1106
|
* // Get the recordId for the record that contains the attachment
|
|
1095
|
-
* const recordId = records.items[0].
|
|
1107
|
+
* const recordId = records.items[0].Id;
|
|
1096
1108
|
*
|
|
1097
1109
|
* // Get the entityId from getAll()
|
|
1098
1110
|
* const allEntities = await entities.getAll();
|
|
@@ -1100,7 +1112,7 @@ interface EntityServiceModel {
|
|
|
1100
1112
|
*
|
|
1101
1113
|
* // Get the recordId from getAllRecords()
|
|
1102
1114
|
* const records = await entities.getAllRecords(entityId);
|
|
1103
|
-
* const recordId = records[0].
|
|
1115
|
+
* const recordId = records[0].Id;
|
|
1104
1116
|
*
|
|
1105
1117
|
* // Download attachment using service method
|
|
1106
1118
|
* const response = await entities.downloadAttachment(entityId, recordId, 'Documents');
|
|
@@ -1152,7 +1164,7 @@ interface EntityServiceModel {
|
|
|
1152
1164
|
*
|
|
1153
1165
|
* // Get the recordId from getAllRecords()
|
|
1154
1166
|
* const records = await entities.getAllRecords(entityId);
|
|
1155
|
-
* const recordId = records[0].
|
|
1167
|
+
* const recordId = records[0].Id;
|
|
1156
1168
|
*
|
|
1157
1169
|
* // Browser: Upload a file from an input element
|
|
1158
1170
|
* const fileInput = document.getElementById('file-input') as HTMLInputElement;
|
|
@@ -1185,7 +1197,7 @@ interface EntityServiceModel {
|
|
|
1185
1197
|
*
|
|
1186
1198
|
* // Get the recordId from getAllRecords()
|
|
1187
1199
|
* const records = await entities.getAllRecords(entityId);
|
|
1188
|
-
* const recordId = records[0].
|
|
1200
|
+
* const recordId = records[0].Id;
|
|
1189
1201
|
*
|
|
1190
1202
|
* // Delete attachment for a specific record and field
|
|
1191
1203
|
* await entities.deleteAttachment(entityId, recordId, 'Documents');
|
|
@@ -1593,7 +1605,7 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
1593
1605
|
*
|
|
1594
1606
|
* // Get the recordId from getAllRecords()
|
|
1595
1607
|
* const records = await entities.getAllRecords(entityId);
|
|
1596
|
-
* const recordId = records[0].
|
|
1608
|
+
* const recordId = records[0].Id;
|
|
1597
1609
|
*
|
|
1598
1610
|
* // Download attachment for a specific record and field
|
|
1599
1611
|
* const blob = await entities.downloadAttachment(entityId, recordId, 'Documents');
|
|
@@ -1622,7 +1634,7 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
1622
1634
|
*
|
|
1623
1635
|
* // Get the recordId from getAllRecords()
|
|
1624
1636
|
* const records = await entities.getAllRecords(entityId);
|
|
1625
|
-
* const recordId = records[0].
|
|
1637
|
+
* const recordId = records[0].Id;
|
|
1626
1638
|
*
|
|
1627
1639
|
* // Upload a file attachment
|
|
1628
1640
|
* const response = await entities.uploadAttachment(entityId, recordId, 'Documents', file);
|
|
@@ -1649,7 +1661,7 @@ declare class EntityService extends BaseService implements EntityServiceModel {
|
|
|
1649
1661
|
*
|
|
1650
1662
|
* // Get the recordId from getAllRecords()
|
|
1651
1663
|
* const records = await entities.getAllRecords(entityId);
|
|
1652
|
-
* const recordId = records[0].
|
|
1664
|
+
* const recordId = records[0].Id;
|
|
1653
1665
|
*
|
|
1654
1666
|
* // Delete attachment for a specific record and field
|
|
1655
1667
|
* await entities.deleteAttachment(entityId, recordId, 'Documents');
|
|
@@ -2924,10 +2936,23 @@ interface UserLoginInfo {
|
|
|
2924
2936
|
displayName: string;
|
|
2925
2937
|
id: number;
|
|
2926
2938
|
}
|
|
2939
|
+
/**
|
|
2940
|
+
* Types of tasks available in Action Center.
|
|
2941
|
+
* Each type determines the task's behavior, UI rendering, and completion requirements.
|
|
2942
|
+
*/
|
|
2927
2943
|
declare enum TaskType {
|
|
2944
|
+
/** A form-based task that renders a UiPath form layout for user input */
|
|
2928
2945
|
Form = "FormTask",
|
|
2946
|
+
/** An externally managed task handled outside of Action Center */
|
|
2929
2947
|
External = "ExternalTask",
|
|
2930
|
-
App
|
|
2948
|
+
/** A task powered by a UiPath App */
|
|
2949
|
+
App = "AppTask",
|
|
2950
|
+
/** A document validation task for reviewing and correcting extracted document data */
|
|
2951
|
+
DocumentValidation = "DocumentValidationTask",
|
|
2952
|
+
/** A document classification task for categorizing documents */
|
|
2953
|
+
DocumentClassification = "DocumentClassificationTask",
|
|
2954
|
+
/** A data labeling task for annotating training data */
|
|
2955
|
+
DataLabeling = "DataLabelingTask"
|
|
2931
2956
|
}
|
|
2932
2957
|
declare enum TaskPriority {
|
|
2933
2958
|
Low = "Low",
|
|
@@ -3107,7 +3132,23 @@ type TaskCompleteOptions = {
|
|
|
3107
3132
|
data?: any;
|
|
3108
3133
|
action?: string;
|
|
3109
3134
|
} | {
|
|
3110
|
-
type:
|
|
3135
|
+
type: TaskType.DocumentValidation;
|
|
3136
|
+
data?: any;
|
|
3137
|
+
action?: string;
|
|
3138
|
+
} | {
|
|
3139
|
+
type: TaskType.DocumentClassification;
|
|
3140
|
+
data?: any;
|
|
3141
|
+
action?: string;
|
|
3142
|
+
} | {
|
|
3143
|
+
type: TaskType.DataLabeling;
|
|
3144
|
+
data?: any;
|
|
3145
|
+
action?: string;
|
|
3146
|
+
} | {
|
|
3147
|
+
type: TaskType.Form;
|
|
3148
|
+
data: any;
|
|
3149
|
+
action: string;
|
|
3150
|
+
} | {
|
|
3151
|
+
type: TaskType.App;
|
|
3111
3152
|
data: any;
|
|
3112
3153
|
action: string;
|
|
3113
3154
|
};
|
|
@@ -3138,7 +3179,14 @@ type TaskGetAllOptions = RequestOptions & PaginationOptions & {
|
|
|
3138
3179
|
/**
|
|
3139
3180
|
* Query options for getting a task by ID
|
|
3140
3181
|
*/
|
|
3141
|
-
|
|
3182
|
+
interface TaskGetByIdOptions extends BaseOptions {
|
|
3183
|
+
/**
|
|
3184
|
+
* Optional task type. When not provided, method will automatically identify the
|
|
3185
|
+
* task type and resolve accordingly, but it will be slower.
|
|
3186
|
+
* When provided, it will skip the step to identify the task type, so it will be faster.
|
|
3187
|
+
*/
|
|
3188
|
+
taskType?: TaskType;
|
|
3189
|
+
}
|
|
3142
3190
|
/**
|
|
3143
3191
|
* Options for getting users with task permissions
|
|
3144
3192
|
*/
|
|
@@ -3207,10 +3255,9 @@ interface TaskServiceModel {
|
|
|
3207
3255
|
getAll<T extends TaskGetAllOptions = TaskGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<TaskGetResponse> : NonPaginatedResponse<TaskGetResponse>>;
|
|
3208
3256
|
/**
|
|
3209
3257
|
* Gets a task by ID
|
|
3210
|
-
* IMPORTANT: For form tasks, folderId must be provided.
|
|
3211
3258
|
* @param id - The ID of the task to retrieve
|
|
3212
|
-
* @param options - Optional query parameters
|
|
3213
|
-
* @param folderId - Optional folder ID (REQUIRED
|
|
3259
|
+
* @param options - Optional query parameters including taskType for faster retrieval {@link TaskGetByIdOptions}
|
|
3260
|
+
* @param folderId - Optional folder ID (REQUIRED when options.taskType is provided)
|
|
3214
3261
|
* @returns Promise resolving to the task
|
|
3215
3262
|
* {@link TaskGetResponse}
|
|
3216
3263
|
* @example
|
|
@@ -3219,10 +3266,13 @@ interface TaskServiceModel {
|
|
|
3219
3266
|
* const task = await tasks.getById(<taskId>);
|
|
3220
3267
|
*
|
|
3221
3268
|
* // Get a form task by ID
|
|
3222
|
-
* const formTask = await tasks.getById(<taskId>, <folderId>);
|
|
3269
|
+
* const formTask = await tasks.getById(<taskId>, {}, <folderId>);
|
|
3223
3270
|
*
|
|
3224
3271
|
* // Access form task properties
|
|
3225
3272
|
* console.log(formTask.formLayout);
|
|
3273
|
+
*
|
|
3274
|
+
* // Get a document validation task by ID (faster with taskType provided in the options)
|
|
3275
|
+
* const dvTask = await tasks.getById(<taskId>, { taskType: TaskType.DocumentValidation }, <folderId>);
|
|
3226
3276
|
* ```
|
|
3227
3277
|
*/
|
|
3228
3278
|
getById(id: number, options?: TaskGetByIdOptions, folderId?: number): Promise<TaskGetResponse>;
|
|
@@ -4217,7 +4267,8 @@ type AssetGetAllOptions = RequestOptions & PaginationOptions & {
|
|
|
4217
4267
|
/**
|
|
4218
4268
|
* Options for getting a single asset by ID
|
|
4219
4269
|
*/
|
|
4220
|
-
|
|
4270
|
+
interface AssetGetByIdOptions extends BaseOptions {
|
|
4271
|
+
}
|
|
4221
4272
|
|
|
4222
4273
|
/**
|
|
4223
4274
|
* Service for managing UiPath Assets.
|
|
@@ -4364,7 +4415,8 @@ interface BucketGetResponse {
|
|
|
4364
4415
|
type BucketGetAllOptions = RequestOptions & PaginationOptions & {
|
|
4365
4416
|
folderId?: number;
|
|
4366
4417
|
};
|
|
4367
|
-
|
|
4418
|
+
interface BucketGetByIdOptions extends BaseOptions {
|
|
4419
|
+
}
|
|
4368
4420
|
/**
|
|
4369
4421
|
* Maps header names to their values
|
|
4370
4422
|
*
|
|
@@ -4418,7 +4470,8 @@ interface BucketGetUriOptions extends BaseOptions {
|
|
|
4418
4470
|
/**
|
|
4419
4471
|
* Request options for getting a read URI for a file in a bucket
|
|
4420
4472
|
*/
|
|
4421
|
-
|
|
4473
|
+
interface BucketGetReadUriOptions extends BucketGetUriOptions {
|
|
4474
|
+
}
|
|
4422
4475
|
/**
|
|
4423
4476
|
* Request options for getting files in a bucket
|
|
4424
4477
|
*/
|
|
@@ -4844,7 +4897,10 @@ declare enum PackageType {
|
|
|
4844
4897
|
TestAutomationProcess = "TestAutomationProcess",
|
|
4845
4898
|
Api = "Api",
|
|
4846
4899
|
MCPServer = "MCPServer",
|
|
4847
|
-
BusinessRules = "BusinessRules"
|
|
4900
|
+
BusinessRules = "BusinessRules",
|
|
4901
|
+
CaseManagement = "CaseManagement",
|
|
4902
|
+
Flow = "Flow",
|
|
4903
|
+
Function = "Function"
|
|
4848
4904
|
}
|
|
4849
4905
|
/**
|
|
4850
4906
|
* Enum for job priority
|
|
@@ -4917,6 +4973,35 @@ declare enum PackageSourceType {
|
|
|
4917
4973
|
AgentHub = "AgentHub",
|
|
4918
4974
|
ApiWorkflow = "ApiWorkflow"
|
|
4919
4975
|
}
|
|
4976
|
+
/**
|
|
4977
|
+
* Enum for job source type
|
|
4978
|
+
*/
|
|
4979
|
+
declare enum JobSourceType {
|
|
4980
|
+
Manual = "Manual",
|
|
4981
|
+
Schedule = "Schedule",
|
|
4982
|
+
Agent = "Agent",
|
|
4983
|
+
Queue = "Queue",
|
|
4984
|
+
StudioWeb = "StudioWeb",
|
|
4985
|
+
IntegrationTrigger = "IntegrationTrigger",
|
|
4986
|
+
StudioDesktop = "StudioDesktop",
|
|
4987
|
+
AutomationOpsPipelines = "AutomationOpsPipelines",
|
|
4988
|
+
Apps = "Apps",
|
|
4989
|
+
SAP = "SAP",
|
|
4990
|
+
HttpTrigger = "HttpTrigger",
|
|
4991
|
+
HttpTriggerCallback = "HttpTriggerCallback",
|
|
4992
|
+
RobotAPI = "RobotAPI",
|
|
4993
|
+
CommandLine = "CommandLine",
|
|
4994
|
+
RobotNetAPI = "RobotNetAPI",
|
|
4995
|
+
Autopilot = "Autopilot",
|
|
4996
|
+
TestManager = "TestManager",
|
|
4997
|
+
AgentService = "AgentService",
|
|
4998
|
+
ProcessOrchestration = "ProcessOrchestration",
|
|
4999
|
+
PluginEcosystem = "PluginEcosystem",
|
|
5000
|
+
PerformanceTesting = "PerformanceTesting",
|
|
5001
|
+
AgentHub = "AgentHub",
|
|
5002
|
+
ApiWorkflow = "ApiWorkflow",
|
|
5003
|
+
CaseManagement = "CaseManagement"
|
|
5004
|
+
}
|
|
4920
5005
|
/**
|
|
4921
5006
|
* Enum for stop strategy
|
|
4922
5007
|
*/
|
|
@@ -4924,6 +5009,38 @@ declare enum StopStrategy {
|
|
|
4924
5009
|
SoftStop = "SoftStop",
|
|
4925
5010
|
Kill = "Kill"
|
|
4926
5011
|
}
|
|
5012
|
+
/**
|
|
5013
|
+
* Enum for runtime type
|
|
5014
|
+
*/
|
|
5015
|
+
declare enum RuntimeType {
|
|
5016
|
+
NonProduction = "NonProduction",
|
|
5017
|
+
Attended = "Attended",
|
|
5018
|
+
Unattended = "Unattended",
|
|
5019
|
+
Development = "Development",
|
|
5020
|
+
Studio = "Studio",
|
|
5021
|
+
RpaDeveloper = "RpaDeveloper",
|
|
5022
|
+
StudioX = "StudioX",
|
|
5023
|
+
CitizenDeveloper = "CitizenDeveloper",
|
|
5024
|
+
Headless = "Headless",
|
|
5025
|
+
StudioPro = "StudioPro",
|
|
5026
|
+
RpaDeveloperPro = "RpaDeveloperPro",
|
|
5027
|
+
TestAutomation = "TestAutomation",
|
|
5028
|
+
AutomationCloud = "AutomationCloud",
|
|
5029
|
+
Serverless = "Serverless",
|
|
5030
|
+
AutomationKit = "AutomationKit",
|
|
5031
|
+
ServerlessTestAutomation = "ServerlessTestAutomation",
|
|
5032
|
+
AutomationCloudTestAutomation = "AutomationCloudTestAutomation",
|
|
5033
|
+
AttendedStudioWeb = "AttendedStudioWeb",
|
|
5034
|
+
Hosting = "Hosting",
|
|
5035
|
+
AssistantWeb = "AssistantWeb",
|
|
5036
|
+
ProcessOrchestration = "ProcessOrchestration",
|
|
5037
|
+
AgentService = "AgentService",
|
|
5038
|
+
AppTest = "AppTest",
|
|
5039
|
+
PerformanceTest = "PerformanceTest",
|
|
5040
|
+
BusinessRule = "BusinessRule",
|
|
5041
|
+
CaseManagement = "CaseManagement",
|
|
5042
|
+
Flow = "Flow"
|
|
5043
|
+
}
|
|
4927
5044
|
/**
|
|
4928
5045
|
* Interface for Job Attachment
|
|
4929
5046
|
*/
|
|
@@ -4937,20 +5054,20 @@ interface JobAttachment {
|
|
|
4937
5054
|
* Interface for common process properties shared across multiple interfaces
|
|
4938
5055
|
*/
|
|
4939
5056
|
interface ProcessProperties {
|
|
4940
|
-
jobPriority?: JobPriority;
|
|
4941
|
-
specificPriorityValue?: number;
|
|
4942
|
-
inputArguments?: string;
|
|
4943
|
-
environmentVariables?: string;
|
|
4944
|
-
entryPointPath?: string;
|
|
4945
|
-
remoteControlAccess?: RemoteControlAccess;
|
|
4946
|
-
requiresUserInteraction?: boolean;
|
|
5057
|
+
jobPriority?: JobPriority | null;
|
|
5058
|
+
specificPriorityValue?: number | null;
|
|
5059
|
+
inputArguments?: string | null;
|
|
5060
|
+
environmentVariables?: string | null;
|
|
5061
|
+
entryPointPath?: string | null;
|
|
5062
|
+
remoteControlAccess?: RemoteControlAccess | null;
|
|
5063
|
+
requiresUserInteraction?: boolean | null;
|
|
4947
5064
|
}
|
|
4948
5065
|
/**
|
|
4949
5066
|
* Interface for common folder properties
|
|
4950
5067
|
*/
|
|
4951
5068
|
interface FolderProperties {
|
|
4952
|
-
folderId
|
|
4953
|
-
folderName
|
|
5069
|
+
folderId: number;
|
|
5070
|
+
folderName: string | null;
|
|
4954
5071
|
}
|
|
4955
5072
|
/**
|
|
4956
5073
|
* Base interface for process start request
|
|
@@ -4962,7 +5079,7 @@ interface BaseProcessStartRequest extends ProcessProperties {
|
|
|
4962
5079
|
noOfRobots?: number;
|
|
4963
5080
|
jobsCount?: number;
|
|
4964
5081
|
source?: PackageSourceType;
|
|
4965
|
-
runtimeType?:
|
|
5082
|
+
runtimeType?: RuntimeType;
|
|
4966
5083
|
inputFile?: string;
|
|
4967
5084
|
reference?: string;
|
|
4968
5085
|
attachments?: JobAttachment[];
|
|
@@ -5046,7 +5163,7 @@ interface ProcessStartResponse extends ProcessProperties, FolderProperties {
|
|
|
5046
5163
|
endTime: string | null;
|
|
5047
5164
|
state: JobState;
|
|
5048
5165
|
source: string;
|
|
5049
|
-
sourceType:
|
|
5166
|
+
sourceType: JobSourceType;
|
|
5050
5167
|
batchExecutionKey: string;
|
|
5051
5168
|
info: string | null;
|
|
5052
5169
|
createdTime: string;
|
|
@@ -5060,7 +5177,7 @@ interface ProcessStartResponse extends ProcessProperties, FolderProperties {
|
|
|
5060
5177
|
persistenceId: string | null;
|
|
5061
5178
|
resumeVersion: number | null;
|
|
5062
5179
|
stopStrategy: StopStrategy | null;
|
|
5063
|
-
runtimeType:
|
|
5180
|
+
runtimeType: RuntimeType;
|
|
5064
5181
|
processVersionId: number | null;
|
|
5065
5182
|
reference: string;
|
|
5066
5183
|
packageType: PackageType;
|
|
@@ -5120,7 +5237,284 @@ type ProcessGetAllOptions = RequestOptions & PaginationOptions & {
|
|
|
5120
5237
|
/**
|
|
5121
5238
|
* Options for getting a single process by ID
|
|
5122
5239
|
*/
|
|
5123
|
-
|
|
5240
|
+
interface ProcessGetByIdOptions extends BaseOptions {
|
|
5241
|
+
}
|
|
5242
|
+
|
|
5243
|
+
/**
|
|
5244
|
+
* Enum for job sub-state
|
|
5245
|
+
*/
|
|
5246
|
+
declare enum JobSubState {
|
|
5247
|
+
WithFaults = "WITH_FAULTS",
|
|
5248
|
+
Manually = "MANUALLY"
|
|
5249
|
+
}
|
|
5250
|
+
/**
|
|
5251
|
+
* Enum for serverless job type
|
|
5252
|
+
*/
|
|
5253
|
+
declare enum ServerlessJobType {
|
|
5254
|
+
RobotJob = "RobotJob",
|
|
5255
|
+
WebApp = "WebApp",
|
|
5256
|
+
LoadTest = "LoadTest",
|
|
5257
|
+
StudioWebDesigner = "StudioWebDesigner",
|
|
5258
|
+
PublishStudioProject = "PublishStudioProject",
|
|
5259
|
+
JsApi = "JsApi",
|
|
5260
|
+
PythonCodedAgent = "PythonCodedAgent",
|
|
5261
|
+
MCPServer = "MCPServer",
|
|
5262
|
+
PythonCodedSystemAgent = "PythonCodedSystemAgent",
|
|
5263
|
+
PythonAgent = "PythonAgent"
|
|
5264
|
+
}
|
|
5265
|
+
/**
|
|
5266
|
+
* Interface for process metadata associated with a job.
|
|
5267
|
+
* Represents a lightweight summary of the process (release) linked to a job.
|
|
5268
|
+
* Available when using 'expand: "Release"' in the query.
|
|
5269
|
+
*/
|
|
5270
|
+
interface ProcessMetadata {
|
|
5271
|
+
/** The unique key of the release */
|
|
5272
|
+
key?: string;
|
|
5273
|
+
/** The process key identifying the package */
|
|
5274
|
+
processKey?: string;
|
|
5275
|
+
/** The version of the process package */
|
|
5276
|
+
processVersion?: string;
|
|
5277
|
+
/** Whether this is the latest version of the process */
|
|
5278
|
+
isLatestVersion?: boolean;
|
|
5279
|
+
/** The display name of the process */
|
|
5280
|
+
name?: string;
|
|
5281
|
+
/** The numeric ID of the release */
|
|
5282
|
+
id?: number;
|
|
5283
|
+
}
|
|
5284
|
+
/**
|
|
5285
|
+
* Raw job response from the API before method attachment
|
|
5286
|
+
*/
|
|
5287
|
+
interface RawJobGetResponse extends FolderProperties {
|
|
5288
|
+
/** The unique numeric identifier of the job */
|
|
5289
|
+
id: number;
|
|
5290
|
+
/** The unique job identifier (GUID) */
|
|
5291
|
+
key: string;
|
|
5292
|
+
/** The current execution state of the job */
|
|
5293
|
+
state: JobState;
|
|
5294
|
+
/** The date and time when the job was created */
|
|
5295
|
+
createdTime: string;
|
|
5296
|
+
/** The date and time when the job execution started, or null if the job hasn't started yet */
|
|
5297
|
+
startTime: string | null;
|
|
5298
|
+
/** The date and time when the job execution ended, or null if the job hasn't ended yet */
|
|
5299
|
+
endTime: string | null;
|
|
5300
|
+
/** The date and time when the job was last modified */
|
|
5301
|
+
lastModifiedTime: string | null;
|
|
5302
|
+
/** The date and time when the job was resumed after suspension */
|
|
5303
|
+
resumeTime: string | null;
|
|
5304
|
+
/** The name of the process (release) associated with the job */
|
|
5305
|
+
processName: string | null;
|
|
5306
|
+
/** Path to the entry point workflow (XAML) that will be executed by the robot */
|
|
5307
|
+
entryPointPath: string | null;
|
|
5308
|
+
/** The name of the machine where the robot ran the job */
|
|
5309
|
+
hostMachineName: string | null;
|
|
5310
|
+
/** Input parameters as a JSON string passed to job execution */
|
|
5311
|
+
inputArguments: string | null;
|
|
5312
|
+
/** Output parameters as a JSON string resulted from job execution */
|
|
5313
|
+
outputArguments: string | null;
|
|
5314
|
+
/** Attachment key for file-based output when output is too large for inline arguments */
|
|
5315
|
+
outputFile: string | null;
|
|
5316
|
+
/** Environment variables as a JSON string passed to the job execution */
|
|
5317
|
+
environmentVariables: string | null;
|
|
5318
|
+
/** Additional information about the current job */
|
|
5319
|
+
info: string | null;
|
|
5320
|
+
/** The source name of the job, describing how the job was triggered */
|
|
5321
|
+
source: string | null;
|
|
5322
|
+
/** Reference identifier for the job, used for external correlation */
|
|
5323
|
+
reference: string | null;
|
|
5324
|
+
/** The execution priority of the job */
|
|
5325
|
+
jobPriority: JobPriority | null;
|
|
5326
|
+
/** Value for more granular control over execution priority (1-100) */
|
|
5327
|
+
specificPriorityValue: number | null;
|
|
5328
|
+
/** The type of the job - Attended if started via the robot, Unattended otherwise */
|
|
5329
|
+
type: JobType;
|
|
5330
|
+
/** The package type of the process associated with the job */
|
|
5331
|
+
packageType: PackageType;
|
|
5332
|
+
/** The runtime type of the robot which can pick up the job */
|
|
5333
|
+
runtimeType: RuntimeType | null;
|
|
5334
|
+
/** The source type indicating how the job was triggered */
|
|
5335
|
+
sourceType: JobSourceType;
|
|
5336
|
+
/** The type of the serverless job, or null for non-serverless jobs */
|
|
5337
|
+
serverlessJobType: ServerlessJobType | null;
|
|
5338
|
+
/** The stop strategy for the job */
|
|
5339
|
+
stopStrategy: StopStrategy | null;
|
|
5340
|
+
/** The remote control access level for the job */
|
|
5341
|
+
remoteControlAccess: RemoteControlAccess;
|
|
5342
|
+
/** The folder key (GUID) of the folder this job is part of */
|
|
5343
|
+
folderKey: string | null;
|
|
5344
|
+
/** The unique identifier grouping multiple jobs, usually generated when started by a schedule */
|
|
5345
|
+
batchExecutionKey: string;
|
|
5346
|
+
/** The parent job key (GUID), set when the job was started by another job */
|
|
5347
|
+
parentJobKey: string | null;
|
|
5348
|
+
/** The ID of the schedule that started the job, or null if started by the user */
|
|
5349
|
+
startingScheduleId: number | null;
|
|
5350
|
+
/** The starting trigger ID, can be ApiTriggerId or HttpTriggerId */
|
|
5351
|
+
startingTriggerId: string | null;
|
|
5352
|
+
/** The process version ID */
|
|
5353
|
+
processVersionId: number | null;
|
|
5354
|
+
/** Expected maximum running time in seconds before the job is flagged */
|
|
5355
|
+
maxExpectedRunningTimeSeconds: number | null;
|
|
5356
|
+
/** Whether the job requires user interaction */
|
|
5357
|
+
requiresUserInteraction: boolean;
|
|
5358
|
+
/** If set, the job will resume on the same robot-machine pair on which it initially ran */
|
|
5359
|
+
resumeOnSameContext: boolean;
|
|
5360
|
+
/** Distinguishes between multiple job suspend/resume cycles */
|
|
5361
|
+
resumeVersion: number | null;
|
|
5362
|
+
/** The sub-state in which the job is, providing more granular status information */
|
|
5363
|
+
subState: JobSubState | null;
|
|
5364
|
+
/** The target runtime for the job */
|
|
5365
|
+
targetRuntime: string | null;
|
|
5366
|
+
/** The trace ID for distributed tracing */
|
|
5367
|
+
traceId: string | null;
|
|
5368
|
+
/** The parent span ID for distributed tracing */
|
|
5369
|
+
parentSpanId: string | null;
|
|
5370
|
+
/** The error code associated with a failed job */
|
|
5371
|
+
errorCode: string | null;
|
|
5372
|
+
/** The machine associated with the job (available when using expand=Machine) */
|
|
5373
|
+
machine?: Machine;
|
|
5374
|
+
/** The robot associated with the job (available when using expand=Robot) */
|
|
5375
|
+
robot?: RobotMetadata;
|
|
5376
|
+
/** The process metadata associated with the job (available when using expand=Release) */
|
|
5377
|
+
process?: ProcessMetadata | null;
|
|
5378
|
+
/** Error details for the job, or null if the job has no errors */
|
|
5379
|
+
jobError: JobError | null;
|
|
5380
|
+
}
|
|
5381
|
+
/**
|
|
5382
|
+
* Options for getting all jobs
|
|
5383
|
+
*/
|
|
5384
|
+
type JobGetAllOptions = RequestOptions & PaginationOptions & {
|
|
5385
|
+
/**
|
|
5386
|
+
* Optional folder ID to filter jobs by folder
|
|
5387
|
+
*/
|
|
5388
|
+
folderId?: number;
|
|
5389
|
+
};
|
|
5390
|
+
|
|
5391
|
+
type JobGetResponse = RawJobGetResponse & JobMethods;
|
|
5392
|
+
/**
|
|
5393
|
+
* Service for managing UiPath Orchestrator Jobs.
|
|
5394
|
+
*
|
|
5395
|
+
* Jobs represent the execution of a process (automation) on a UiPath Robot. Each job tracks the lifecycle of a single process run, including its state, timing, input/output arguments, and associated resources. [UiPath Jobs Guide](https://docs.uipath.com/orchestrator/automation-cloud/latest/user-guide/about-jobs)
|
|
5396
|
+
*
|
|
5397
|
+
* ### Usage
|
|
5398
|
+
*
|
|
5399
|
+
* Prerequisites: Initialize the SDK first - see [Getting Started](/uipath-typescript/getting-started/#import-initialize)
|
|
5400
|
+
*
|
|
5401
|
+
* ```typescript
|
|
5402
|
+
* import { Jobs } from '@uipath/uipath-typescript/jobs';
|
|
5403
|
+
*
|
|
5404
|
+
* const jobs = new Jobs(sdk);
|
|
5405
|
+
* const allJobs = await jobs.getAll();
|
|
5406
|
+
* ```
|
|
5407
|
+
*/
|
|
5408
|
+
interface JobServiceModel {
|
|
5409
|
+
/**
|
|
5410
|
+
* Gets all jobs across folders with optional filtering and pagination.
|
|
5411
|
+
*
|
|
5412
|
+
* Returns jobs with full details including state, timing, and input/output arguments.
|
|
5413
|
+
* Pass `folderId` to scope the query to a specific folder.
|
|
5414
|
+
*
|
|
5415
|
+
* !!! info "Input and output fields are not included in `getAll` responses"
|
|
5416
|
+
* The `inputArguments`, `inputFile`, `outputArguments`, and `outputFile` fields will always be `null` in the `getAll` response. To retrieve a job's output, use the {@link getOutput} method with the job's `key` and `folderId`.
|
|
5417
|
+
*
|
|
5418
|
+
* @param options - Query options including optional folderId, filtering, and pagination options
|
|
5419
|
+
* @returns Promise resolving to either an array of jobs {@link NonPaginatedResponse}<{@link JobGetResponse}> or a {@link PaginatedResponse}<{@link JobGetResponse}> when pagination options are used.
|
|
5420
|
+
* {@link JobGetResponse}
|
|
5421
|
+
* @example
|
|
5422
|
+
* ```typescript
|
|
5423
|
+
* // Get all jobs
|
|
5424
|
+
* const allJobs = await jobs.getAll();
|
|
5425
|
+
*
|
|
5426
|
+
* // Get all jobs in a specific folder
|
|
5427
|
+
* const folderJobs = await jobs.getAll({ folderId: <folderId> });
|
|
5428
|
+
*
|
|
5429
|
+
* // With filtering
|
|
5430
|
+
* const runningJobs = await jobs.getAll({
|
|
5431
|
+
* filter: "state eq 'Running'"
|
|
5432
|
+
* });
|
|
5433
|
+
*
|
|
5434
|
+
* // First page with pagination
|
|
5435
|
+
* const page1 = await jobs.getAll({ pageSize: 10 });
|
|
5436
|
+
*
|
|
5437
|
+
* // Navigate using cursor
|
|
5438
|
+
* if (page1.hasNextPage) {
|
|
5439
|
+
* const page2 = await jobs.getAll({ cursor: page1.nextCursor });
|
|
5440
|
+
* }
|
|
5441
|
+
*
|
|
5442
|
+
* // Jump to specific page
|
|
5443
|
+
* const page5 = await jobs.getAll({
|
|
5444
|
+
* jumpToPage: 5,
|
|
5445
|
+
* pageSize: 10
|
|
5446
|
+
* });
|
|
5447
|
+
* ```
|
|
5448
|
+
*/
|
|
5449
|
+
getAll<T extends JobGetAllOptions = JobGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<JobGetResponse> : NonPaginatedResponse<JobGetResponse>>;
|
|
5450
|
+
/**
|
|
5451
|
+
* Gets the output of a completed job.
|
|
5452
|
+
*
|
|
5453
|
+
* Retrieves the job's output arguments, handling both inline output (stored directly on the job
|
|
5454
|
+
* as a JSON string in `outputArguments`) and file-based output (stored as a blob attachment for
|
|
5455
|
+
* large outputs). Returns the parsed JSON output or `null` if the job has no output.
|
|
5456
|
+
*
|
|
5457
|
+
* @param jobKey - The unique key (GUID) of the job to retrieve output from
|
|
5458
|
+
* @param folderId - The folder ID where the job resides
|
|
5459
|
+
* @returns Promise resolving to the parsed output as `Record<string, unknown>`, or `null` if no output exists
|
|
5460
|
+
*
|
|
5461
|
+
* @example
|
|
5462
|
+
* ```typescript
|
|
5463
|
+
* // Get output from a completed job
|
|
5464
|
+
* const output = await jobs.getOutput(<jobKey>, <folderId>);
|
|
5465
|
+
*
|
|
5466
|
+
* if (output) {
|
|
5467
|
+
* console.log('Job output:', output);
|
|
5468
|
+
* }
|
|
5469
|
+
* ```
|
|
5470
|
+
*
|
|
5471
|
+
* @example
|
|
5472
|
+
* ```typescript
|
|
5473
|
+
* // Get output using bound method (jobKey and folderId are taken from the job object)
|
|
5474
|
+
* const allJobs = await jobs.getAll();
|
|
5475
|
+
* const completedJob = allJobs.items.find(j => j.state === JobState.Successful);
|
|
5476
|
+
*
|
|
5477
|
+
* if (completedJob) {
|
|
5478
|
+
* const output = await completedJob.getOutput();
|
|
5479
|
+
* }
|
|
5480
|
+
* ```
|
|
5481
|
+
*/
|
|
5482
|
+
getOutput(jobKey: string, folderId: number): Promise<Record<string, unknown> | null>;
|
|
5483
|
+
}
|
|
5484
|
+
/**
|
|
5485
|
+
* Methods available on job response objects.
|
|
5486
|
+
* These are bound to the job data and delegate to the service.
|
|
5487
|
+
*/
|
|
5488
|
+
interface JobMethods {
|
|
5489
|
+
/**
|
|
5490
|
+
* Gets the output of this job.
|
|
5491
|
+
*
|
|
5492
|
+
* Retrieves the job's output arguments, handling both inline output (stored directly on the job
|
|
5493
|
+
* as a JSON string in `outputArguments`) and file-based output (stored as a blob attachment for
|
|
5494
|
+
* large outputs). Returns the parsed JSON output or `null` if the job has no output.
|
|
5495
|
+
*
|
|
5496
|
+
* @returns Promise resolving to the parsed output as `Record<string, unknown>`, or `null` if no output exists
|
|
5497
|
+
*
|
|
5498
|
+
* @example
|
|
5499
|
+
* ```typescript
|
|
5500
|
+
* const allJobs = await jobs.getAll();
|
|
5501
|
+
* const completedJob = allJobs.items.find(j => j.state === JobState.Successful);
|
|
5502
|
+
*
|
|
5503
|
+
* if (completedJob) {
|
|
5504
|
+
* const output = await completedJob.getOutput();
|
|
5505
|
+
* }
|
|
5506
|
+
* ```
|
|
5507
|
+
*/
|
|
5508
|
+
getOutput(): Promise<Record<string, unknown> | null>;
|
|
5509
|
+
}
|
|
5510
|
+
/**
|
|
5511
|
+
* Creates a job response with bound methods.
|
|
5512
|
+
*
|
|
5513
|
+
* @param jobData - The raw job data from API
|
|
5514
|
+
* @param service - The job service instance
|
|
5515
|
+
* @returns A job object with added methods
|
|
5516
|
+
*/
|
|
5517
|
+
declare function createJobWithMethods(jobData: RawJobGetResponse, service: JobServiceModel): JobGetResponse;
|
|
5124
5518
|
|
|
5125
5519
|
/**
|
|
5126
5520
|
* Service for managing and executing UiPath Automation Processes.
|
|
@@ -5348,7 +5742,8 @@ type QueueGetAllOptions = RequestOptions & PaginationOptions & {
|
|
|
5348
5742
|
*/
|
|
5349
5743
|
folderId?: number;
|
|
5350
5744
|
};
|
|
5351
|
-
|
|
5745
|
+
interface QueueGetByIdOptions extends BaseOptions {
|
|
5746
|
+
}
|
|
5352
5747
|
|
|
5353
5748
|
/**
|
|
5354
5749
|
* Service for managing UiPath Queues
|
|
@@ -5489,6 +5884,74 @@ declare class QueueService extends FolderScopedService implements QueueServiceMo
|
|
|
5489
5884
|
getById(id: number, folderId: number, options?: QueueGetByIdOptions): Promise<QueueGetResponse>;
|
|
5490
5885
|
}
|
|
5491
5886
|
|
|
5887
|
+
/**
|
|
5888
|
+
* Attachment response from the API
|
|
5889
|
+
*/
|
|
5890
|
+
interface AttachmentResponse {
|
|
5891
|
+
/**
|
|
5892
|
+
* UUID of the attachment
|
|
5893
|
+
*/
|
|
5894
|
+
id: string;
|
|
5895
|
+
/**
|
|
5896
|
+
* Name of the attachment
|
|
5897
|
+
*/
|
|
5898
|
+
name: string;
|
|
5899
|
+
/**
|
|
5900
|
+
* Optional job key to link the attachment to a job when creating it.
|
|
5901
|
+
*/
|
|
5902
|
+
jobKey?: string;
|
|
5903
|
+
/**
|
|
5904
|
+
* Optional category for the attachment when linking to a job.
|
|
5905
|
+
*/
|
|
5906
|
+
attachmentCategory?: string;
|
|
5907
|
+
/**
|
|
5908
|
+
* When the attachment was last modified
|
|
5909
|
+
*/
|
|
5910
|
+
lastModifiedTime?: string;
|
|
5911
|
+
/**
|
|
5912
|
+
* User ID who last modified the attachment
|
|
5913
|
+
*/
|
|
5914
|
+
lastModifierUserId?: number;
|
|
5915
|
+
/**
|
|
5916
|
+
* When the attachment was created
|
|
5917
|
+
*/
|
|
5918
|
+
createdTime?: string;
|
|
5919
|
+
/**
|
|
5920
|
+
* User ID who created the attachment
|
|
5921
|
+
*/
|
|
5922
|
+
creatorUserId?: number;
|
|
5923
|
+
blobFileAccess: BucketGetUriResponse;
|
|
5924
|
+
}
|
|
5925
|
+
/**
|
|
5926
|
+
* Options for getting an attachment by ID
|
|
5927
|
+
*/
|
|
5928
|
+
interface AttachmentGetByIdOptions extends BaseOptions {
|
|
5929
|
+
}
|
|
5930
|
+
|
|
5931
|
+
/**
|
|
5932
|
+
* Service for managing UiPath Orchestrator Attachments.
|
|
5933
|
+
*
|
|
5934
|
+
* Attachments are files that can be associated with Orchestrator jobs.
|
|
5935
|
+
*/
|
|
5936
|
+
interface AttachmentServiceModel {
|
|
5937
|
+
/**
|
|
5938
|
+
* Gets an attachment by ID
|
|
5939
|
+
*
|
|
5940
|
+
* @param id - The UUID of the attachment to retrieve
|
|
5941
|
+
* @param options - Optional query parameters (expand, select)
|
|
5942
|
+
* @returns Promise resolving to the attachment
|
|
5943
|
+
* {@link AttachmentResponse}
|
|
5944
|
+
* @example
|
|
5945
|
+
* ```typescript
|
|
5946
|
+
* import { Attachments } from '@uipath/uipath-typescript/attachments';
|
|
5947
|
+
*
|
|
5948
|
+
* const attachments = new Attachments(sdk);
|
|
5949
|
+
* const attachment = await attachments.getById('12345678-1234-1234-1234-123456789abc');
|
|
5950
|
+
* ```
|
|
5951
|
+
*/
|
|
5952
|
+
getById(id: string, options?: AttachmentGetByIdOptions): Promise<AttachmentResponse>;
|
|
5953
|
+
}
|
|
5954
|
+
|
|
5492
5955
|
/**
|
|
5493
5956
|
* Service for interacting with UiPath Tasks API
|
|
5494
5957
|
*/
|
|
@@ -5600,23 +6063,24 @@ declare class TaskService extends BaseService implements TaskServiceModel {
|
|
|
5600
6063
|
getAll<T extends TaskGetAllOptions = TaskGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<TaskGetResponse> : NonPaginatedResponse<TaskGetResponse>>;
|
|
5601
6064
|
/**
|
|
5602
6065
|
* Gets a task by ID
|
|
5603
|
-
* IMPORTANT: For form tasks, folderId must be provided.
|
|
5604
|
-
*
|
|
5605
6066
|
* @param id - The ID of the task to retrieve
|
|
5606
|
-
* @param options - Optional query parameters
|
|
5607
|
-
* @param folderId - Optional folder ID (REQUIRED
|
|
5608
|
-
* @returns Promise resolving to the task
|
|
5609
|
-
*
|
|
6067
|
+
* @param options - Optional query parameters including taskType for faster retrieval {@link TaskGetByIdOptions}
|
|
6068
|
+
* @param folderId - Optional folder ID (REQUIRED when options.taskType is provided)
|
|
6069
|
+
* @returns Promise resolving to the task
|
|
6070
|
+
* {@link TaskGetResponse}
|
|
5610
6071
|
* @example
|
|
5611
6072
|
* ```typescript
|
|
5612
|
-
*
|
|
6073
|
+
* // Get a task by ID
|
|
6074
|
+
* const task = await tasks.getById(<taskId>);
|
|
5613
6075
|
*
|
|
5614
|
-
*
|
|
6076
|
+
* // Get a form task by ID
|
|
6077
|
+
* const formTask = await tasks.getById(<taskId>, {}, <folderId>);
|
|
5615
6078
|
*
|
|
5616
|
-
* //
|
|
5617
|
-
*
|
|
6079
|
+
* // Access form task properties
|
|
6080
|
+
* console.log(formTask.formLayout);
|
|
5618
6081
|
*
|
|
5619
|
-
* //
|
|
6082
|
+
* // Get a document validation task by ID (faster with taskType provided in the options)
|
|
6083
|
+
* const dvTask = await tasks.getById(<taskId>, { taskType: TaskType.DocumentValidation }, <folderId>);
|
|
5620
6084
|
* ```
|
|
5621
6085
|
*/
|
|
5622
6086
|
getById(id: number, options?: TaskGetByIdOptions, folderId?: number): Promise<TaskGetResponse>;
|
|
@@ -5748,14 +6212,19 @@ declare class TaskService extends BaseService implements TaskServiceModel {
|
|
|
5748
6212
|
*/
|
|
5749
6213
|
complete(options: TaskCompletionOptions, folderId: number): Promise<OperationResponse<TaskCompletionOptions>>;
|
|
5750
6214
|
/**
|
|
5751
|
-
*
|
|
6215
|
+
* Routes to the type-specific endpoint based on task type.
|
|
6216
|
+
*/
|
|
6217
|
+
private getByTaskType;
|
|
6218
|
+
/**
|
|
6219
|
+
* Fetches a task from a type-specific endpoint.
|
|
5752
6220
|
*
|
|
5753
|
-
* @param id - The
|
|
6221
|
+
* @param id - The task ID
|
|
5754
6222
|
* @param folderId - Required folder ID
|
|
5755
|
-
* @param
|
|
5756
|
-
* @
|
|
6223
|
+
* @param endpoint - The type-specific endpoint to call
|
|
6224
|
+
* @param extraParams - Additional query parameters (e.g. form options)
|
|
6225
|
+
* @returns Promise resolving to the task
|
|
5757
6226
|
*/
|
|
5758
|
-
private
|
|
6227
|
+
private getTaskByTypeEndpoint;
|
|
5759
6228
|
/**
|
|
5760
6229
|
* Process parameters for task queries with folder filtering
|
|
5761
6230
|
* @param options - The REST API options to process
|
|
@@ -9691,11 +10160,14 @@ interface ConversationSessionOptions {
|
|
|
9691
10160
|
logLevel?: LogLevel;
|
|
9692
10161
|
}
|
|
9693
10162
|
/** Response for creating a conversation (includes methods) */
|
|
9694
|
-
|
|
10163
|
+
interface ConversationCreateResponse extends ConversationGetResponse {
|
|
10164
|
+
}
|
|
9695
10165
|
/** Response for updating a conversation (includes methods) */
|
|
9696
|
-
|
|
10166
|
+
interface ConversationUpdateResponse extends ConversationGetResponse {
|
|
10167
|
+
}
|
|
9697
10168
|
/** Response for deleting a conversation (raw data, no methods needed) */
|
|
9698
|
-
|
|
10169
|
+
interface ConversationDeleteResponse extends RawConversationGetResponse {
|
|
10170
|
+
}
|
|
9699
10171
|
interface ConversationCreateOptions {
|
|
9700
10172
|
/** Human-readable label for the conversation (max 100 chars) */
|
|
9701
10173
|
label?: string;
|
|
@@ -9890,7 +10362,8 @@ interface RawAgentGetByIdResponse extends RawAgentGetResponse {
|
|
|
9890
10362
|
/**
|
|
9891
10363
|
* Options for creating a conversation from an agent
|
|
9892
10364
|
*/
|
|
9893
|
-
|
|
10365
|
+
interface AgentCreateConversationOptions extends ConversationCreateOptions {
|
|
10366
|
+
}
|
|
9894
10367
|
/**
|
|
9895
10368
|
* Scoped conversation service for a specific agent.
|
|
9896
10369
|
* Auto-fills agentId and folderId from the agent.
|
|
@@ -9982,7 +10455,8 @@ interface UserSettingsGetResponse {
|
|
|
9982
10455
|
updatedTime: string;
|
|
9983
10456
|
}
|
|
9984
10457
|
/** Response for updating user settings */
|
|
9985
|
-
|
|
10458
|
+
interface UserSettingsUpdateResponse extends UserSettingsGetResponse {
|
|
10459
|
+
}
|
|
9986
10460
|
/**
|
|
9987
10461
|
* Options for updating user settings
|
|
9988
10462
|
*
|
|
@@ -10585,7 +11059,7 @@ declare const telemetryClient: TelemetryClient;
|
|
|
10585
11059
|
* SDK Telemetry constants
|
|
10586
11060
|
*/
|
|
10587
11061
|
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";
|
|
10588
|
-
declare const SDK_VERSION = "1.
|
|
11062
|
+
declare const SDK_VERSION = "1.3.0";
|
|
10589
11063
|
declare const VERSION = "Version";
|
|
10590
11064
|
declare const SERVICE = "Service";
|
|
10591
11065
|
declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
|
|
@@ -10600,5 +11074,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
|
|
|
10600
11074
|
declare const SDK_RUN_EVENT = "Sdk.Run";
|
|
10601
11075
|
declare const UNKNOWN = "";
|
|
10602
11076
|
|
|
10603
|
-
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, JobState, JobType, JoinType, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, RateLimitError, ReferenceType, RemoteControlAccess, RobotSize, SDK_LOGGER_NAME, SDK_RUN_EVENT, SDK_SERVICE_NAME, SDK_VERSION, SERVICE, SLADurationUnit, ServerError, SortOrder, StageTaskType, StartStrategy, StopStrategy, TargetFramework, TaskActivityType, TaskPriority, TaskSlaCriteria, TaskSlaStatus, TaskSourceName, TaskStatus, TaskType, UNKNOWN, UiPath, UiPathError, UiPathMetaTags, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
|
|
10604
|
-
export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentMethods, AgentStartingPrompt, ArgumentMetadata, AssetGetAllOptions, AssetGetByIdOptions, AssetGetResponse, AssetServiceModel, AsyncInputStream, AsyncInputStreamChunkEvent, AsyncInputStreamEndEvent, AsyncInputStreamEvent, AsyncInputStreamStartEvent, AsyncToolCallStream, 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, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityRecord, EntityServiceModel, 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, 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, ProcessMethods, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, QueryParams, QueueGetAllOptions, QueueGetByIdOptions, QueueGetResponse, QueueServiceModel, RawAgentGetByIdResponse, RawAgentGetResponse, RawCaseInstanceGetResponse, RawConversationGetResponse, RawEntityGetResponse, RawMaestroProcessGetAllResponse, RawProcessInstanceGetResponse, RawTaskCreateResponse, RawTaskGetResponse, RequestOptions, RequestSpec, ResponseDictionary, ResponseType, RetryOptions, RobotMetadata, SessionCapabilities, SessionEndEvent, SessionEndingEvent, SessionStartEvent, SessionStartedEvent, SessionStream, Simplify, SourceJoinCriteria, 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 };
|
|
11077
|
+
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, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, 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 };
|
|
11078
|
+
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, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityRecord, EntityServiceModel, 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, 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, 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 };
|