Martin Kasban Tange
Martin Kasban Tange
The Web API supports calling both standard and custom actions as [seen in the docs](https://msdn.microsoft.com/en-us/library/mt607600.aspx). We need to support both bound and unbound actions, which will likely need two different...
Similar to XrmQuery for the Web API, the old endpoint should also have `.promise()` functions next to their `.execute()` functions, which returns a ES6 Promise instead of relying on callbacks....
In the Web API you can retrieve records using alternate keys instead of GUIDs, [as seen in the docs](https://msdn.microsoft.com/en-us/library/mt607871.aspx#BKMK_UsingAltKeys). How the function call could look like: ```typescript XrmQuery.retrieveAlt(x => x.accounts_$MyAltKey).executeWith({...
Currently the MetadataGenerator fetches all necessary metadata and overwrites whatever was previously stored. It is, however, possible to [retrieve and detect changes in metadata](https://msdn.microsoft.com/en-us/library/jj863599.aspx). By doing it this way, it...
Changed uses of `"path"` to `"path/filepath"`, in order to make the logic cross-platform compatible. Added a little bit of extra logic in certain functions of `matchers` and `pkgpath`, which makes...