@uipath/uipath-typescript 1.3.2 → 1.3.3

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/index.d.ts CHANGED
@@ -3442,6 +3442,20 @@ interface ElementRunMetadata {
3442
3442
  parentElementRunId: string | null;
3443
3443
  }
3444
3444
 
3445
+ declare enum TaskUserType {
3446
+ /** A user of this type is supposed to be used by a human. */
3447
+ User = "User",
3448
+ /** A user of this type is automatically created when adding a robot, is associated with Robot role and it is used by a robot when communicating with Orchestrator. */
3449
+ Robot = "Robot",
3450
+ /** A user of type Directory User */
3451
+ DirectoryUser = "DirectoryUser",
3452
+ /** A user of type Directory Group */
3453
+ DirectoryGroup = "DirectoryGroup",
3454
+ /** A user of type Directory Robot Account */
3455
+ DirectoryRobot = "DirectoryRobot",
3456
+ /** A user of type Directory External Application */
3457
+ DirectoryExternalApplication = "DirectoryExternalApplication"
3458
+ }
3445
3459
  interface UserLoginInfo {
3446
3460
  name: string;
3447
3461
  surname: string;
@@ -3449,6 +3463,7 @@ interface UserLoginInfo {
3449
3463
  emailAddress: string;
3450
3464
  displayName: string;
3451
3465
  id: number;
3466
+ type: TaskUserType;
3452
3467
  }
3453
3468
  /**
3454
3469
  * Types of tasks available in Action Center.
@@ -3923,17 +3938,17 @@ interface TaskServiceModel {
3923
3938
  */
3924
3939
  complete(options: TaskCompletionOptions, folderId: number): Promise<OperationResponse<TaskCompletionOptions>>;
3925
3940
  /**
3926
- * Gets users in the given folder who have Tasks.View and Tasks.Edit permissions
3941
+ * Gets task users (users, robots, groups etc) in the given folder who have Tasks.View and Tasks.Edit permissions
3927
3942
  * Returns a NonPaginatedResponse with data and totalCount when no pagination parameters are provided,
3928
3943
  * or a PaginatedResponse when any pagination parameter is provided
3929
3944
  *
3930
- * @param folderId - The folder ID to get users from
3945
+ * @param folderId - The folder ID to get task users from
3931
3946
  * @param options - Optional query and pagination parameters
3932
- * @returns Promise resolving to either an array of users NonPaginatedResponse<UserLoginInfo> or a PaginatedResponse<UserLoginInfo> when pagination options are used.
3947
+ * @returns Promise resolving to either an array of task users NonPaginatedResponse<UserLoginInfo> or a PaginatedResponse<UserLoginInfo> when pagination options are used.
3933
3948
  * {@link UserLoginInfo}
3934
3949
  * @example
3935
3950
  * ```typescript
3936
- * // Get users from a folder
3951
+ * // Get task users from a folder
3937
3952
  * const users = await tasks.getUsers(<folderId>);
3938
3953
  *
3939
3954
  * // Access user properties
@@ -5892,6 +5907,13 @@ interface RawJobGetResponse extends FolderProperties {
5892
5907
  /** Error details for the job, or null if the job has no errors */
5893
5908
  jobError: JobError | null;
5894
5909
  }
5910
+ /**
5911
+ * Options for resuming a suspended job
5912
+ */
5913
+ interface JobResumeOptions {
5914
+ /** Input arguments to pass to the resumed job */
5915
+ inputArguments?: Record<string, unknown>;
5916
+ }
5895
5917
  /**
5896
5918
  * Options for getting all jobs
5897
5919
  */
