Skip to content

Releases: UiPath/uipath-typescript

1.3.3

28 Apr 08:44
1b775c0

Choose a tag to compare

New Features & Improvements

  • Feedback service getAll() method for conversational agent feedback collection (#184)
  • Added Jobs.resume() method to resume suspended jobs (#371) and Jobs.stop() method to stop running jobs (#337)
  • Introduced disconnect() method on Conversations for clean process exit (#340)
  • Task assignment expanded beyond users (#385)

1.3.2

16 Apr 07:12
2e2812d

Choose a tag to compare

New Features & Improvements

  • OAuth flow now supports pass through SSO login for MS Entra and enterprise SAML configurations. (#364)

1.3.1

15 Apr 14:52
66b9780

Choose a tag to compare

New Features & Improvements

  • Introduced Jobs.getById method to retrieve a specific Orchestrator job by ID. Ref: #358
  • Extended Data Fabric SDK with two new methods on entities: queryRecordsById — queries entity records with filtering, sorting, and pagination support; and importRecordsById — bulk imports records into an entity from a CSV file. Ref: #352

1.3.0

08 Apr 10:47
c456e40

Choose a tag to compare

1.3.0

New Features & Improvements

  • Introduced getOutput method for Jobs service. Ref: #320

Breaking Changes

  • Data Fabric entity records now return field names as-is from the API (PascalCase) instead of converting to camelCase Ref: #327. This affects all entity record methods (getAllRecords, getRecordById, insertRecordById, updateRecordById, deleteRecordById, and their batch variants, uploadAttachment). Update field access accordingly:
    // Before (v1.2.x)
    const records = await entities.getAllRecords(entityId);
    records[0].id;          // camelCase
    records[0].createdBy;
    records[0].recordOwner;
    
    // After (v1.3.0)
    const records = await entities.getAllRecords(entityId);
    records[0].Id;          // PascalCase (matches API response)
    records[0].CreatedBy;
    records[0].RecordOwner;

1.2.2

06 Apr 07:47
d4eb4c2

Choose a tag to compare

New Features & Improvements

  • Introduced Orchestrator Jobs getAll service. Ref: #290
  • AttachmentService has been introduced. getById mehtod for attachements has been added . Ref: #252
  • Added support to fetch data for Document Validation task & App task . Ref: #323

Full Changelog: 1.2.1...1.2.2

1.2.1

16 Mar 06:43
c6af14f

Choose a tag to compare

New Features & Improvements

  • updateRecordById method on entity has been introduced to update a single record in entity. Ref: #276
  • updateToken method has been exposed to sdk instance for allowing services to inject and update the token. Ref: #274
  • getAttachmentUploadUri method on conversations for conversational agent has been introduced so users can obtain the upload URL and handle the attachment upload on their end. Ref: #274

1.2.0

12 Mar 07:15
6953785

Choose a tag to compare

Breaking Changes

  • For upload and download attachment APIs, method parameters changed from object to individual arguments. Using entityId over entityName Ref: #272
- const response = await entities.downloadAttachment({
-   entityName: 'Invoice',
-   recordId: 'recordId',
-   fieldName: 'Documents'
- });

+ const response = await entities.downloadAttachment(entityId, recordId, 'Documents');

New Features & Improvements

  • Introduced deleteAttachment method on entities #267

Bug fixes

  • OAuth auto refresh token fix #213

Full Changelog: 1.1.3...1.2.0

1.1.3

06 Mar 08:06
0ca8714

Choose a tag to compare

New Features & Improvements

  • Introduced uploadAttachment method on entities #257

1.1.2

05 Mar 07:30
320d6f3

Choose a tag to compare

New Features & Improvements

  • Coded Action App support has been added, now developers can code action apps and should be able to run in action center, with uipath-ts-coded-action-apps package. Ref: #229
  • helper method getAsset has been introduced to fetch asset base path. Ref: #155

Bug Fixes

  • Fixed a bug where on oauth error, SDK was still storing stale oauth context in session. Ref: #245

1.1.1

23 Feb 10:26
ded9ab7

Choose a tag to compare

New Features & Improvements

  • Introduced logout method to SDK instance to logout from the current session. Ref #230
  • telemetryClient is now exported in @uipath/uipath-typescript/core