Releases: UiPath/uipath-typescript
Releases · UiPath/uipath-typescript
1.3.3
New Features & Improvements
- Feedback service
getAll()method for conversational agent feedback collection (#184) - Added
Jobs.resume()method to resume suspended jobs (#371) andJobs.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
1.3.1
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; andimportRecordsById— bulk imports records into an entity from a CSV file. Ref: #352
1.3.0
1.3.0
New Features & Improvements
- Introduced
getOutputmethod 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
New Features & Improvements
- Introduced Orchestrator Jobs getAll service. Ref: #290
- AttachmentService has been introduced.
getByIdmehtod 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
New Features & Improvements
updateRecordByIdmethod on entity has been introduced to update a single record in entity. Ref: #276updateTokenmethod has been exposed to sdk instance for allowing services to inject and update the token. Ref: #274getAttachmentUploadUrimethod 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
Breaking Changes
- For upload and download attachment APIs, method parameters changed from object to individual arguments. Using
entityIdoverentityNameRef: #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
1.1.2
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
getAssethas 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