You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1712,15 +1712,15 @@ function DynamicsWebApi(config) {
1712
1712
* @param {Function} errorCallback - The function that will be passed through and be called by a failed response.
1713
1713
* @param {Array} [select] - Use the $select system query option to limit the properties returned.
1714
1714
* @param {string} [filter] - Use the $filter system query option to set criteria for which entities will be returned.
1715
-
* @param {string} [nextPageLink] - Use the value of the @odata.nextLink property with a new GET request to return the next page of data. Pass null to retrieveMultipleOptions.
1715
+
* @param {string} [oDataLink] - Use this parameter to pass @odata.nextLink or @odata.deltaLink to return a necessary response. Pass null to retrieveMultipleOptions.
@@ -1767,11 +1767,11 @@ function DynamicsWebApi(config) {
1767
1767
* @param {DWARequest} request - An object that represents all possible options for a current request.
1768
1768
* @param {Function} successCallback - The function that will be passed through and be called by a successful response.
1769
1769
* @param {Function} errorCallback - The function that will be passed through and be called by a failed response.
1770
-
* @param {string} [nextPageLink] - Use the value of the @odata.nextLink property with a new GET request to return the next page of data. Pass null to retrieveMultipleOptions.
1770
+
* @param {string} [oDataLink] - Use this parameter to pass @odata.nextLink or @odata.deltaLink to return a necessary response. Pass null to retrieveMultipleOptions.
@@ -836,6 +836,8 @@ if (!String.prototype.endsWith || !String.prototype.startsWith) {
836
836
* @property {boolean} mergeLabels - If set to 'true', DynamicsWebApi adds a request header 'MSCRM.MergeLabels: true'. Default value is 'false'.
837
837
* @property {boolean} isBatch - If set to 'true', DynamicsWebApi treats a request as a part of a batch request. Call ExecuteBatch to execute all requests in a batch. Default value is 'false'.
838
838
* @property {string} contentId - BATCH REQUESTS ONLY! Sets Content-ID header or references request in a Change Set.
839
+
* @property {boolean} trackChanges - Preference header 'odata.track-changes' is used to request that a delta link be returned which can subsequently be used to retrieve entity changes.
840
+
* @property {string} deltaLink - Delta link can be used to retrieve entity changes. Important! Change Tracking must be enabled for the entity.
839
841
*/
840
842
841
843
/**
@@ -2226,6 +2228,9 @@ function getFormattedKeyValue(keyName, value) {
0 commit comments