@uipath/uipath-typescript 1.1.1 → 1.1.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
@@ -16,6 +16,9 @@ type UiPathSDKConfig = BaseConfig & ({
16
16
  } | ({
17
17
  secret?: never;
18
18
  } & OAuthFields));
19
+ type PartialUiPathConfig = Partial<BaseConfig & OAuthFields & {
20
+ secret: string;
21
+ }>;
19
22
 
20
23
  /**
21
24
  * IUiPath - Interface for UiPath SDK instance
@@ -69,12 +72,13 @@ interface IUiPath {
69
72
  * Handles authentication, configuration, and provides access to SDK internals
70
73
  * for service instantiation in the modular pattern.
71
74
  *
75
+ * Supports two usage patterns:
76
+ * 1. Full config in constructor — for server-side or explicit configuration
77
+ * 2. No config / partial config — loads from meta tags injected by @uipath/coded-apps plugin
78
+ *
72
79
  * @example
73
80
  * ```typescript
74
- * // Modular pattern
75
- * import { UiPath } from '@uipath/uipath-typescript/core';
76
- * import { Entities } from '@uipath/uipath-typescript/entities';
77
- *
81
+ * // Explicit config
78
82
  * const sdk = new UiPath({
79
83
  * baseUrl: 'https://cloud.uipath.com',
80
84
  * orgName: 'myorg',
@@ -83,22 +87,26 @@ interface IUiPath {
83
87
  * redirectUri: 'http://localhost:3000/callback',
84
88
  * scope: 'OR.Users OR.Robots'
85
89
  * });
86
- *
87
90
  * await sdk.initialize();
91
+ * ```
88
92
  *
89
- * const entitiesService = new Entities(sdk);
90
- * const allEntities = await entitiesService.getAll();
93
+ * @example
94
+ * ```typescript
95
+ * // Auto-load from meta tags (coded apps)
96
+ * const sdk = new UiPath();
97
+ * await sdk.initialize();
91
98
  * ```
92
99
  */
93
100
  declare class UiPath$1 implements IUiPath {
94
101
  #private;
95
102
  /** Read-only config for user convenience */
96
103
  readonly config: Readonly<BaseConfig>;
97
- constructor(config: UiPathSDKConfig);
104
+ constructor(config?: PartialUiPathConfig);
98
105
  /**
99
106
  * Initialize the SDK based on the provided configuration.
100
107
  * This method handles both OAuth flow initiation and completion automatically.
101
108
  * For secret-based authentication, initialization is automatic and this returns immediately.
109
+ * If no config was provided in constructor, loads from meta tags.
102
110
  */
103
111
  initialize(): Promise<void>;
104
112
  /**
@@ -528,6 +536,31 @@ interface EntityDownloadAttachmentOptions {
528
536
  /** Field name containing the attachment */
529
537
  fieldName: string;
530
538
  }
539
+ /**
540
+ * Options for uploading an attachment to an entity record
541
+ */
542
+ interface EntityUploadAttachmentOptions {
543
+ /** Entity name */
544
+ entityName: string;
545
+ /** Record ID (UUID) */
546
+ recordId: string;
547
+ /** Field name of the File-type field */
548
+ fieldName: string;
549
+ /**
550
+ * File to upload. Accepts the native types supported by FormData:
551
+ * - `Blob` / `File`: standard browser and Node.js ≥ 18 types accepted directly by FormData.
552
+ * `File` is a subclass of `Blob` and is typically obtained from a browser file input.
553
+ * - `Uint8Array`: raw binary buffer (e.g. from `fs.readFileSync` or a Node.js Buffer).
554
+ * Converted to a `Blob` internally before appending to FormData.
555
+ */
556
+ file: Blob | File | Uint8Array;
557
+ /** Optional expansion level (default: 0) */
558
+ expansionLevel?: number;
559
+ }
560
+ /**
561
+ * Response from uploading an attachment to an entity record
562
+ */
563
+ type EntityUploadAttachmentResponse = Record<string, unknown>;
531
564
  /**
532
565
  * Represents a failure record in an entity operation
533
566
  */
