gd-sprest 8.8.9 → 8.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/mapper/v2.js +4 -1
- package/build/rest.js +1 -1
- package/dist/gd-sprest.js +1 -1
- package/dist/gd-sprest.min.js +1 -1
- package/package.json +1 -1
package/build/mapper/v2.js
CHANGED
|
@@ -6719,6 +6719,9 @@ exports.MapperV2 = {
|
|
|
6719
6719
|
query: { argNames: ["oData"], requestType: utils_1.RequestType.OData },
|
|
6720
6720
|
update: {
|
|
6721
6721
|
argNames: ["values"],
|
|
6722
|
+
name: "",
|
|
6723
|
+
requestMethod: "MERGE",
|
|
6724
|
+
requestType: utils_1.RequestType.PostBodyNoArgs
|
|
6722
6725
|
},
|
|
6723
6726
|
grant: {
|
|
6724
6727
|
argNames: ["roles", "recipients"],
|
|
@@ -6730,7 +6733,7 @@ exports.MapperV2 = {
|
|
|
6730
6733
|
add: {
|
|
6731
6734
|
argNames: ["values"],
|
|
6732
6735
|
name: "",
|
|
6733
|
-
requestType: utils_1.RequestType.
|
|
6736
|
+
requestType: utils_1.RequestType.PostBodyNoArgs
|
|
6734
6737
|
},
|
|
6735
6738
|
query: { argNames: ["oData"], requestType: utils_1.RequestType.OData },
|
|
6736
6739
|
},
|
package/build/rest.js
CHANGED