@uipath/uipath-typescript 1.2.2 → 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/index.d.ts CHANGED
@@ -473,7 +473,7 @@ interface EntityRecord {
473
473
  /**
474
474
  * Unique identifier for the record
475
475
  */
476
- id: string;
476
+ Id: string;
477
477
  /**
478
478
  * Additional dynamic fields for the entity
479
479
  */
@@ -934,7 +934,7 @@ interface EntityServiceModel {
934
934
  * // First, get records to obtain the record ID
935
935
  * const records = await entities.getAllRecords(<entityId>);
936
936
  * // Get the recordId for the record
937
- * const recordId = records.items[0].id;
937
+ * const recordId = records.items[0].Id;
938
938
  * // Get the record
939
939
  * const record = await entities.getRecordById(<entityId>, recordId);
940
940
  *
@@ -1046,14 +1046,14 @@ interface EntityServiceModel {
1046
1046
  * ```typescript
1047
1047
  * // Basic usage
1048
1048
  * const result = await entities.updateRecordsById(<entityId>, [
1049
- * { id: "123", name: "John Updated", age: 31 },
1050
- * { id: "456", name: "Jane Updated", age: 26 }
1049
+ * { Id: "123", name: "John Updated", age: 31 },
1050
+ * { Id: "456", name: "Jane Updated", age: 26 }
1051
1051
  * ]);
1052
1052
  *
1053
1053
  * // With options
1054
1054
  * const result = await entities.updateRecordsById(<entityId>, [
1055
- * { id: "123", name: "John Updated", age: 31 },
1056
- * { id: "456", name: "Jane Updated", age: 26 }
1055
+ * { Id: "123", name: "John Updated", age: 31 },
1056
+ * { Id: "456", name: "Jane Updated", age: 26 }
1057
1057
  * ], {
1058
1058
  * expansionLevel: 1,
1059
1059
  * failOnFirst: true
@@ -1104,7 +1104,7 @@ interface EntityServiceModel {
1104
1104
  * // First, get records to obtain the record ID
1105
1105
  * const records = await entities.getAllRecords("<entityId>");
1106
1106
  * // Get the recordId for the record that contains the attachment
1107
- * const recordId = records.items[0].id;
1107
+ * const recordId = records.items[0].Id;
1108
1108
  *
1109
1109
  * // Get the entityId from getAll()
1110
1110
  * const allEntities = await entities.getAll();
@@ -1112,7 +1112,7 @@ interface EntityServiceModel {
1112
1112
  *
1113
1113
  * // Get the recordId from getAllRecords()
1114
1114
  * const records = await entities.getAllRecords(entityId);
1115
- * const recordId = records[0].id;
1115
+ * const recordId = records[0].Id;
1116
1116
  *
1117
1117
  * // Download attachment using service method
1118
1118
  * const response = await entities.downloadAttachment(entityId, recordId, 'Documents');
@@ -1164,7 +1164,7 @@ interface EntityServiceModel {
1164
1164
  *
1165
1165
  * // Get the recordId from getAllRecords()
1166
1166
  * const records = await entities.getAllRecords(entityId);
1167
- * const recordId = records[0].id;
1167
+ * const recordId = records[0].Id;
1168
1168
  *
1169
1169
  * // Browser: Upload a file from an input element
1170
1170
  * const fileInput = document.getElementById('file-input') as HTMLInputElement;
@@ -1197,7 +1197,7 @@ interface EntityServiceModel {
1197
1197
  *
1198
1198
  * // Get the recordId from getAllRecords()
1199
1199
  * const records = await entities.getAllRecords(entityId);
1200
- * const recordId = records[0].id;
1200
+ * const recordId = records[0].Id;
1201
1201
  *
1202
1202
  * // Delete attachment for a specific record and field
1203
1203
  * await entities.deleteAttachment(entityId, recordId, 'Documents');
@@ -1605,7 +1605,7 @@ declare class EntityService extends BaseService implements EntityServiceModel {
1605
1605
  *
1606
1606
  * // Get the recordId from getAllRecords()
1607
1607
  * const records = await entities.getAllRecords(entityId);
1608
- * const recordId = records[0].id;
1608
+ * const recordId = records[0].Id;
1609
1609
  *
1610
1610
  * // Download attachment for a specific record and field
1611
1611
  * const blob = await entities.downloadAttachment(entityId, recordId, 'Documents');
@@ -1634,7 +1634,7 @@ declare class EntityService extends BaseService implements EntityServiceModel {
1634
1634
  *
1635
1635
  * // Get the recordId from getAllRecords()
1636
1636
  * const records = await entities.getAllRecords(entityId);
1637
- * const recordId = records[0].id;
1637
+ * const recordId = records[0].Id;
1638
1638
  *
1639
1639
  * // Upload a file attachment
1640
1640
  * const response = await entities.uploadAttachment(entityId, recordId, 'Documents', file);
@@ -1661,7 +1661,7 @@ declare class EntityService extends BaseService implements EntityServiceModel {
1661
1661
  *
1662
1662
  * // Get the recordId from getAllRecords()
1663
1663
  * const records = await entities.getAllRecords(entityId);
1664
- * const recordId = records[0].id;
1664
+ * const recordId = records[0].Id;
1665
1665
  *
1666
1666
  * // Delete attachment for a specific record and field
1667
1667
  * await entities.deleteAttachment(entityId, recordId, 'Documents');
@@ -5282,9 +5282,9 @@ interface ProcessMetadata {
5282
5282
  id?: number;
5283
5283
  }
5284
5284
  /**
5285
- * Interface for job response
5285
+ * Raw job response from the API before method attachment
5286
5286
  */
5287
- interface JobGetResponse extends FolderProperties {
5287
+ interface RawJobGetResponse extends FolderProperties {
5288
5288
  /** The unique numeric identifier of the job */
5289
5289
  id: number;
5290
5290
  /** The unique job identifier (GUID) */
@@ -5311,6 +5311,8 @@ interface JobGetResponse extends FolderProperties {
5311
5311
  inputArguments: string | null;
5312
5312
  /** Output parameters as a JSON string resulted from job execution */
5313
5313
  outputArguments: string | null;
5314
+ /** Attachment key for file-based output when output is too large for inline arguments */
5315
+ outputFile: string | null;
5314
5316
  /** Environment variables as a JSON string passed to the job execution */
5315
5317
  environmentVariables: string | null;
5316
5318
  /** Additional information about the current job */
@@ -5386,6 +5388,7 @@ type JobGetAllOptions = RequestOptions & PaginationOptions & {
5386
5388
  folderId?: number;
5387
5389
  };
5388
5390
 
5391
+ type JobGetResponse = RawJobGetResponse & JobMethods;
5389
5392
  /**
5390
5393
  * Service for managing UiPath Orchestrator Jobs.
5391
5394
  *
@@ -5404,9 +5407,15 @@ type JobGetAllOptions = RequestOptions & PaginationOptions & {
5404
5407
  */
5405
5408
  interface JobServiceModel {
5406
5409
  /**
5407
- * Gets all jobs across folders with optional filtering
5410
+ * Gets all jobs across folders with optional filtering and pagination.
5408
5411
  *
5409
- * @param options - Query options including optional folderId and pagination options
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
5410
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.
5411
5420
  * {@link JobGetResponse}
5412
5421
  * @example
@@ -5438,7 +5447,74 @@ interface JobServiceModel {
5438
5447
  * ```
5439
5448
  */
5440
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>;
5441
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;
5442
5518
 
5443
5519
  /**
5444
5520
  * Service for managing and executing UiPath Automation Processes.
@@ -10983,7 +11059,7 @@ declare const telemetryClient: TelemetryClient;
10983
11059
  * SDK Telemetry constants
10984
11060
  */
10985
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";
10986
- declare const SDK_VERSION = "1.2.2";
11062
+ declare const SDK_VERSION = "1.3.0";
10987
11063
  declare const VERSION = "Version";
10988
11064
  declare const SERVICE = "Service";
10989
11065
  declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -10998,5 +11074,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
10998
11074
  declare const SDK_RUN_EVENT = "Sdk.Run";
10999
11075
  declare const UNKNOWN = "";
11000
11076
 
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 };
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 };