@@ -5906,6 +5928,18 @@ type JobGetAllOptions = RequestOptions & PaginationOptions & {
5906
5928
  */
5907
5929
  interface JobGetByIdOptions extends BaseOptions {
5908
5930
  }
5931
+ /**
5932
+ * Options for stopping jobs
5933
+ */
5934
+ interface JobStopOptions {
5935
+ /**
5936
+ * The stop strategy to use.
5937
+ * - `SoftStop` — requests graceful cancellation; the job completes its current activity before stopping
5938
+ * - `Kill` — requests immediate termination of the job
5939
+ * @default StopStrategy.SoftStop
5940
+ */
5941
+ strategy?: StopStrategy;
5942
+ }
5909
5943
 
5910
5944
  /** Combined response type for job data with bound methods. */
5911
5945
  type JobGetResponse = RawJobGetResponse & JobMethods;
@@ -6028,6 +6062,62 @@ interface JobServiceModel {
6028
6062
  * ```
6029
6063
  */
6030
6064
  getOutput(jobKey: string, folderId: number): Promise<Record<string, unknown> | null>;
6065
+ /**
6066
+ * Stops one or more jobs by their UUID keys.
6067
+ *
6068
+ * Sends a stop request for the specified jobs to the Orchestrator. Throws if any keys cannot be resolved.
6069
+ *
6070
+ * @param jobKeys - Array of job UUID keys to stop (e.g., from {@link JobGetResponse}.key)
6071
+ * @param folderId - The folder ID where the jobs reside (required)
6072
+ * @param options - Optional {@link JobStopOptions} including stop strategy
6073
+ * @returns Promise that resolves when the jobs are stopped successfully, or rejects on failure
6074
+ *
6075
+ * @example
6076
+ * ```typescript
6077
+ * // Stop a single job with default soft stop
6078
+ * await jobs.stop([<jobKey>], <folderId>);
6079
+ * ```
6080
+ *
6081
+ * @example
6082
+ * ```typescript
6083
+ * import { StopStrategy } from '@uipath/uipath-typescript/jobs';
6084
+ *
6085
+ * // Force-kill multiple jobs
6086
+ * await jobs.stop(
6087
+ * [<jobKey1>, <jobKey2>],
6088
+ * <folderId>,
6089
+ * { strategy: StopStrategy.Kill }
6090
+ * );
6091
+ * ```
6092
+ */
6093
+ stop(jobKeys: string[], folderId: number, options?: JobStopOptions): Promise<void>;
6094
+ /**
6095
+ * Resumes a suspended job.
6096
+ *
6097
+ * Sends a resume request to a job that is currently in the `Suspended` state.
6098
+ * The job transitions to `Resumed` and then to `Running` as it continues execution. Optionally pass
6099
+ * input arguments to provide data for the resumed workflow.
6100
+ *
6101
+ * @param jobKey - The unique key (GUID) of the suspended job to resume
6102
+ * @param folderId - The folder ID where the job resides
6103
+ * @param options - Optional parameters including input arguments
6104
+ * @returns Promise that resolves when the job is resumed successfully, or rejects on failure
6105
+ *
6106
+ * @example
6107
+ * ```typescript
6108
+ * // Resume a suspended job
6109
+ * await jobs.resume(<jobKey>, <folderId>);
6110
+ * ```
6111
+ *
6112
+ * @example
6113
+ * ```typescript
6114
+ * // Resume with input arguments
6115
+ * await jobs.resume(<jobKey>, <folderId>, {
6116
+ * inputArguments: { approved: true }
6117
+ * });
6118
+ * ```
6119
+ */
6120
+ resume(jobKey: string, folderId: number, options?: JobResumeOptions): Promise<void>;
6031
6121
  }
6032
6122
  /**
6033
6123
  * Methods available on job response objects.
@@ -6054,6 +6144,32 @@ interface JobMethods {
6054
6144
  * ```
6055
6145
  */
6056
6146
  getOutput(): Promise<Record<string, unknown> | null>;
6147
+ /**
6148
+ * Stops this job.
6149
+ *
6150
+ * Sends a stop request for this job to the Orchestrator.
6151
+ *
6152
+ * @param options - Optional {@link JobStopOptions} including stop strategy (defaults to SoftStop)
6153
+ * @returns Promise that resolves when the jobs are stopped successfully, or rejects on failure
6154
+ *
6155
+ * @example
6156
+ * ```typescript
6157
+ * const allJobs = await jobs.getAll({ folderId: <folderId> });
6158
+ * const runningJob = allJobs.items.find(j => j.state === JobState.Running);
6159
+ *
6160
+ * if (runningJob) {
6161
+ * await runningJob.stop();
6162
+ * }
6163
+ * ```
6164
+ */
6165
+ stop(options?: JobStopOptions): Promise<void>;
6166
+ /**
6167
+ * Resumes this suspended job.
6168
+ *
6169
+ * @param options - Optional parameters including input arguments
6170
+ * @returns Promise that resolves when the job is resumed successfully, or rejects on failure
6171
+ */
6172
+ resume(options?: JobResumeOptions): Promise<void>;
6057
6173
  }
6058
6174
  /**
6059
6175
  * Creates a job response with bound methods.
@@ -6524,15 +6640,15 @@ declare class TaskService extends BaseService implements TaskServiceModel {
6524
6640
  */
6525
6641
  create(task: TaskCreateOptions, folderId: number): Promise<TaskCreateResponse>;
6526
6642
  /**
6527
- * Gets users in the given folder who have Tasks.View and Tasks.Edit permissions
6643
+ * Gets task users (users, robots, groups etc) in the given folder who have Tasks.View and Tasks.Edit permissions
6528
6644
  *
6529
6645
  * The method returns either:
6530
- * - An array of users (when no pagination parameters are provided)
6646
+ * - An array of task users (when no pagination parameters are provided)
6531
6647
  * - A paginated result with navigation cursors (when any pagination parameter is provided)
6532
6648
  *
6533
- * @param folderId - The folder ID to get users from
6649
+ * @param folderId - The folder ID to get task users from
6534
6650
  * @param options - Optional query and pagination parameters
6535
- * @returns Promise resolving to an array of users or paginated result
6651
+ * @returns Promise resolving to an array of task users or paginated result
6536
6652
  *
6537
6653
  * @example
6538
6654
  * ```typescript
@@ -6543,7 +6659,7 @@ declare class TaskService extends BaseService implements TaskServiceModel {
6543
6659
  * // Standard array return
6544
6660
  * const users = await tasks.getUsers(123);
6545
6661
  *
6546
- * // Get users with filtering
6662
+ * // Get task users with filtering
6547
6663
  * const users = await tasks.getUsers(123, {
6548
6664
  * filter: "name eq 'abc'"
6549
6665
  * });
@@ -10562,6 +10678,19 @@ interface ConversationServiceModel {
10562
10678
  * @internal
10563
10679
  */
10564
10680
  onConnectionStatusChanged(handler: ConnectionStatusChangedHandler): () => void;
10681
+ /**
10682
+ * Closes the WebSocket connection and releases all session resources.
10683
+ *
10684
+ * In Node.js the WebSocket keeps the event loop alive until disconnected,
10685
+ * so call this to allow the process to exit cleanly. In the browser the
10686
+ * runtime handles socket cleanup on page unload, so this is effectively a no-op.
10687
+ *
10688
+ * @example
10689
+ * ```typescript
10690
+ * conversationalAgent.conversations.disconnect();
10691
+ * ```
10692
+ */
10693
+ disconnect(): void;
10565
10694
  }
