Releases: XRM-OSS/Xrm-WebApi-Client
Release v4.1.6
🐛 Bugfix: SendAsync did not have the same file upload handling as SendSync. This is now aligned.
Release v4.1.5
🐛 Bugfix: Fix typings for GetSetName
Release v4.1.4
✨ Extended typings for apiVersion property
Release v4.1.3
✨ Support for setting API version per request
Release v4.1.2
✨ Support for sending file objects without mutating the input to allow for easy usage of file and image fields
Release v4.1.1
🐛 Bugfix: Alternate Key URL properties that are lookups may not have their value surrounded by single quotes. This release takes this into consideration.
Release v4.1.0
✨ Support for PowerApps Portals via setting of WebApiClient.ClientUrl
to /_api/
.
Like below:
WebApiClient.ClientUrl = "/_api/";
For TypeScript you currently have to use a workaround, we're working on a fix:
(WebApiClient as any).ClientUrl = "/_api/";
Release v4.0.9
Removed if-none-match default header as it sometimes caused issues on retrieveMultiple
Release v4.0.8
NodeJS imports were broken since v4.0.1, now both nodejs and commonjs exports are working via UMD again.
Release v4.0.7
Publish to npm again