gd-sprest 8.9.8 → 8.9.9
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 -2
- 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/def.js
CHANGED
|
@@ -6630,7 +6630,8 @@ exports.Mapper = {
|
|
|
6630
6630
|
},
|
|
6631
6631
|
getWebTemplates: {
|
|
6632
6632
|
argNames: ["LCID", "overrideCompatLevel"],
|
|
6633
|
-
requestType: utils_1.RequestType.PostWithArgs
|
|
6633
|
+
requestType: utils_1.RequestType.PostWithArgs,
|
|
6634
|
+
returnType: "SP.WebTemplate.Collection"
|
|
6634
6635
|
},
|
|
6635
6636
|
invalidate: {
|
|
6636
6637
|
requestType: utils_1.RequestType.Post
|
|
@@ -7656,7 +7657,8 @@ exports.Mapper = {
|
|
|
7656
7657
|
},
|
|
7657
7658
|
getAvailableWebTemplates: {
|
|
7658
7659
|
argNames: ["lcid", "doIncludeCrossLanguage"],
|
|
7659
|
-
requestType: utils_1.RequestType.GetWithArgs
|
|
7660
|
+
requestType: utils_1.RequestType.GetWithArgs,
|
|
7661
|
+
returnType: "SP.WebTemplate.Collection"
|
|
7660
7662
|
},
|
|
7661
7663
|
getCatalog: {
|
|
7662
7664
|
argNames: ["typeCatalog"],
|
package/build/rest.js
CHANGED