10566
10695
  /**
10567
10696
  * Methods interface that will be added to conversation objects
@@ -11267,6 +11396,142 @@ interface ConversationalAgentOptions {
11267
11396
  logLevel?: LogLevel;
11268
11397
  }
11269
11398
 
11399
+ /**
11400
+ * Represents a category that can be associated with feedback.
11401
+ * Default categories (Output, Agent Error, Agent Plan Execution) are auto-created per tenant.
11402
+ */
11403
+ interface FeedbackCategory {
11404
+ /** Unique identifier of the feedback category */
11405
+ id: string;
11406
+ /** Category name (max 256 characters, unique per tenant) */
11407
+ category: string;
11408
+ /** Timestamp when the category was created */
11409
+ createdAt: string;
11410
+ /** Whether this is a system default category (e.g., Output, Agent Error, Agent Plan Execution) */
11411
+ isDefault: boolean;
11412
+ /** Whether this category applies to positive feedback */
11413
+ isPositive: boolean;
11414
+ /** Whether this category applies to negative feedback */
11415
+ isNegative: boolean;
11416
+ }
11417
+ /**
11418
+ * Status of a feedback entry in the review workflow
11419
+ */
11420
+ declare enum FeedbackStatus {
11421
+ /** Feedback is awaiting review */
11422
+ Pending = 0,
11423
+ /** Feedback has been approved and confirmed */
11424
+ Approved = 1,
11425
+ /** Feedback has been dismissed */
11426
+ Dismissed = 2
11427
+ }
11428
+ /**
11429
+ * Complete feedback object returned from the API
11430
+ */
11431
+ interface FeedbackGetResponse {
11432
+ /** Unique identifier of the feedback entry */
11433
+ id: string;
11434
+ /** Trace identifier linking feedback to a specific agent execution */
11435
+ traceId: string;
11436
+ /** Span identifier representing a specific operation within the trace */
11437
+ spanId: string;
11438
+ /** Identifier of the agent that generated the response being reviewed */
11439
+ agentId: string | null;
11440
+ /** Version of the agent at the time the feedback was given (max 100 characters) */
11441
+ agentVersion?: string;
11442
+ /** Optional text comment provided by the user (max 4000 characters) */
11443
+ comment?: string;
11444
+ /** Optional metadata string associated with the feedback (max 4000 characters) */
11445
+ metadata?: string;
11446
+ /** Whether the feedback is positive (thumbs up) or negative (thumbs down) */
11447
+ isPositive: boolean;
11448
+ /** Categories associated with this feedback entry */
11449
+ feedbackCategories: FeedbackCategory[];
11450
+ /** Email address of the user who submitted the feedback */
11451
+ userEmail?: string;
11452
+ /** Current status of the feedback in the review workflow */
11453
+ status: FeedbackStatus;
11454
+ /** Timestamp when the feedback was created */
11455
+ createdTime: string;
11456
+ /** Timestamp when the feedback was last updated */
11457
+ updatedTime: string;
11458
+ }
11459
+ /**
11460
+ * Options for retrieving multiple feedback entries
11461
+ */
11462
+ type FeedbackGetAllOptions = PaginationOptions & {
11463
+ /** Filter by agent identifier */
11464
+ agentId?: string;
11465
+ /** Filter by agent version */
11466
+ agentVersion?: string;
11467
+ /** Filter by feedback status */
11468
+ status?: FeedbackStatus;
11469
+ /** Filter by OpenTelemetry trace identifier */
11470
+ traceId?: string;
11471
+ /** Filter by OpenTelemetry span identifier */
11472
+ spanId?: string;
11473
+ };
11474
+
11475
+ /**
11476
+ * Service for managing UiPath Agent Feedback.
11477
+ *
11478
+ * Feedback allows you to collect and manage user feedback on AI agent responses,
11479
+ * including positive/negative ratings, comments, and categorized feedback.
11480
+ * This is useful for monitoring agent quality, identifying areas for improvement,
11481
+ * and building datasets for fine-tuning. [Feedback on agent runs](https://docs.uipath.com/agents/automation-cloud/latest/user-guide/agent-traces#feedback-on-agent-runs)
11482
+ *
11483
+ * ### Usage
11484
+ *
11485
+ * Prerequisites: Initialize the SDK first - see [Getting Started](/uipath-typescript/getting-started/#import-initialize)
11486
+ *
11487
+ * ```typescript
11488
+ * import { Feedback } from '@uipath/uipath-typescript/feedback';
11489
+ *
11490
+ * const feedback = new Feedback(sdk);
11491
+ * const allFeedback = await feedback.getAll();
11492
+ * ```
11493
+ */
11494
+ interface FeedbackServiceModel {
11495
+ /**
11496
+ * Gets all feedback across all agents in the tenant, with optional filters.
11497
+ *
11498
+ * Retrieves a list of feedback entries, optionally filtered by agent, trace, span, status, or agent version.
11499
+ * When no pagination options are provided, the API returns up to 100 items. When pagination options are provided without a pageSize, the SDK defaults to 50 items per page.
11500
+ *
11501
+ * @param options - Optional query parameters for filtering and pagination
11502
+ * @returns Promise resolving to {@link NonPaginatedResponse} of {@link FeedbackGetResponse} without pagination options, or {@link PaginatedResponse} of {@link FeedbackGetResponse} when pagination options are used.
11503
+ * @example
11504
+ * ```typescript
11505
+ * import { Feedback, FeedbackStatus } from '@uipath/uipath-typescript/feedback';
11506
+ *
11507
+ * // Get all feedback (returns API default page size)
11508
+ * const allFeedback = await feedback.getAll();
11509
+ *
11510
+ * // Get the agentId from a feedback entry
11511
+ * const agentId = allFeedback.items[0].agentId;
11512
+ *
11513
+ * // Get feedback for a specific agent
11514
+ * const agentFeedback = await feedback.getAll({
11515
+ * agentId,
11516
+ * });
11517
+ *
11518
+ * // First page with pagination
11519
+ * const page1 = await feedback.getAll({ pageSize: 10 });
11520
+ *
11521
+ * // Navigate using cursor
11522
+ * if (page1.hasNextPage) {
11523
+ * const page2 = await feedback.getAll({ cursor: page1.nextCursor });
11524
+ * }
11525
+ *
11526
+ * // Filter by status
11527
+ * const activeFeedback = await feedback.getAll({
11528
+ * status: FeedbackStatus.Pending,
11529
+ * });
11530
+ * ```
11531
+ */
11532
+ getAll<T extends FeedbackGetAllOptions = FeedbackGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<FeedbackGetResponse> : NonPaginatedResponse<FeedbackGetResponse>>;
11533
+ }
11534
+
11270
11535
  /**
11271
11536
  * Error thrown when authorization fails (403 errors)
11272
11537
  * Common scenarios:
@@ -11611,7 +11876,7 @@ declare const telemetryClient: TelemetryClient;
11611
11876
  * SDK Telemetry constants
11612
11877
  */
