@uipath/uipath-typescript 1.2.1 → 1.2.2
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 +1 -1
- package/dist/entities/index.d.ts +33 -21
- package/dist/entities/index.mjs +1 -1
- package/dist/index.cjs +569 -307
- package/dist/index.d.ts +468 -70
- package/dist/index.mjs +570 -308
- package/dist/index.umd.js +566 -304
- package/dist/jobs/index.cjs +2036 -0
- package/dist/jobs/index.d.ts +724 -0
- package/dist/jobs/index.mjs +2033 -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
|
@@ -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
|
*/
|
|
@@ -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}
|
|
@@ -1034,14 +1046,14 @@ interface EntityServiceModel {
|
|
|
1034
1046
|
* ```typescript
|
|
1035
1047
|
* // Basic usage
|
|
1036
1048
|
* const result = await entities.updateRecordsById(<entityId>, [
|
|
1037
|
-
* {
|
|
1038
|
-
* {
|
|
1049
|
+
* { id: "123", name: "John Updated", age: 31 },
|
|
1050
|
+
* { id: "456", name: "Jane Updated", age: 26 }
|
|
1039
1051
|
* ]);
|
|
1040
1052
|
*
|
|
1041
1053
|
* // With options
|
|
1042
1054
|
* const result = await entities.updateRecordsById(<entityId>, [
|
|
1043
|
-
* {
|
|
1044
|
-
* {
|
|
1055
|
+
* { id: "123", name: "John Updated", age: 31 },
|
|
1056
|
+
* { id: "456", name: "Jane Updated", age: 26 }
|
|
1045
1057
|
* ], {
|
|
1046
1058
|
* expansionLevel: 1,
|
|
1047
1059
|
* failOnFirst: true
|
|
@@ -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,208 @@ 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
|
+
* Interface for job response
|
|
5286
|
+
*/
|
|
5287
|
+
interface JobGetResponse 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
|
+
/** Environment variables as a JSON string passed to the job execution */
|
|
5315
|
+
environmentVariables: string | null;
|
|
5316
|
+
/** Additional information about the current job */
|
|
5317
|
+
info: string | null;
|
|
5318
|
+
/** The source name of the job, describing how the job was triggered */
|
|
5319
|
+
source: string | null;
|
|
5320
|
+
/** Reference identifier for the job, used for external correlation */
|
|
5321
|
+
reference: string | null;
|
|
5322
|
+
/** The execution priority of the job */
|
|
5323
|
+
jobPriority: JobPriority | null;
|
|
5324
|
+
/** Value for more granular control over execution priority (1-100) */
|
|
5325
|
+
specificPriorityValue: number | null;
|
|
5326
|
+
/** The type of the job - Attended if started via the robot, Unattended otherwise */
|
|
5327
|
+
type: JobType;
|
|
5328
|
+
/** The package type of the process associated with the job */
|
|
5329
|
+
packageType: PackageType;
|
|
5330
|
+
/** The runtime type of the robot which can pick up the job */
|
|
5331
|
+
runtimeType: RuntimeType | null;
|
|
5332
|
+
/** The source type indicating how the job was triggered */
|
|
5333
|
+
sourceType: JobSourceType;
|
|
5334
|
+
/** The type of the serverless job, or null for non-serverless jobs */
|
|
5335
|
+
serverlessJobType: ServerlessJobType | null;
|
|
5336
|
+
/** The stop strategy for the job */
|
|
5337
|
+
stopStrategy: StopStrategy | null;
|
|
5338
|
+
/** The remote control access level for the job */
|
|
5339
|
+
remoteControlAccess: RemoteControlAccess;
|
|
5340
|
+
/** The folder key (GUID) of the folder this job is part of */
|
|
5341
|
+
folderKey: string | null;
|
|
5342
|
+
/** The unique identifier grouping multiple jobs, usually generated when started by a schedule */
|
|
5343
|
+
batchExecutionKey: string;
|
|
5344
|
+
/** The parent job key (GUID), set when the job was started by another job */
|
|
5345
|
+
parentJobKey: string | null;
|
|
5346
|
+
/** The ID of the schedule that started the job, or null if started by the user */
|
|
5347
|
+
startingScheduleId: number | null;
|
|
5348
|
+
/** The starting trigger ID, can be ApiTriggerId or HttpTriggerId */
|
|
5349
|
+
startingTriggerId: string | null;
|
|
5350
|
+
/** The process version ID */
|
|
5351
|
+
processVersionId: number | null;
|
|
5352
|
+
/** Expected maximum running time in seconds before the job is flagged */
|
|
5353
|
+
maxExpectedRunningTimeSeconds: number | null;
|
|
5354
|
+
/** Whether the job requires user interaction */
|
|
5355
|
+
requiresUserInteraction: boolean;
|
|
5356
|
+
/** If set, the job will resume on the same robot-machine pair on which it initially ran */
|
|
5357
|
+
resumeOnSameContext: boolean;
|
|
5358
|
+
/** Distinguishes between multiple job suspend/resume cycles */
|
|
5359
|
+
resumeVersion: number | null;
|
|
5360
|
+
/** The sub-state in which the job is, providing more granular status information */
|
|
5361
|
+
subState: JobSubState | null;
|
|
5362
|
+
/** The target runtime for the job */
|
|
5363
|
+
targetRuntime: string | null;
|
|
5364
|
+
/** The trace ID for distributed tracing */
|
|
5365
|
+
traceId: string | null;
|
|
5366
|
+
/** The parent span ID for distributed tracing */
|
|
5367
|
+
parentSpanId: string | null;
|
|
5368
|
+
/** The error code associated with a failed job */
|
|
5369
|
+
errorCode: string | null;
|
|
5370
|
+
/** The machine associated with the job (available when using expand=Machine) */
|
|
5371
|
+
machine?: Machine;
|
|
5372
|
+
/** The robot associated with the job (available when using expand=Robot) */
|
|
5373
|
+
robot?: RobotMetadata;
|
|
5374
|
+
/** The process metadata associated with the job (available when using expand=Release) */
|
|
5375
|
+
process?: ProcessMetadata | null;
|
|
5376
|
+
/** Error details for the job, or null if the job has no errors */
|
|
5377
|
+
jobError: JobError | null;
|
|
5378
|
+
}
|
|
5379
|
+
/**
|
|
5380
|
+
* Options for getting all jobs
|
|
5381
|
+
*/
|
|
5382
|
+
type JobGetAllOptions = RequestOptions & PaginationOptions & {
|
|
5383
|
+
/**
|
|
5384
|
+
* Optional folder ID to filter jobs by folder
|
|
5385
|
+
*/
|
|
5386
|
+
folderId?: number;
|
|
5387
|
+
};
|
|
5388
|
+
|
|
5389
|
+
/**
|
|
5390
|
+
* Service for managing UiPath Orchestrator Jobs.
|
|
5391
|
+
*
|
|
5392
|
+
* 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)
|
|
5393
|
+
*
|
|
5394
|
+
* ### Usage
|
|
5395
|
+
*
|
|
5396
|
+
* Prerequisites: Initialize the SDK first - see [Getting Started](/uipath-typescript/getting-started/#import-initialize)
|
|
5397
|
+
*
|
|
5398
|
+
* ```typescript
|
|
5399
|
+
* import { Jobs } from '@uipath/uipath-typescript/jobs';
|
|
5400
|
+
*
|
|
5401
|
+
* const jobs = new Jobs(sdk);
|
|
5402
|
+
* const allJobs = await jobs.getAll();
|
|
5403
|
+
* ```
|
|
5404
|
+
*/
|
|
5405
|
+
interface JobServiceModel {
|
|
5406
|
+
/**
|
|
5407
|
+
* Gets all jobs across folders with optional filtering
|
|
5408
|
+
*
|
|
5409
|
+
* @param options - Query options including optional folderId and pagination options
|
|
5410
|
+
* @returns Promise resolving to either an array of jobs {@link NonPaginatedResponse}<{@link JobGetResponse}> or a {@link PaginatedResponse}<{@link JobGetResponse}> when pagination options are used.
|
|
5411
|
+
* {@link JobGetResponse}
|
|
5412
|
+
* @example
|
|
5413
|
+
* ```typescript
|
|
5414
|
+
* // Get all jobs
|
|
5415
|
+
* const allJobs = await jobs.getAll();
|
|
5416
|
+
*
|
|
5417
|
+
* // Get all jobs in a specific folder
|
|
5418
|
+
* const folderJobs = await jobs.getAll({ folderId: <folderId> });
|
|
5419
|
+
*
|
|
5420
|
+
* // With filtering
|
|
5421
|
+
* const runningJobs = await jobs.getAll({
|
|
5422
|
+
* filter: "state eq 'Running'"
|
|
5423
|
+
* });
|
|
5424
|
+
*
|
|
5425
|
+
* // First page with pagination
|
|
5426
|
+
* const page1 = await jobs.getAll({ pageSize: 10 });
|
|
5427
|
+
*
|
|
5428
|
+
* // Navigate using cursor
|
|
5429
|
+
* if (page1.hasNextPage) {
|
|
5430
|
+
* const page2 = await jobs.getAll({ cursor: page1.nextCursor });
|
|
5431
|
+
* }
|
|
5432
|
+
*
|
|
5433
|
+
* // Jump to specific page
|
|
5434
|
+
* const page5 = await jobs.getAll({
|
|
5435
|
+
* jumpToPage: 5,
|
|
5436
|
+
* pageSize: 10
|
|
5437
|
+
* });
|
|
5438
|
+
* ```
|
|
5439
|
+
*/
|
|
5440
|
+
getAll<T extends JobGetAllOptions = JobGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<JobGetResponse> : NonPaginatedResponse<JobGetResponse>>;
|
|
5441
|
+
}
|
|
5124
5442
|
|
|
5125
5443
|
/**
|
|
5126
5444
|
* Service for managing and executing UiPath Automation Processes.
|
|
@@ -5348,7 +5666,8 @@ type QueueGetAllOptions = RequestOptions & PaginationOptions & {
|
|
|
5348
5666
|
*/
|
|
5349
5667
|
folderId?: number;
|
|
5350
5668
|
};
|
|
5351
|
-
|
|
5669
|
+
interface QueueGetByIdOptions extends BaseOptions {
|
|
5670
|
+
}
|
|
5352
5671
|
|
|
5353
5672
|
/**
|
|
5354
5673
|
* Service for managing UiPath Queues
|
|
@@ -5489,6 +5808,74 @@ declare class QueueService extends FolderScopedService implements QueueServiceMo
|
|
|
5489
5808
|
getById(id: number, folderId: number, options?: QueueGetByIdOptions): Promise<QueueGetResponse>;
|
|
5490
5809
|
}
|
|
5491
5810
|
|
|
5811
|
+
/**
|
|
5812
|
+
* Attachment response from the API
|
|
5813
|
+
*/
|
|
5814
|
+
interface AttachmentResponse {
|
|
5815
|
+
/**
|
|
5816
|
+
* UUID of the attachment
|
|
5817
|
+
*/
|
|
5818
|
+
id: string;
|
|
5819
|
+
/**
|
|
5820
|
+
* Name of the attachment
|
|
5821
|
+
*/
|
|
5822
|
+
name: string;
|
|
5823
|
+
/**
|
|
5824
|
+
* Optional job key to link the attachment to a job when creating it.
|
|
5825
|
+
*/
|
|
5826
|
+
jobKey?: string;
|
|
5827
|
+
/**
|
|
5828
|
+
* Optional category for the attachment when linking to a job.
|
|
5829
|
+
*/
|
|
5830
|
+
attachmentCategory?: string;
|
|
5831
|
+
/**
|
|
5832
|
+
* When the attachment was last modified
|
|
5833
|
+
*/
|
|
5834
|
+
lastModifiedTime?: string;
|
|
5835
|
+
/**
|
|
5836
|
+
* User ID who last modified the attachment
|
|
5837
|
+
*/
|
|
5838
|
+
lastModifierUserId?: number;
|
|
5839
|
+
/**
|
|
5840
|
+
* When the attachment was created
|
|
5841
|
+
*/
|
|
5842
|
+
createdTime?: string;
|
|
5843
|
+
/**
|
|
5844
|
+
* User ID who created the attachment
|
|
5845
|
+
*/
|
|
5846
|
+
creatorUserId?: number;
|
|
5847
|
+
blobFileAccess: BucketGetUriResponse;
|
|
5848
|
+
}
|
|
5849
|
+
/**
|
|
5850
|
+
* Options for getting an attachment by ID
|
|
5851
|
+
*/
|
|
5852
|
+
interface AttachmentGetByIdOptions extends BaseOptions {
|
|
5853
|
+
}
|
|
5854
|
+
|
|
5855
|
+
/**
|
|
5856
|
+
* Service for managing UiPath Orchestrator Attachments.
|
|
5857
|
+
*
|
|
5858
|
+
* Attachments are files that can be associated with Orchestrator jobs.
|
|
5859
|
+
*/
|
|
5860
|
+
interface AttachmentServiceModel {
|
|
5861
|
+
/**
|
|
5862
|
+
* Gets an attachment by ID
|
|
5863
|
+
*
|
|
5864
|
+
* @param id - The UUID of the attachment to retrieve
|
|
5865
|
+
* @param options - Optional query parameters (expand, select)
|
|
5866
|
+
* @returns Promise resolving to the attachment
|
|
5867
|
+
* {@link AttachmentResponse}
|
|
5868
|
+
* @example
|
|
5869
|
+
* ```typescript
|
|
5870
|
+
* import { Attachments } from '@uipath/uipath-typescript/attachments';
|
|
5871
|
+
*
|
|
5872
|
+
* const attachments = new Attachments(sdk);
|
|
5873
|
+
* const attachment = await attachments.getById('12345678-1234-1234-1234-123456789abc');
|
|
5874
|
+
* ```
|
|
5875
|
+
*/
|
|
5876
|
+
getById(id: string, options?: AttachmentGetByIdOptions): Promise<AttachmentResponse>;
|
|
5877
|
+
}
|
|
5878
|
+
|
|
5492
5879
|
/**
|
|
5493
5880
|
* Service for interacting with UiPath Tasks API
|
|
5494
5881
|
*/
|
|
@@ -5600,23 +5987,24 @@ declare class TaskService extends BaseService implements TaskServiceModel {
|
|
|
5600
5987
|
getAll<T extends TaskGetAllOptions = TaskGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<TaskGetResponse> : NonPaginatedResponse<TaskGetResponse>>;
|
|
5601
5988
|
/**
|
|
5602
5989
|
* Gets a task by ID
|
|
5603
|
-
* IMPORTANT: For form tasks, folderId must be provided.
|
|
5604
|
-
*
|
|
5605
5990
|
* @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
|
-
*
|
|
5991
|
+
* @param options - Optional query parameters including taskType for faster retrieval {@link TaskGetByIdOptions}
|
|
5992
|
+
* @param folderId - Optional folder ID (REQUIRED when options.taskType is provided)
|
|
5993
|
+
* @returns Promise resolving to the task
|
|
5994
|
+
* {@link TaskGetResponse}
|
|
5610
5995
|
* @example
|
|
5611
5996
|
* ```typescript
|
|
5612
|
-
*
|
|
5997
|
+
* // Get a task by ID
|
|
5998
|
+
* const task = await tasks.getById(<taskId>);
|
|
5613
5999
|
*
|
|
5614
|
-
*
|
|
6000
|
+
* // Get a form task by ID
|
|
6001
|
+
* const formTask = await tasks.getById(<taskId>, {}, <folderId>);
|
|
5615
6002
|
*
|
|
5616
|
-
* //
|
|
5617
|
-
*
|
|
6003
|
+
* // Access form task properties
|
|
6004
|
+
* console.log(formTask.formLayout);
|
|
5618
6005
|
*
|
|
5619
|
-
* //
|
|
6006
|
+
* // Get a document validation task by ID (faster with taskType provided in the options)
|
|
6007
|
+
* const dvTask = await tasks.getById(<taskId>, { taskType: TaskType.DocumentValidation }, <folderId>);
|
|
5620
6008
|
* ```
|
|
5621
6009
|
*/
|
|
5622
6010
|
getById(id: number, options?: TaskGetByIdOptions, folderId?: number): Promise<TaskGetResponse>;
|
|
@@ -5748,14 +6136,19 @@ declare class TaskService extends BaseService implements TaskServiceModel {
|
|
|
5748
6136
|
*/
|
|
5749
6137
|
complete(options: TaskCompletionOptions, folderId: number): Promise<OperationResponse<TaskCompletionOptions>>;
|
|
5750
6138
|
/**
|
|
5751
|
-
*
|
|
6139
|
+
* Routes to the type-specific endpoint based on task type.
|
|
6140
|
+
*/
|
|
6141
|
+
private getByTaskType;
|
|
6142
|
+
/**
|
|
6143
|
+
* Fetches a task from a type-specific endpoint.
|
|
5752
6144
|
*
|
|
5753
|
-
* @param id - The
|
|
6145
|
+
* @param id - The task ID
|
|
5754
6146
|
* @param folderId - Required folder ID
|
|
5755
|
-
* @param
|
|
5756
|
-
* @
|
|
6147
|
+
* @param endpoint - The type-specific endpoint to call
|
|
6148
|
+
* @param extraParams - Additional query parameters (e.g. form options)
|
|
6149
|
+
* @returns Promise resolving to the task
|
|
5757
6150
|
*/
|
|
5758
|
-
private
|
|
6151
|
+
private getTaskByTypeEndpoint;
|
|
5759
6152
|
/**
|
|
5760
6153
|
* Process parameters for task queries with folder filtering
|
|
5761
6154
|
* @param options - The REST API options to process
|
|
@@ -9691,11 +10084,14 @@ interface ConversationSessionOptions {
|
|
|
9691
10084
|
logLevel?: LogLevel;
|
|
9692
10085
|
}
|
|
9693
10086
|
/** Response for creating a conversation (includes methods) */
|
|
9694
|
-
|
|
10087
|
+
interface ConversationCreateResponse extends ConversationGetResponse {
|
|
10088
|
+
}
|
|
9695
10089
|
/** Response for updating a conversation (includes methods) */
|
|
9696
|
-
|
|
10090
|
+
interface ConversationUpdateResponse extends ConversationGetResponse {
|
|
10091
|
+
}
|
|
9697
10092
|
/** Response for deleting a conversation (raw data, no methods needed) */
|
|
9698
|
-
|
|
10093
|
+
interface ConversationDeleteResponse extends RawConversationGetResponse {
|
|
10094
|
+
}
|
|
9699
10095
|
interface ConversationCreateOptions {
|
|
9700
10096
|
/** Human-readable label for the conversation (max 100 chars) */
|
|
9701
10097
|
label?: string;
|
|
@@ -9890,7 +10286,8 @@ interface RawAgentGetByIdResponse extends RawAgentGetResponse {
|
|
|
9890
10286
|
/**
|
|
9891
10287
|
* Options for creating a conversation from an agent
|
|
9892
10288
|
*/
|
|
9893
|
-
|
|
10289
|
+
interface AgentCreateConversationOptions extends ConversationCreateOptions {
|
|
10290
|
+
}
|
|
9894
10291
|
/**
|
|
9895
10292
|
* Scoped conversation service for a specific agent.
|
|
9896
10293
|
* Auto-fills agentId and folderId from the agent.
|
|
@@ -9982,7 +10379,8 @@ interface UserSettingsGetResponse {
|
|
|
9982
10379
|
updatedTime: string;
|
|
9983
10380
|
}
|
|
9984
10381
|
/** Response for updating user settings */
|
|
9985
|
-
|
|
10382
|
+
interface UserSettingsUpdateResponse extends UserSettingsGetResponse {
|
|
10383
|
+
}
|
|
9986
10384
|
/**
|
|
9987
10385
|
* Options for updating user settings
|
|
9988
10386
|
*
|
|
@@ -10585,7 +10983,7 @@ declare const telemetryClient: TelemetryClient;
|
|
|
10585
10983
|
* SDK Telemetry constants
|
|
10586
10984
|
*/
|
|
10587
10985
|
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.2.
|
|
10986
|
+
declare const SDK_VERSION = "1.2.2";
|
|
10589
10987
|
declare const VERSION = "Version";
|
|
10590
10988
|
declare const SERVICE = "Service";
|
|
10591
10989
|
declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
|
|
@@ -10600,5 +10998,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
|
|
|
10600
10998
|
declare const SDK_RUN_EVENT = "Sdk.Run";
|
|
10601
10999
|
declare const UNKNOWN = "";
|
|
10602
11000
|
|
|
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 };
|
|
11001
|
+
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, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
|
|
11002
|
+
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, 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, 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 };
|