gd-sprest 6.8.4 → 6.8.5
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/def.js +4 -6
- package/build/rest.js +1 -1
- package/dist/gd-sprest.js +2 -2
- package/dist/gd-sprest.min.js +1 -1
- package/package.json +1 -1
package/build/mapper/def.js
CHANGED
|
@@ -6434,18 +6434,16 @@ exports.Mapper = {
|
|
|
6434
6434
|
"SP.Web.Collection": {
|
|
6435
6435
|
add: {
|
|
6436
6436
|
argNames: ["parameters"],
|
|
6437
|
-
metadataType: "SP.
|
|
6438
|
-
|
|
6439
|
-
requestType: utils_1.RequestType.PostBodyNoArgs
|
|
6437
|
+
metadataType: "SP.WebCreationInformation",
|
|
6438
|
+
requestType: utils_1.RequestType.PostWithArgsInBody
|
|
6440
6439
|
},
|
|
6441
6440
|
query: { argNames: ["oData"], requestType: utils_1.RequestType.OData },
|
|
6442
6441
|
},
|
|
6443
6442
|
"SP.WebInformation.Collection": {
|
|
6444
6443
|
add: {
|
|
6445
6444
|
argNames: ["parameters"],
|
|
6446
|
-
metadataType: "SP.
|
|
6447
|
-
|
|
6448
|
-
requestType: utils_1.RequestType.PostBodyNoArgs
|
|
6445
|
+
metadataType: "SP.WebInfoCreationInformation",
|
|
6446
|
+
requestType: utils_1.RequestType.PostWithArgsInBody
|
|
6449
6447
|
},
|
|
6450
6448
|
getById: {
|
|
6451
6449
|
argNames: ["id"],
|
package/build/rest.js
CHANGED