11613
11878
  declare const CONNECTION_STRING = "InstrumentationKey=a6efa11d-1feb-4508-9738-e13e12dcae5e;IngestionEndpoint=https://westeurope-5.in.applicationinsights.azure.com/;LiveEndpoint=https://westeurope.livediagnostics.monitor.azure.com/;ApplicationId=7c58eb1c-9581-4ba6-839e-11725848a037";
11614
- declare const SDK_VERSION = "1.3.2";
11879
+ declare const SDK_VERSION = "1.3.3";
11615
11880
  declare const VERSION = "Version";
11616
11881
  declare const SERVICE = "Service";
11617
11882
  declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -11626,5 +11891,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
11626
11891
  declare const SDK_RUN_EVENT = "Sdk.Run";
11627
11892
  declare const UNKNOWN = "";
11628
11893
 
11629
- export { APP_NAME, AgentMap, AssetValueScope, AssetValueType, AuthenticationError, AuthorizationError, BucketOptions, CLOUD_CLIENT_ID, CLOUD_ORGANIZATION_NAME, CLOUD_REDIRECT_URI, CLOUD_ROLE_NAME, CLOUD_TENANT_NAME, CLOUD_URL, CONNECTION_STRING, CitationErrorType, ConversationMap, DEFAULT_ITEMS_FIELD, DEFAULT_PAGE_SIZE, DEFAULT_TOTAL_COUNT_FIELD, DataDirectionType, DebugMode, EntityFieldDataType, EntityType, ErrorType, EscalationActionType, EscalationRecipientScope, EscalationTriggerType, ExchangeMap, FeedbackRating, FieldDisplayType, HttpStatus, InputStreamSpeechSensitivity, InterruptType, JobPriority, JobSourceType, JobState, JobSubState, JobType, JoinType, LogicalOperator, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, QueryFilterOperator, RateLimitError, ReferenceType, RemoteControlAccess, RobotSize, RuntimeType, SDK_LOGGER_NAME, SDK_RUN_EVENT, SDK_SERVICE_NAME, SDK_VERSION, SERVICE, SLADurationUnit, ServerError, ServerlessJobType, SortOrder, StageTaskType, StartStrategy, StopStrategy, TargetFramework, TaskActivityType, TaskPriority, TaskSlaCriteria, TaskSlaStatus, TaskSourceName, TaskStatus, TaskType, UNKNOWN, UiPath, UiPathError, UiPathMetaTags, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createJobWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
11630
- export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentMethods, AgentStartingPrompt, ArgumentMetadata, AssetGetAllOptions, AssetGetByIdOptions, AssetGetResponse, AssetServiceModel, AsyncInputStream, AsyncInputStreamChunkEvent, AsyncInputStreamEndEvent, AsyncInputStreamEvent, AsyncInputStreamStartEvent, AsyncToolCallStream, AttachmentGetByIdOptions, AttachmentResponse, AttachmentServiceModel, BaseConfig, BaseOptions, BaseProcessStartRequest, BlobItem, BodyOptions, BpmnXmlString, BucketGetAllOptions, BucketGetByIdOptions, BucketGetFileMetaDataOptions, BucketGetFileMetaDataResponse, BucketGetFileMetaDataWithPaginationOptions, BucketGetReadUriOptions, BucketGetResponse, BucketGetUriOptions, BucketGetUriResponse, BucketServiceModel, BucketUploadFileOptions, BucketUploadResponse, CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetStageResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstancesServiceModel, CasesServiceModel, ChoiceSetGetAllResponse, ChoiceSetGetByIdOptions, ChoiceSetGetResponse, ChoiceSetServiceModel, Citation, CitationEndEvent, CitationError, CitationEvent, CitationOptions, CitationSource, CitationSourceBase, CitationSourceMedia, CitationSourceUrl, CitationStartEvent, CollectionResponse, CompletedContentPart, CompletedMessage, CompletedToolCall, ContentPart, ContentPartChunkEvent, ContentPartData, ContentPartEndEvent, ContentPartEvent, ContentPartGetResponse, ContentPartInterrupted, ContentPartStartEvent, ContentPartStartMetaData, ContentPartStream, ConversationAttachmentCreateResponse, ConversationAttachmentUploadResponse, ConversationCreateOptions, ConversationCreateResponse, ConversationDeleteResponse, ConversationEvent, ConversationExchangeServiceModel, ConversationGetAllOptions, ConversationGetResponse, ConversationJobStartOverrides, ConversationMethods, ConversationServiceModel, ConversationSessionMethods, ConversationSessionOptions, ConversationUpdateOptions, ConversationUpdateResponse, ConversationalAgentOptions, ConversationalAgentServiceModel, CreateFeedbackOptions, CustomKeyValuePair, ElementExecutionMetadata, ElementMetaData, ElementRunMetadata, EntityBatchInsertOptions, EntityBatchInsertResponse, EntityCreateFieldOptions, EntityCreateOptions, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFieldBase, EntityFieldUpdateOptions, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityImportRecordsResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityQueryFilter, EntityQueryFilterGroup, EntityQueryRecordsOptions, EntityQueryRecordsResponse, EntityQuerySortOption, EntityRecord, EntityRemoveFieldOptions, EntityServiceModel, EntityUpdateByIdOptions, EntityUpdateOptions, EntityUpdateRecordOptions, EntityUpdateRecordResponse, EntityUpdateRecordsOptions, EntityUpdateResponse, EntityUploadAttachmentOptions, EntityUploadAttachmentResponse, ErrorEndEvent, ErrorEvent, ErrorStartEvent, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, Exchange, ExchangeEndEvent, ExchangeEvent, ExchangeGetAllOptions, ExchangeGetByIdOptions, ExchangeGetResponse, ExchangeServiceModel, ExchangeStartEvent, ExchangeStream, ExternalConnection, ExternalField, ExternalFieldMapping, ExternalObject, ExternalSourceFields, ExternalValue, FailureRecord, FeatureFlags, FeedbackCreateResponse, Field, FieldDataType, FieldMetaData, FileUploadAccess, FolderProperties, GenericInterruptStartEvent, GlobalVariableMetaData, HasPaginationOptions, Headers, HttpMethod, InlineOrExternalValue, InlineValue, Interrupt, InterruptEndEvent, InterruptEvent, InterruptStartEvent, JSONArray, JSONObject, JSONPrimitive, JSONValue, JobAttachment, JobError, JobGetAllOptions, JobGetByIdOptions, JobGetResponse, JobMethods, JobServiceModel, LabelUpdatedEvent, Machine, MaestroProcessGetAllResponse, MaestroProcessesServiceModel, MakeOptional, MakeRequired, Message, MessageEndEvent, MessageEvent, MessageGetResponse, MessageServiceModel, MessageStartEvent, MessageStream, MetaData, MetaEvent, NonPaginatedResponse, OAuthFields, OperationResponse, PaginatedResponse, PaginationCursor, PaginationMetadata, PaginationMethodUnion, PaginationOptions, PartialUiPathConfig, ProcessGetAllOptions, ProcessGetByIdOptions, ProcessGetResponse, ProcessIncidentGetAllResponse, ProcessIncidentGetResponse, ProcessIncidentsServiceModel, ProcessInstanceExecutionHistoryResponse, ProcessInstanceGetAllOptions, ProcessInstanceGetAllWithPaginationOptions, ProcessInstanceGetResponse, ProcessInstanceGetVariablesOptions, ProcessInstanceGetVariablesResponse, ProcessInstanceMethods, ProcessInstanceOperationOptions, ProcessInstanceOperationResponse, ProcessInstanceRun, ProcessInstancesServiceModel, ProcessMetadata, ProcessMethods, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, QueryParams, QueueGetAllOptions, QueueGetByIdOptions, QueueGetResponse, QueueServiceModel, RawAgentGetByIdResponse, RawAgentGetResponse, RawCaseInstanceGetResponse, RawConversationGetResponse, RawEntityGetResponse, RawJobGetResponse, RawMaestroProcessGetAllResponse, RawProcessInstanceGetResponse, RawTaskCreateResponse, RawTaskGetResponse, RequestOptions, RequestSpec, ResponseDictionary, ResponseType, RetryOptions, RobotMetadata, SessionCapabilities, SessionEndEvent, SessionEndingEvent, SessionStartEvent, SessionStartedEvent, SessionStream, Simplify, SourceJoinCriteria, SqlType, StageSLA, StageTask, Tag, TaskActivity, TaskAssignOptions, TaskAssignment, TaskAssignmentOptions, TaskAssignmentResponse, TaskBaseResponse, TaskCompleteOptions, TaskCompletionOptions, TaskCreateOptions, TaskCreateResponse, TaskGetAllOptions, TaskGetByIdOptions, TaskGetResponse, TaskGetUsersOptions, TaskMethods, TaskServiceModel, TaskSlaDetail, TaskSource, TasksUnassignOptions, TimeoutOptions, ToolCall, ToolCallConfirmationEndValue, ToolCallConfirmationInterruptStartEvent, ToolCallConfirmationValue, ToolCallEndEvent, ToolCallEvent, ToolCallInputValue, ToolCallOutputValue, ToolCallResult, ToolCallStartEvent, ToolCallStream, UiPathSDKConfig, UserLoginInfo, UserServiceModel, UserSettingsGetResponse, UserSettingsUpdateOptions, UserSettingsUpdateResponse };
11894
+ export { APP_NAME, AgentMap, AssetValueScope, AssetValueType, AuthenticationError, AuthorizationError, BucketOptions, CLOUD_CLIENT_ID, CLOUD_ORGANIZATION_NAME, CLOUD_REDIRECT_URI, CLOUD_ROLE_NAME, CLOUD_TENANT_NAME, CLOUD_URL, CONNECTION_STRING, CitationErrorType, ConversationMap, DEFAULT_ITEMS_FIELD, DEFAULT_PAGE_SIZE, DEFAULT_TOTAL_COUNT_FIELD, DataDirectionType, DebugMode, EntityFieldDataType, EntityType, ErrorType, EscalationActionType, EscalationRecipientScope, EscalationTriggerType, ExchangeMap, FeedbackRating, FeedbackStatus, FieldDisplayType, HttpStatus, InputStreamSpeechSensitivity, InterruptType, JobPriority, JobSourceType, JobState, JobSubState, JobType, JoinType, LogicalOperator, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, QueryFilterOperator, RateLimitError, ReferenceType, RemoteControlAccess, RobotSize, RuntimeType, SDK_LOGGER_NAME, SDK_RUN_EVENT, SDK_SERVICE_NAME, SDK_VERSION, SERVICE, SLADurationUnit, ServerError, ServerlessJobType, SortOrder, StageTaskType, StartStrategy, StopStrategy, TargetFramework, TaskActivityType, TaskPriority, TaskSlaCriteria, TaskSlaStatus, TaskSourceName, TaskStatus, TaskType, TaskUserType, UNKNOWN, UiPath, UiPathError, UiPathMetaTags, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createJobWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
11895
+ export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentMethods, AgentStartingPrompt, ArgumentMetadata, AssetGetAllOptions, AssetGetByIdOptions, AssetGetResponse, AssetServiceModel, AsyncInputStream, AsyncInputStreamChunkEvent, AsyncInputStreamEndEvent, AsyncInputStreamEvent, AsyncInputStreamStartEvent, AsyncToolCallStream, AttachmentGetByIdOptions, AttachmentResponse, AttachmentServiceModel, BaseConfig, BaseOptions, BaseProcessStartRequest, BlobItem, BodyOptions, BpmnXmlString, BucketGetAllOptions, BucketGetByIdOptions, BucketGetFileMetaDataOptions, BucketGetFileMetaDataResponse, BucketGetFileMetaDataWithPaginationOptions, BucketGetReadUriOptions, BucketGetResponse, BucketGetUriOptions, BucketGetUriResponse, BucketServiceModel, BucketUploadFileOptions, BucketUploadResponse, CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetStageResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstancesServiceModel, CasesServiceModel, ChoiceSetGetAllResponse, ChoiceSetGetByIdOptions, ChoiceSetGetResponse, ChoiceSetServiceModel, Citation, CitationEndEvent, CitationError, CitationEvent, CitationOptions, CitationSource, CitationSourceBase, CitationSourceMedia, CitationSourceUrl, CitationStartEvent, CollectionResponse, CompletedContentPart, CompletedMessage, CompletedToolCall, ContentPart, ContentPartChunkEvent, ContentPartData, ContentPartEndEvent, ContentPartEvent, ContentPartGetResponse, ContentPartInterrupted, ContentPartStartEvent, ContentPartStartMetaData, ContentPartStream, ConversationAttachmentCreateResponse, ConversationAttachmentUploadResponse, ConversationCreateOptions, ConversationCreateResponse, ConversationDeleteResponse, ConversationEvent, ConversationExchangeServiceModel, ConversationGetAllOptions, ConversationGetResponse, ConversationJobStartOverrides, ConversationMethods, ConversationServiceModel, ConversationSessionMethods, ConversationSessionOptions, ConversationUpdateOptions, ConversationUpdateResponse, ConversationalAgentOptions, ConversationalAgentServiceModel, CreateFeedbackOptions, CustomKeyValuePair, ElementExecutionMetadata, ElementMetaData, ElementRunMetadata, EntityBatchInsertOptions, EntityBatchInsertResponse, EntityCreateFieldOptions, EntityCreateOptions, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFieldBase, EntityFieldUpdateOptions, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityImportRecordsResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityQueryFilter, EntityQueryFilterGroup, EntityQueryRecordsOptions, EntityQueryRecordsResponse, EntityQuerySortOption, EntityRecord, EntityRemoveFieldOptions, EntityServiceModel, EntityUpdateByIdOptions, EntityUpdateOptions, EntityUpdateRecordOptions, EntityUpdateRecordResponse, EntityUpdateRecordsOptions, EntityUpdateResponse, EntityUploadAttachmentOptions, EntityUploadAttachmentResponse, ErrorEndEvent, ErrorEvent, ErrorStartEvent, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, Exchange, ExchangeEndEvent, ExchangeEvent, ExchangeGetAllOptions, ExchangeGetByIdOptions, ExchangeGetResponse, ExchangeServiceModel, ExchangeStartEvent, ExchangeStream, ExternalConnection, ExternalField, ExternalFieldMapping, ExternalObject, ExternalSourceFields, ExternalValue, FailureRecord, FeatureFlags, FeedbackCategory, FeedbackCreateResponse, FeedbackGetAllOptions, FeedbackGetResponse, FeedbackServiceModel, Field, FieldDataType, FieldMetaData, FileUploadAccess, FolderProperties, GenericInterruptStartEvent, GlobalVariableMetaData, HasPaginationOptions, Headers, HttpMethod, InlineOrExternalValue, InlineValue, Interrupt, InterruptEndEvent, InterruptEvent, InterruptStartEvent, JSONArray, JSONObject, JSONPrimitive, JSONValue, JobAttachment, JobError, JobGetAllOptions, JobGetByIdOptions, JobGetResponse, JobMethods, JobResumeOptions, JobServiceModel, JobStopOptions, LabelUpdatedEvent, Machine, MaestroProcessGetAllResponse, MaestroProcessesServiceModel, MakeOptional, MakeRequired, Message, MessageEndEvent, MessageEvent, MessageGetResponse, MessageServiceModel, MessageStartEvent, MessageStream, MetaData, MetaEvent, NonPaginatedResponse, OAuthFields, OperationResponse, PaginatedResponse, PaginationCursor, PaginationMetadata, PaginationMethodUnion, PaginationOptions, PartialUiPathConfig, ProcessGetAllOptions, ProcessGetByIdOptions, ProcessGetResponse, ProcessIncidentGetAllResponse, ProcessIncidentGetResponse, ProcessIncidentsServiceModel, ProcessInstanceExecutionHistoryResponse, ProcessInstanceGetAllOptions, ProcessInstanceGetAllWithPaginationOptions, ProcessInstanceGetResponse, ProcessInstanceGetVariablesOptions, ProcessInstanceGetVariablesResponse, ProcessInstanceMethods, ProcessInstanceOperationOptions, ProcessInstanceOperationResponse, ProcessInstanceRun, ProcessInstancesServiceModel, ProcessMetadata, ProcessMethods, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, QueryParams, QueueGetAllOptions, QueueGetByIdOptions, QueueGetResponse, QueueServiceModel, RawAgentGetByIdResponse, RawAgentGetResponse, RawCaseInstanceGetResponse, RawConversationGetResponse, RawEntityGetResponse, RawJobGetResponse, RawMaestroProcessGetAllResponse, RawProcessInstanceGetResponse, RawTaskCreateResponse, RawTaskGetResponse, RequestOptions, RequestSpec, ResponseDictionary, ResponseType, RetryOptions, RobotMetadata, SessionCapabilities, SessionEndEvent, SessionEndingEvent, SessionStartEvent, SessionStartedEvent, SessionStream, Simplify, SourceJoinCriteria, SqlType, StageSLA, StageTask, Tag, TaskActivity, TaskAssignOptions, TaskAssignment, TaskAssignmentOptions, TaskAssignmentResponse, TaskBaseResponse, TaskCompleteOptions, TaskCompletionOptions, TaskCreateOptions, TaskCreateResponse, TaskGetAllOptions, TaskGetByIdOptions, TaskGetResponse, TaskGetUsersOptions, TaskMethods, TaskServiceModel, TaskSlaDetail, TaskSource, TasksUnassignOptions, TimeoutOptions, ToolCall, ToolCallConfirmationEndValue, ToolCallConfirmationInterruptStartEvent, ToolCallConfirmationValue, ToolCallEndEvent, ToolCallEvent, ToolCallInputValue, ToolCallOutputValue, ToolCallResult, ToolCallStartEvent, ToolCallStream, UiPathSDKConfig, UserLoginInfo, UserServiceModel, UserSettingsGetResponse, UserSettingsUpdateOptions, UserSettingsUpdateResponse };