@@ -1048,6 +1081,42 @@ interface EntityServiceModel {
1048
1081
  * ```
1049
1082
  */
1050
1083
  downloadAttachment(options: EntityDownloadAttachmentOptions): Promise<Blob>;
1084
+ /**
1085
+ * Uploads an attachment to a File-type field of an entity record.
1086
+ *
1087
+ * Uses multipart/form-data to upload the file content to the specified field.
1088
+ *
1089
+ * @param options - Options containing entityName, recordId, fieldName, file, and optional expansionLevel
1090
+ * @returns Promise resolving to the upload response
1091
+ * {@link EntityUploadAttachmentResponse}
1092
+ * @example
1093
+ * ```typescript
1094
+ * import { Entities } from '@uipath/uipath-typescript/entities';
1095
+ *
1096
+ * const entities = new Entities(sdk);
1097
+ *
1098
+ * // Browser: Upload a file from an input element
1099
+ * const fileInput = document.getElementById('file-input') as HTMLInputElement;
1100
+ * const file = fileInput.files[0];
1101
+ * const response = await entities.uploadAttachment({
1102
+ * entityName: 'Invoice',
1103
+ * recordId: '<recordId>',
1104
+ * fieldName: 'Documents',
1105
+ * file: file
1106
+ * });
1107
+ *
1108
+ * // Node.js: Upload a file from disk
1109
+ * const fileBuffer = fs.readFileSync('document.pdf');
1110
+ * const blob = new Blob([fileBuffer], { type: 'application/pdf' });
1111
+ * const response = await entities.uploadAttachment({
1112
+ * entityName: 'Invoice',
1113
+ * recordId: '<recordId>',
1114
+ * fieldName: 'Documents',
1115
+ * file: blob
1116
+ * });
1117
+ * ```
1118
+ */
1119
+ uploadAttachment(options: EntityUploadAttachmentOptions): Promise<EntityUploadAttachmentResponse>;
1051
1120
  }
1052
1121
  /**
1053
1122
  * Entity methods interface - defines operations that can be performed on an entity
@@ -1115,6 +1184,16 @@ interface EntityMethods {
1115
1184
  * @returns Promise resolving to Blob containing the file content
1116
1185
  */
1117
1186
  downloadAttachment(recordId: string, fieldName: string): Promise<Blob>;
1187
+ /**
1188
+ * Uploads an attachment to a File-type field of an entity record
1189
+ *
1190
+ * @param recordId - UUID of the record to upload the attachment to
1191
+ * @param fieldName - Name of the File-type field
1192
+ * @param file - File to upload (Blob, File, or Uint8Array)
1193
+ * @param expansionLevel - Optional expansion level (default: 0)
1194
+ * @returns Promise resolving to the upload response
1195
+ */
1196
+ uploadAttachment(recordId: string, fieldName: string, file: Blob | File | Uint8Array, expansionLevel?: number): Promise<EntityUploadAttachmentResponse>;
1118
1197
  /**
1119
1198
  * @deprecated Use {@link insertRecord} instead.
1120
1199
  * @hidden
@@ -1387,6 +1466,28 @@ declare class EntityService extends BaseService implements EntityServiceModel {
1387
1466
  * });
1388
1467
  */
1389
1468
  downloadAttachment(options: EntityDownloadAttachmentOptions): Promise<Blob>;
1469
+ /**
1470
+ * Uploads an attachment to a File-type field of an entity record
1471
+ *
1472
+ * @param options - Options containing entityName, recordId, fieldName, file, and optional expansionLevel
1473
+ * @returns Promise resolving to the upload response
1474
+ *
1475
+ * @example
1476
+ * ```typescript
1477
+ * import { Entities } from '@uipath/uipath-typescript/entities';
1478
+ *
1479
+ * const entities = new Entities(sdk);
1480
+ *
1481
+ * // Upload a file attachment
1482
+ * const response = await entities.uploadAttachment({
1483
+ * entityName: 'Invoice',
1484
+ * recordId: '<record-uuid>',
1485
+ * fieldName: 'Documents',
1486
+ * file: file
1487
+ * });
1488
+ * ```
1489
+ */
1490
+ uploadAttachment(options: EntityUploadAttachmentOptions): Promise<EntityUploadAttachmentResponse>;
1390
1491
  /**
1391
1492
  * @hidden
1392
1493
  * @deprecated Use {@link getAllRecords} instead.
@@ -5595,6 +5696,15 @@ declare class UiPath extends UiPath$1 {
5595
5696
  get assets(): AssetService;
5596
5697
  }
5597
5698
 
5699
+ /**
5700
+ * Load configuration from HTML meta tags injected at runtime.
5701
+ * These meta tags are injected by @uipath/coded-apps during build
5702
+ * or by the Apps service during deployment.
5703
+ *
5704
+ * Returns partial config with values found, or null if no meta tags present.
5705
+ */
5706
+ declare function loadFromMetaTags(): PartialUiPathConfig | null;
5707
+
5598
5708
  /**
5599
5709
  * Constants for Conversational Agent
5600
5710
  */
@@ -10122,6 +10232,77 @@ declare const ErrorType: {
10122
10232
  readonly NETWORK: "NetworkError";
10123
10233
  };
10124
10234
 
10235
+ /**
10236
+ * Asset resolution utilities for UiPath Coded Apps
10237
+ *
10238
+ * These helpers enable developers to write code that works identically
10239
+ * in local development and production environments.
10240
+ *
10241
+ * Values are read from meta tags injected at deployment:
10242
+ * - <meta name="uipath:cdn-base" content="https://cdn.example.com/appId/folder">
10243
+ * - <meta name="uipath:app-base" content="/org/apps_/.../public">
10244
+ */
10245
+ /**
10246
+ * Resolves an asset path to the CDN URL (if available)
10247
+ *
10248
+ * In local development: returns path as-is (loads from local dev server)
10249
+ * In production: prepends CDN base URL from meta tag
10250
+ *
10251
+ * @param path - The asset path (e.g., './assets/logo.png' or '/assets/logo.png')
10252
+ * @returns The resolved asset URL
10253
+ *
10254
+ * @example
10255
+ * ```tsx
10256
+ * import { getAsset } from '@uipath/uipath-typescript';
10257
+ * import logoPath from './assets/logo.png';
10258
+ *
10259
+ * function MyComponent() {
10260
+ * return <img src={getAsset(logoPath)} alt="Logo" />;
10261
+ * }
10262
+ * ```
10263
+ */
10264
+ declare function getAsset(path: string): string;
10265
+ /**
10266
+ * Returns the app base path for router configuration
10267
+ *
10268
+ * In local development: returns '/'
10269
+ * In production: returns the deployed app path from meta tag
10270
+ *
10271
+ * @returns The app base path
10272
+ *
10273
+ * @example
10274
+ * ```tsx
10275
+ * import { getAppBase } from '@uipath/uipath-typescript';
10276
+ * import { BrowserRouter } from 'react-router-dom';
10277
+ *
10278
+ * function App() {
10279
+ * return (
10280
+ * <BrowserRouter basename={getAppBase()}>
10281
+ * {/* routes *\/}
10282
+ * </BrowserRouter>
10283
+ * );
10284
+ * }
10285
+ * ```
10286
+ */
10287
+ declare function getAppBase(): string;
10288
+
10289
+ /**
10290
+ * UiPath meta tag names for runtime configuration.
10291
+ *
10292
+ * These meta tags are injected at deployment time by the Apps Service
10293
+ * to configure SDK authentication and asset resolution in production.
10294
+ */
10295
+ declare enum UiPathMetaTags {
10296
+ CLIENT_ID = "uipath:client-id",
10297
+ SCOPE = "uipath:scope",
10298
+ ORG_NAME = "uipath:org-name",
10299
+ TENANT_NAME = "uipath:tenant-name",
10300
+ BASE_URL = "uipath:base-url",
10301
+ REDIRECT_URI = "uipath:redirect-uri",
10302
+ CDN_BASE = "uipath:cdn-base",
10303
+ APP_BASE = "uipath:app-base"
10304
+ }
10305
+
10125
10306
  /**
10126
10307
  * Telemetry type definitions
10127
10308
  */
@@ -10205,7 +10386,7 @@ declare const telemetryClient: TelemetryClient;
10205
10386
  * SDK Telemetry constants
10206
10387
  */
10207
10388
  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";
10208
- declare const SDK_VERSION = "1.1.1";
10389
+ declare const SDK_VERSION = "1.1.3";
10209
10390
  declare const VERSION = "Version";
10210
10391
  declare const SERVICE = "Service";
10211
10392
  declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -10220,5 +10401,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
10220
10401
  declare const SDK_RUN_EVENT = "Sdk.Run";
10221
10402
  declare const UNKNOWN = "";
10222
10403
 
10223
- 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, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, telemetryClient, track, trackEvent };
10224
- 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, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityDownloadAttachmentOptions, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityRecord, EntityServiceModel, EntityUpdateOptions, EntityUpdateRecordsOptions, EntityUpdateResponse, 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, 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 };
10404
+ 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 };
10405
+ 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, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityDownloadAttachmentOptions, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityRecord, EntityServiceModel, EntityUpdateOptions, 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 };