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
Feature is very convenient for big Fetch XMLs. `Implemented in v.1.2.8`
908
908
-[X] "Formatted" values in responses. For instance: Web API splits information about lookup fields into separate properties,
909
909
the config option "formatted" will enable developers to retrieve all information about such fields in a single requests and access it through DynamicsWebApi custom response objects.
910
-
-[X] Simplified names for "Formatted" properties. `Implemeted in v.1.3.0`
910
+
-[X] Simplified names for "Formatted" properties. `Implemented in v.1.3.0`
911
911
-[ ] Batch requests.
912
912
-[ ] Web API Authentication for On-Premise instances.
Copy file name to clipboardExpand all lines: dist/dynamics-web-api-callbacks.js
+29-18Lines changed: 29 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -354,9 +354,10 @@ function setStandardHeaders(additionalHeaders) {
354
354
* @param {Object} config - DynamicsWebApi config.
355
355
* @param {Object} [data] - Data to send in the request.
356
356
* @param {Object} [additionalHeaders] - Object with additional headers. IMPORTANT! This object does not contain default headers needed for every request.
357
+
* @param {boolean} [isAsync] - Indicates whether the request should be made synchronously or asynchronously.
@@ -806,9 +816,10 @@ function DynamicsWebApi(config) {
806
816
* @param {Function} errorCallback - A callback called when a request failed.
807
817
* @param {Object} [data] - Data to send in the request.
808
818
* @param {Object} [additionalHeaders] - Object with additional headers. IMPORTANT! This object does not contain default headers needed for every request.
819
+
* @param {boolean} [isAsync] - Indicates whether the request should be made synchronously or asynchronously.
Copy file name to clipboardExpand all lines: dist/dynamics-web-api.js
+29-18Lines changed: 29 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -354,9 +354,10 @@ function setStandardHeaders(additionalHeaders) {
354
354
* @param {Object} config - DynamicsWebApi config.
355
355
* @param {Object} [data] - Data to send in the request.
356
356
* @param {Object} [additionalHeaders] - Object with additional headers. IMPORTANT! This object does not contain default headers needed for every request.
357
+
* @param {boolean} [isAsync] - Indicates whether the request should be made synchronously or asynchronously.
@@ -804,11 +814,12 @@ function DynamicsWebApi(config) {
804
814
* @param {string} uri - Request URI.
805
815
* @param {Object} [data] - Data to send in the request.
806
816
* @param {Object} [additionalHeaders] - Object with additional headers. IMPORTANT! This object does not contain default headers needed for every request.
817
+
* @param {boolean} [isAsync] - Indicates whether the request should be made synchronously or asynchronously.
0 commit comments