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
@@ -723,6 +723,29 @@ if (!String.prototype.endsWith || !String.prototype.startsWith) {
723
723
* @property {string} returnRepresentation - Sets Prefer header request with value "return=representation". Use this property to return just created or updated entity in a single request.
724
724
*/
725
725
726
+
/**
727
+
* Dynamics Web Api Request
728
+
* @typedef {Object} DWARequest
729
+
* @property {string} collection
730
+
* @property {string} id
731
+
* @property {Array} select
732
+
* @property {Array} expand
733
+
* @property {string} filter
734
+
* @property {number} maxPageSize
735
+
* @property {boolean} count
736
+
* @property {number} top
737
+
* @property {Array} orderBy
738
+
* @property {string} includeAnnotations
739
+
* @property {string} ifmatch
740
+
* @property {string} ifnonematch
741
+
* @property {boolean} returnRepresentation
742
+
* @property {Object} entity
743
+
* @property {string} impersonate: "",
744
+
* @property {string} navigationProperty: "",
745
+
* @property {string} savedQuery: "",
746
+
* @property {string} userQuery: ""
747
+
*/
748
+
726
749
/**
727
750
* DynamicsWebApi - a Microsoft Dynamics CRM Web API helper library. Current version uses Promises instead of Callbacks.
Copy file name to clipboardexpand all lines: lib/dynamics-web-api.js
+23
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,29 @@ var dwaRequest = function () {
55
55
* @property {string} returnRepresentation - Sets Prefer header request with value "return=representation". Use this property to return just created or updated entity in a single request.
56
56
*/
57
57
58
+
/**
59
+
* Dynamics Web Api Request
60
+
* @typedef {Object} DWARequest
61
+
* @property {string} collection
62
+
* @property {string} id
63
+
* @property {Array} select
64
+
* @property {Array} expand
65
+
* @property {string} filter
66
+
* @property {number} maxPageSize
67
+
* @property {boolean} count
68
+
* @property {number} top
69
+
* @property {Array} orderBy
70
+
* @property {string} includeAnnotations
71
+
* @property {string} ifmatch
72
+
* @property {string} ifnonematch
73
+
* @property {boolean} returnRepresentation
74
+
* @property {Object} entity
75
+
* @property {string} impersonate: "",
76
+
* @property {string} navigationProperty: "",
77
+
* @property {string} savedQuery: "",
78
+
* @property {string} userQuery: ""
79
+
*/
80
+
58
81
/**
59
82
* DynamicsWebApi - a Microsoft Dynamics CRM Web API helper library. Current version uses Promises instead of Callbacks.
0 commit comments