@uipath/uipath-typescript 1.3.3 → 1.3.4

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.
@@ -504,6 +504,8 @@ class ErrorFactory {
504
504
  }
505
505
 
506
506
  const FOLDER_ID = 'X-UIPATH-OrganizationUnitId';
507
+ const TRACEPARENT = 'traceparent';
508
+ const UIPATH_TRACEPARENT_ID = 'x-uipath-traceparent-id';
507
509
  /**
508
510
  * Content type constants for HTTP requests/responses
509
511
  */
@@ -557,8 +559,13 @@ class ApiClient {
557
559
  if (isFormData) {
558
560
  delete defaultHeaders['Content-Type'];
559
561
  }
562
+ const traceId = crypto.randomUUID().replace(/-/g, '');
563
+ const spanId = crypto.randomUUID().replace(/-/g, '').slice(0, 16);
564
+ const traceparentValue = `00-${traceId}-${spanId}-01`;
560
565
  const headers = {
561
566
  ...defaultHeaders,
567
+ [TRACEPARENT]: traceparentValue,
568
+ [UIPATH_TRACEPARENT_ID]: traceparentValue,
562
569
  ...options.headers
563
570
  };
564
571
  // Convert params to URLSearchParams
@@ -1667,6 +1674,13 @@ function createEntityMethods(entityData, service) {
1667
1674
  throw new Error('Entity ID is undefined');
1668
1675
  return service.deleteRecordsById(entityData.id, recordIds, options);
1669
1676
  },
1677
+ async deleteRecord(recordId) {
1678
+ if (!entityData.id)
1679
+ throw new Error('Entity ID is undefined');
1680
+ if (!recordId)
1681
+ throw new Error('Record ID is undefined');
1682
+ return service.deleteRecordById(entityData.id, recordId);
1683
+ },
1670
1684
  async getAllRecords(options) {
1671
1685
  if (!entityData.id)
1672
1686
  throw new Error('Entity ID is undefined');
@@ -1861,6 +1875,7 @@ const DATA_FABRIC_ENDPOINTS = {
1861
1875
  BATCH_INSERT_BY_ID: (entityId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/insert-batch`,
1862
1876
  UPDATE_RECORD_BY_ID: (entityId, recordId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/update/${recordId}`,
1863
1877
  UPDATE_BY_ID: (entityId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/update-batch`,
1878
+ DELETE_RECORD_BY_ID: (entityId, recordId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/delete/${recordId}`,
1864
1879
  DELETE_BY_ID: (entityId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/delete-batch`,
1865
1880
  UPSERT: `${DATAFABRIC_BASE}/api/Entity`,
1866
1881
  DELETE: (entityId) => `${DATAFABRIC_BASE}/api/Entity/${entityId}`,
@@ -1998,7 +2013,7 @@ const EntityFieldTypeMap = {
1998
2013
  // Connection string placeholder that will be replaced during build
1999
2014
  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";
2000
2015
  // SDK Version placeholder
2001
- const SDK_VERSION = "1.3.3";
2016
+ const SDK_VERSION = "1.3.4";
2002
2017
  const VERSION = "Version";
2003
2018
  const SERVICE = "Service";
2004
2019
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -2536,6 +2551,8 @@ class EntityService extends BaseService {
2536
2551
  /**
2537
2552
  * Deletes data from an entity by entity ID
2538
2553
  *
2554
+ * Note: Records deleted using deleteRecordsById will not trigger Data Fabric trigger events. Use {@link deleteRecordById} if you need trigger events to fire for the deleted record.
2555
+ *
2539
2556
  * @param entityId - UUID of the entity
2540
2557
  * @param recordIds - Array of record UUIDs to delete
2541
2558
  * @param options - Delete options
@@ -2563,6 +2580,27 @@ class EntityService extends BaseService {
2563
2580
  });
2564
2581
  return response.data;
2565
2582
  }
2583
+ /**
2584
+ * Deletes a single record from an entity by entity ID and record ID
2585
+ *
2586
+ * Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
2587
+ * Use this method if you need trigger events to fire for the deleted record.
2588
+ *
2589
+ * @param entityId - UUID of the entity
2590
+ * @param recordId - UUID of the record to delete
2591
+ * @returns Promise resolving to void on success
2592
+ * @example
2593
+ * ```typescript
2594
+ * import { Entities } from '@uipath/uipath-typescript/entities';
2595
+ *
2596
+ * const entities = new Entities(sdk);
2597
+ *
2598
+ * await entities.deleteRecordById("<entityId>", "<recordId>");
2599
+ * ```
2600
+ */
2601
+ async deleteRecordById(entityId, recordId) {
2602
+ await this.delete(DATA_FABRIC_ENDPOINTS.ENTITY.DELETE_RECORD_BY_ID(entityId, recordId));
2603
+ }
2566
2604
  /**
2567
2605
  * Gets all entities in the system
2568
2606
  *
@@ -3115,6 +3153,9 @@ __decorate([
3115
3153
  __decorate([
3116
3154
  track('Entities.DeleteRecordsById')
3117
3155
  ], EntityService.prototype, "deleteRecordsById", null);
3156
+ __decorate([
3157
+ track('Entities.DeleteRecordById')
3158
+ ], EntityService.prototype, "deleteRecordById", null);
3118
3159
  __decorate([
3119
3160
  track('Entities.GetAll')
3120
3161
  ], EntityService.prototype, "getAll", null);
@@ -506,6 +506,8 @@ class ErrorFactory {
506
506
  }
507
507
 
508
508
  const FOLDER_ID = 'X-UIPATH-OrganizationUnitId';
509
+ const TRACEPARENT = 'traceparent';
510
+ const UIPATH_TRACEPARENT_ID = 'x-uipath-traceparent-id';
509
511
  /**
510
512
  * Content type constants for HTTP requests/responses
511
513
  */
@@ -559,8 +561,13 @@ class ApiClient {
559
561
  if (isFormData) {
560
562
  delete defaultHeaders['Content-Type'];
561
563
  }
564
+ const traceId = crypto.randomUUID().replace(/-/g, '');
565
+ const spanId = crypto.randomUUID().replace(/-/g, '').slice(0, 16);
566
+ const traceparentValue = `00-${traceId}-${spanId}-01`;
562
567
  const headers = {
563
568
  ...defaultHeaders,
569
+ [TRACEPARENT]: traceparentValue,
570
+ [UIPATH_TRACEPARENT_ID]: traceparentValue,
564
571
  ...options.headers
565
572
  };
566
573
  // Convert params to URLSearchParams
@@ -1558,7 +1565,7 @@ const FEEDBACK_ENDPOINTS = {
1558
1565
  // Connection string placeholder that will be replaced during build
1559
1566
  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";
1560
1567
  // SDK Version placeholder
1561
- const SDK_VERSION = "1.3.3";
1568
+ const SDK_VERSION = "1.3.4";
1562
1569
  const VERSION = "Version";
1563
1570
  const SERVICE = "Service";
1564
1571
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -504,6 +504,8 @@ class ErrorFactory {
504
504
  }
505
505
 
506
506
  const FOLDER_ID = 'X-UIPATH-OrganizationUnitId';
507
+ const TRACEPARENT = 'traceparent';
508
+ const UIPATH_TRACEPARENT_ID = 'x-uipath-traceparent-id';
507
509
  /**
508
510
  * Content type constants for HTTP requests/responses
509
511
  */
@@ -557,8 +559,13 @@ class ApiClient {
557
559
  if (isFormData) {
558
560
  delete defaultHeaders['Content-Type'];
559
561
  }
562
+ const traceId = crypto.randomUUID().replace(/-/g, '');
563
+ const spanId = crypto.randomUUID().replace(/-/g, '').slice(0, 16);
564
+ const traceparentValue = `00-${traceId}-${spanId}-01`;
560
565
  const headers = {
561
566
  ...defaultHeaders,
567
+ [TRACEPARENT]: traceparentValue,
568
+ [UIPATH_TRACEPARENT_ID]: traceparentValue,
562
569
  ...options.headers
563
570
  };
564
571
  // Convert params to URLSearchParams
@@ -1556,7 +1563,7 @@ const FEEDBACK_ENDPOINTS = {
1556
1563
  // Connection string placeholder that will be replaced during build
1557
1564
  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";
1558
1565
  // SDK Version placeholder
1559
- const SDK_VERSION = "1.3.3";
1566
+ const SDK_VERSION = "1.3.4";
1560
1567
  const VERSION = "Version";
1561
1568
  const SERVICE = "Service";
1562
1569
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
package/dist/index.cjs CHANGED
@@ -4538,6 +4538,7 @@ const JOB_ENDPOINTS = {
4538
4538
  GET_BY_KEY: (identifier) => `${ORCHESTRATOR_BASE}/odata/Jobs/UiPath.Server.Configuration.OData.GetByKey(identifier=${identifier})`,
4539
4539
  STOP: `${ORCHESTRATOR_BASE}/odata/Jobs/UiPath.Server.Configuration.OData.StopJobs`,
4540
4540
  RESUME: `${ORCHESTRATOR_BASE}/odata/Jobs/UiPath.Server.Configuration.OData.ResumeJob`,
4541
+ RESTART: `${ORCHESTRATOR_BASE}/odata/Jobs/UiPath.Server.Configuration.OData.RestartJob`,
4541
4542
  };
4542
4543
  /**
4543
4544
  * Orchestrator Asset Service Endpoints
@@ -4609,6 +4610,7 @@ const DATA_FABRIC_ENDPOINTS = {
4609
4610
  BATCH_INSERT_BY_ID: (entityId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/insert-batch`,
4610
4611
  UPDATE_RECORD_BY_ID: (entityId, recordId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/update/${recordId}`,
4611
4612
  UPDATE_BY_ID: (entityId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/update-batch`,
4613
+ DELETE_RECORD_BY_ID: (entityId, recordId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/delete/${recordId}`,
4612
4614
  DELETE_BY_ID: (entityId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${entityId}/delete-batch`,
4613
4615
  UPSERT: `${DATAFABRIC_BASE}/api/Entity`,
4614
4616
  DELETE: (entityId) => `${DATAFABRIC_BASE}/api/Entity/${entityId}`,
@@ -5450,7 +5452,7 @@ function normalizeBaseUrl(url) {
5450
5452
  // Connection string placeholder that will be replaced during build
5451
5453
  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";
5452
5454
  // SDK Version placeholder
5453
- const SDK_VERSION = "1.3.3";
5455
+ const SDK_VERSION = "1.3.4";
5454
5456
  const VERSION = "Version";
5455
5457
  const SERVICE = "Service";
5456
5458
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -6285,6 +6287,8 @@ class ErrorFactory {
6285
6287
 
6286
6288
  const FOLDER_KEY = 'X-UIPATH-FolderKey';
6287
6289
  const FOLDER_ID = 'X-UIPATH-OrganizationUnitId';
6290
+ const TRACEPARENT = 'traceparent';
6291
+ const UIPATH_TRACEPARENT_ID = 'x-uipath-traceparent-id';
6288
6292
  /**
6289
6293
  * Content type constants for HTTP requests/responses
6290
6294
  */
@@ -6338,8 +6342,13 @@ class ApiClient {
6338
6342
  if (isFormData) {
6339
6343
  delete defaultHeaders['Content-Type'];
6340
6344
  }
6345
+ const traceId = crypto.randomUUID().replace(/-/g, '');
6346
+ const spanId = crypto.randomUUID().replace(/-/g, '').slice(0, 16);
6347
+ const traceparentValue = `00-${traceId}-${spanId}-01`;
6341
6348
  const headers = {
6342
6349
  ...defaultHeaders,
6350
+ [TRACEPARENT]: traceparentValue,
6351
+ [UIPATH_TRACEPARENT_ID]: traceparentValue,
6343
6352
  ...options.headers
6344
6353
  };
6345
6354
  // Convert params to URLSearchParams
@@ -7643,6 +7652,13 @@ function createEntityMethods(entityData, service) {
7643
7652
  throw new Error('Entity ID is undefined');
7644
7653
  return service.deleteRecordsById(entityData.id, recordIds, options);
7645
7654
  },
7655
+ async deleteRecord(recordId) {
7656
+ if (!entityData.id)
7657
+ throw new Error('Entity ID is undefined');
7658
+ if (!recordId)
7659
+ throw new Error('Record ID is undefined');
7660
+ return service.deleteRecordById(entityData.id, recordId);
7661
+ },
7646
7662
  async getAllRecords(options) {
7647
7663
  if (!entityData.id)
7648
7664
  throw new Error('Entity ID is undefined');
@@ -8195,6 +8211,8 @@ class EntityService extends BaseService {
8195
8211
  /**
8196
8212
  * Deletes data from an entity by entity ID
8197
8213
  *
8214
+ * Note: Records deleted using deleteRecordsById will not trigger Data Fabric trigger events. Use {@link deleteRecordById} if you need trigger events to fire for the deleted record.
8215
+ *
8198
8216
  * @param entityId - UUID of the entity
8199
8217
  * @param recordIds - Array of record UUIDs to delete
8200
8218
  * @param options - Delete options
@@ -8222,6 +8240,27 @@ class EntityService extends BaseService {
8222
8240
  });
8223
8241
  return response.data;
8224
8242
  }
8243
+ /**
8244
+ * Deletes a single record from an entity by entity ID and record ID
8245
+ *
8246
+ * Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
8247
+ * Use this method if you need trigger events to fire for the deleted record.
8248
+ *
8249
+ * @param entityId - UUID of the entity
8250
+ * @param recordId - UUID of the record to delete
8251
+ * @returns Promise resolving to void on success
8252
+ * @example
8253
+ * ```typescript
8254
+ * import { Entities } from '@uipath/uipath-typescript/entities';
8255
+ *
8256
+ * const entities = new Entities(sdk);
8257
+ *
8258
+ * await entities.deleteRecordById("<entityId>", "<recordId>");
8259
+ * ```
8260
+ */
8261
+ async deleteRecordById(entityId, recordId) {
8262
+ await this.delete(DATA_FABRIC_ENDPOINTS.ENTITY.DELETE_RECORD_BY_ID(entityId, recordId));
8263
+ }
8225
8264
  /**
8226
8265
  * Gets all entities in the system
8227
8266
  *
@@ -8774,6 +8813,9 @@ __decorate([
8774
8813
  __decorate([
8775
8814
  track('Entities.DeleteRecordsById')
8776
8815
  ], EntityService.prototype, "deleteRecordsById", null);
8816
+ __decorate([
8817
+ track('Entities.DeleteRecordById')
8818
+ ], EntityService.prototype, "deleteRecordById", null);
8777
8819
  __decorate([
8778
8820
  track('Entities.GetAll')
8779
8821
  ], EntityService.prototype, "getAll", null);
@@ -11398,6 +11440,13 @@ function createJobMethods(jobData, service) {
11398
11440
  throw new Error('Job folderId is undefined');
11399
11441
  return service.resume(jobData.key, jobData.folderId, options);
11400
11442
  },
11443
+ async restart() {
11444
+ if (!jobData.key)
11445
+ throw new Error('Job key is undefined');
11446
+ if (!jobData.folderId)
11447
+ throw new Error('Job folderId is undefined');
11448
+ return service.restart(jobData.key, jobData.folderId);
11449
+ },
11401
11450
  };
11402
11451
  }
11403
11452
  /**
@@ -11897,6 +11946,41 @@ class JobService extends FolderScopedService {
11897
11946
  }
11898
11947
  await this.post(JOB_ENDPOINTS.RESUME, body, { headers });
11899
11948
  }
11949
+ /**
11950
+ * Restarts a job in a final state (Successful, Faulted, or Stopped).
11951
+ *
11952
+ * Creates a **new** job execution from a previously successful, faulted, or stopped job.
11953
+ * The new job has its own unique `key`, starts in `Pending` state, and uses
11954
+ * the same process and input arguments as the original job.
11955
+ *
11956
+ * To monitor the new job's progress, poll with {@link getById}
11957
+ * using the returned job's key until the state reaches a final value.
11958
+ *
11959
+ * @param jobKey - The unique key (GUID) of the job to restart
11960
+ * @param folderId - The folder ID where the job resides
11961
+ * @returns Promise resolving to the new {@link JobGetResponse} with full job details
11962
+ *
11963
+ * @example
11964
+ * ```typescript
11965
+ * // Restart a faulted job
11966
+ * const newJob = await jobs.restart(<jobKey>, <folderId>);
11967
+ * console.log(newJob.state); // 'Pending'
11968
+ * console.log(newJob.key); // new job key (different from original)
11969
+ * ```
11970
+ */
11971
+ async restart(jobKey, folderId) {
11972
+ if (!jobKey) {
11973
+ throw new ValidationError({ message: 'jobKey is required for restart' });
11974
+ }
11975
+ if (!folderId) {
11976
+ throw new ValidationError({ message: 'folderId is required for restart' });
11977
+ }
11978
+ const [jobId] = await this.resolveJobKeys([jobKey], folderId);
11979
+ const headers = createHeaders({ [FOLDER_ID]: folderId });
11980
+ const response = await this.post(JOB_ENDPOINTS.RESTART, { jobId }, { headers });
11981
+ const rawJob = transformData(pascalToCamelCaseKeys(response.data), JobMap);
11982
+ return createJobWithMethods(rawJob, this);
11983
+ }
11900
11984
  /**
11901
11985
  * Downloads the output file content via the Attachments API.
11902
11986
  * 1. Fetches blob access info from the attachment using AttachmentService
@@ -11984,6 +12068,9 @@ __decorate([
11984
12068
  __decorate([
11985
12069
  track('Jobs.Resume')
11986
12070
  ], JobService.prototype, "resume", null);
12071
+ __decorate([
12072
+ track('Jobs.Restart')
12073
+ ], JobService.prototype, "restart", null);
11987
12074
 
11988
12075
  /**
11989
12076
  * Enum for job sub-state
package/dist/index.d.ts CHANGED
@@ -1282,6 +1282,8 @@ interface EntityServiceModel {
1282
1282
  /**
1283
1283
  * Deletes data from an entity by entity ID
1284
1284
  *
1285
+ * Note: Records deleted using deleteRecordsById will not trigger Data Fabric trigger events. Use {@link deleteRecordById} if you need trigger events to fire for the deleted record.
1286
+ *
1285
1287
  * @param id - UUID of the entity
1286
1288
  * @param recordIds - Array of record UUIDs to delete
1287
1289
  * @param options - Delete options
@@ -1296,6 +1298,25 @@ interface EntityServiceModel {
1296
1298
  * ```
1297
1299
  */
1298
1300
  deleteRecordsById(id: string, recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
1301
+ /**
1302
+ * Deletes a single record from an entity by entity ID and record ID
1303
+ *
1304
+ * Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
1305
+ * Use this method if you need trigger events to fire for the deleted record.
1306
+ *
1307
+ * @param entityId - UUID of the entity
1308
+ * @param recordId - UUID of the record to delete
1309
+ * @returns Promise resolving to void on success
1310
+ * @example
1311
+ * ```typescript
1312
+ * import { Entities } from '@uipath/uipath-typescript/entities';
1313
+ *
1314
+ * const entities = new Entities(sdk);
1315
+ *
1316
+ * await entities.deleteRecordById("<entityId>", "<recordId>");
1317
+ * ```
1318
+ */
1319
+ deleteRecordById(entityId: string, recordId: string): Promise<void>;
1299
1320
  /**
1300
1321
  * Queries entity records with filters, sorting, and SDK-managed pagination
1301
1322
  *
@@ -1586,11 +1607,23 @@ interface EntityMethods {
1586
1607
  /**
1587
1608
  * Delete data from this entity
1588
1609
  *
1610
+ * Note: Records deleted using deleteRecords will not trigger Data Fabric trigger events. Use {@link deleteRecord} if you need trigger events to fire for the deleted record.
1611
+ *
1589
1612
  * @param recordIds - Array of record UUIDs to delete
1590
1613
  * @param options - Delete options
1591
1614
  * @returns Promise resolving to delete response
1592
1615
  */
1593
1616
  deleteRecords(recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
1617
+ /**
1618
+ * Delete a single record from this entity
1619
+ *
1620
+ * Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
1621
+ * Use this method if you need trigger events to fire for the deleted record.
1622
+ *
1623
+ * @param recordId - UUID of the record to delete
1624
+ * @returns Promise resolving to void on success
1625
+ */
1626
+ deleteRecord(recordId: string): Promise<void>;
1594
1627
  /**
1595
1628
  * Get all records from this entity
1596
1629
  *
@@ -1924,6 +1957,8 @@ declare class EntityService extends BaseService implements EntityServiceModel {
1924
1957
  /**
1925
1958
  * Deletes data from an entity by entity ID
1926
1959
  *
1960
+ * Note: Records deleted using deleteRecordsById will not trigger Data Fabric trigger events. Use {@link deleteRecordById} if you need trigger events to fire for the deleted record.
1961
+ *
1927
1962
  * @param entityId - UUID of the entity
1928
1963
  * @param recordIds - Array of record UUIDs to delete
1929
1964
  * @param options - Delete options
@@ -1942,6 +1977,25 @@ declare class EntityService extends BaseService implements EntityServiceModel {
1942
1977
  * ```
1943
1978
  */
1944
1979
  deleteRecordsById(id: string, recordIds: string[], options?: EntityDeleteRecordsOptions): Promise<EntityDeleteResponse>;
1980
+ /**
1981
+ * Deletes a single record from an entity by entity ID and record ID
1982
+ *
1983
+ * Note: Data Fabric supports trigger events only on individual deletes, not on deleting multiple records.
1984
+ * Use this method if you need trigger events to fire for the deleted record.
1985
+ *
1986
+ * @param entityId - UUID of the entity
1987
+ * @param recordId - UUID of the record to delete
1988
+ * @returns Promise resolving to void on success
1989
+ * @example
1990
+ * ```typescript
1991
+ * import { Entities } from '@uipath/uipath-typescript/entities';
1992
+ *
1993
+ * const entities = new Entities(sdk);
1994
+ *
1995
+ * await entities.deleteRecordById("<entityId>", "<recordId>");
1996
+ * ```
1997
+ */
1998
+ deleteRecordById(entityId: string, recordId: string): Promise<void>;
1945
1999
  /**
1946
2000
  * Gets all entities in the system
1947
2001
  *
@@ -6118,6 +6172,29 @@ interface JobServiceModel {
6118
6172
  * ```
6119
6173
  */
6120
6174
  resume(jobKey: string, folderId: number, options?: JobResumeOptions): Promise<void>;
6175
+ /**
6176
+ * Restarts a job in a final state (Successful, Faulted, or Stopped).
6177
+ *
6178
+ * Creates a **new** job execution from a previously successful, faulted, or stopped job.
6179
+ * The new job has its own unique `key`, starts in `Pending` state, and uses
6180
+ * the same process and input arguments as the original job.
6181
+ *
6182
+ * To monitor the new job's progress, poll with {@link getById}
6183
+ * using the returned job's key until the state reaches a final value.
6184
+ *
6185
+ * @param jobKey - The unique key (GUID) of the job to restart
6186
+ * @param folderId - The folder ID where the job resides
6187
+ * @returns Promise resolving to the new {@link JobGetResponse} with full job details
6188
+ *
6189
+ * @example
6190
+ * ```typescript
6191
+ * // Restart a faulted job
6192
+ * const newJob = await jobs.restart(<jobKey>, <folderId>);
6193
+ * console.log(newJob.state); // 'Pending'
6194
+ * console.log(newJob.key); // new job key (different from original)
6195
+ * ```
6196
+ */
6197
+ restart(jobKey: string, folderId: number): Promise<JobGetResponse>;
6121
6198
  }
6122
6199
  /**
6123
6200
  * Methods available on job response objects.
@@ -6170,6 +6247,12 @@ interface JobMethods {
6170
6247
  * @returns Promise that resolves when the job is resumed successfully, or rejects on failure
6171
6248
  */
6172
6249
  resume(options?: JobResumeOptions): Promise<void>;
6250
+ /**
6251
+ * Restarts this job, creating a new execution with a new key.
6252
+ *
6253
+ * @returns Promise resolving to the new {@link JobGetResponse} with full job details
6254
+ */
6255
+ restart(): Promise<JobGetResponse>;
6173
6256
  }
6174
6257
  /**
6175
6258
  * Creates a job response with bound methods.
@@ -7141,6 +7224,12 @@ interface ExternalValue {
7141
7224
  * from which the data can be downloaded.
7142
7225
  */
7143
7226
  type InlineOrExternalValue<T> = InlineValue<T> | ExternalValue;
7227
+ /**
7228
+ * Input arguments passed in to the execution of the agent on each exchange. The input arguments are
7229
+ * expected to match the input-schema defined in the Agent definition. Currently, only inline values
7230
+ * are supported and the total serialized JSON payload must be less than 4,000 characters.
7231
+ */
7232
+ type AgentInput = InlineValue<JSONObject>;
7144
7233
  /**
7145
7234
  * Tool call input value type.
7146
7235
  */
@@ -7512,6 +7601,10 @@ interface RawConversationGetResponse {
7512
7601
  * Whether the conversation's job is running locally.
7513
7602
  */
7514
7603
  isLocalJobExecution?: boolean;
7604
+ /**
7605
+ * Optional agent input arguments for the conversation.
7606
+ */
7607
+ agentInput?: AgentInput;
7515
7608
  }
7516
7609
 
7517
7610
  /**
@@ -10426,7 +10519,7 @@ interface ConversationServiceModel {
10426
10519
  * @param options - Optional settings for the conversation
10427
10520
  * @returns Promise resolving to {@link ConversationCreateResponse} with bound methods
10428
10521
  *
10429
- * @example
10522
+ * @example Basic usage
10430
10523
  * ```typescript
10431
10524
  * const conversation = await conversationalAgent.conversations.create(
10432
10525
  * agentId,
@@ -10443,6 +10536,19 @@ interface ConversationServiceModel {
10443
10536
  * // Delete the conversation
10444
10537
  * await conversation.delete();
10445
10538
  * ```
10539
+ *
10540
+ * @example With agent input arguments
10541
+ * ```typescript
10542
+ * const conversation = await conversationalAgent.conversations.create(
10543
+ * agentId,
10544
+ * folderId,
10545
+ * {
10546
+ * agentInput: {
10547
+ * inline: { userId: 'user-123', language: 'en' }
10548
+ * }
10549
+ * }
10550
+ * );
10551
+ * ```
10446
10552
  */
10447
10553
  create(agentId: number, folderId: number, options?: ConversationCreateOptions): Promise<ConversationCreateResponse>;
10448
10554
  /**
@@ -10854,6 +10960,8 @@ interface ConversationCreateOptions {
10854
10960
  traceId?: string;
10855
10961
  /** Optional configuration for job start behavior */
10856
10962
  jobStartOverrides?: ConversationJobStartOverrides;
10963
+ /** Input arguments for the agent */
10964
+ agentInput?: AgentInput;
10857
10965
  }
10858
10966
  interface ConversationUpdateOptions {
10859
10967
  /** Human-readable label for the conversation */
@@ -10864,6 +10972,8 @@ interface ConversationUpdateOptions {
10864
10972
  jobKey?: string;
10865
10973
  /** Whether the conversation's job is running locally */
10866
10974
  isLocalJobExecution?: boolean;
10975
+ /** Input arguments for the agent */
10976
+ agentInput?: AgentInput;
10867
10977
  }
10868
10978
  type ConversationGetAllOptions = PaginationOptions & {
10869
10979
  /** Sort order for conversations */
@@ -11876,7 +11986,7 @@ declare const telemetryClient: TelemetryClient;
11876
11986
  * SDK Telemetry constants
11877
11987
  */
11878
11988
  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";
11879
- declare const SDK_VERSION = "1.3.3";
11989
+ declare const SDK_VERSION = "1.3.4";
11880
11990
  declare const VERSION = "Version";
11881
11991
  declare const SERVICE = "Service";
11882
11992
  declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -11892,4 +12002,4 @@ declare const SDK_RUN_EVENT = "Sdk.Run";
11892
12002
  declare const UNKNOWN = "";
11893
12003
 
11894
12004
  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 };
12005
+ export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentInput, 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 };