Skip to content

Releases: AleksandrRogov/DynamicsWebApi

v1.5.13

11 Nov 04:25

Choose a tag to compare

Fixes:

  • made changes to findCollectionName function to make it work in the Dynamics 365 Unified Interface

v1.5.12

09 Nov 16:29

Choose a tag to compare

Changes:

  • retrieveAllRequest will include @odata.deltaLink in the result of the request that had trackChanges set to true.

v1.5.11

16 Oct 22:15

Choose a tag to compare

Changes

  • Added Change Tracking functionality #57.

v1.5.10

08 Aug 12:00

Choose a tag to compare

Fixes:

  • #55 - Avoid undefined error in batch operation. Thanks @yonaichin for a pull request.
  • #56 - A required parameter cannot follow an optional parameter in TypeScript definitions.

v1.5.9

05 Jul 19:20

Choose a tag to compare

Fixes:

  • @odata.bind now does not add a full Web API url, instead it adds / if it is not present. This change is crucial for on-premise organizations.
  • added expand property RetrieveMutlipleRequest type definition for TypeScript.
  • inconsistent removing of curly braces in guids during a bind operation @odata.bind.

Known Issue (On-Premise only):

  • DynamicsWebApi uses GlobalContext.getClientUrl() to get the URL of an organization, therefore @odata.id operations (for example associate) are not going to work if the client is running outside of the local network and the client cannot resolve the name of the server that runs Dynamics 365 organization.
    @odata.id operations require an absolute uri to the resource and because the operation runs at the server it also needs to be a service route uri which contains a server machine name and therefore it is not resolvable for clients outside a local network. If this happens, you will get an error "AbsoluteUri should contain ServiceRouteUri".

v1.5.7

12 May 18:16

Choose a tag to compare

Changes:

  • Use Content-ID reference in a batch request payload.
  • Fixed type definitions.

v1.5.6

11 May 16:38

Choose a tag to compare

Changes:

  • Added contentId in a request object to reference requests in a Change Set.
  • Merge #48

v1.5.5

26 Apr 20:03

Choose a tag to compare

Fixes:

  • #47. Make it work for older js versions.

v1.5.4

17 Apr 16:10

Choose a tag to compare

Changes:

  • Added a timeout configuration option. Thanks to @ncjones #46

v1.5.3

31 Mar 01:22

Choose a tag to compare

Added:

  • TypeScript declaration files. Can be found here. #29

Fixes:

  • #45 Issue with parsing object arguments in a buildFunctionParameters function.