gd-sprest 6.8.3 → 6.8.4
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 +9 -9
- 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
|
@@ -1037,7 +1037,7 @@ exports.Mapper = {
|
|
|
1037
1037
|
},
|
|
1038
1038
|
addAndDeployStoreAppById: {
|
|
1039
1039
|
argNames: ["CMU", "Overwrite", "SkipFeatureDeployment", "StoreAssetId"],
|
|
1040
|
-
requestType: utils_1.RequestType.
|
|
1040
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1041
1041
|
},
|
|
1042
1042
|
addStoreApp: {
|
|
1043
1043
|
argNames: ["Url", "Overwrite", "IconUrl", "Publisher", "ShortDescription", "StoreAssetId", "Content"],
|
|
@@ -1045,39 +1045,39 @@ exports.Mapper = {
|
|
|
1045
1045
|
},
|
|
1046
1046
|
appRequests: {
|
|
1047
1047
|
argNames: ["AppRequestInfo"],
|
|
1048
|
-
requestType: utils_1.RequestType.
|
|
1048
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1049
1049
|
},
|
|
1050
1050
|
downloadTeamsSolution: {
|
|
1051
1051
|
argNames: ["id"],
|
|
1052
|
-
requestType: utils_1.RequestType.
|
|
1052
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1053
1053
|
},
|
|
1054
1054
|
downloadTeamsSolutionByUniqueId: {
|
|
1055
1055
|
argNames: ["id"],
|
|
1056
|
-
requestType: utils_1.RequestType.
|
|
1056
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1057
1057
|
},
|
|
1058
1058
|
getAppById: {
|
|
1059
1059
|
argNames: ["itemUniqueId"],
|
|
1060
1060
|
},
|
|
1061
1061
|
isAppUpgradeAvailable: {
|
|
1062
1062
|
argNames: ["id"],
|
|
1063
|
-
requestType: utils_1.RequestType.
|
|
1063
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1064
1064
|
},
|
|
1065
1065
|
query: { argNames: ["oData"], requestType: utils_1.RequestType.OData },
|
|
1066
1066
|
solutionContainsTeamsComponent: {
|
|
1067
1067
|
argNames: ["id"],
|
|
1068
|
-
requestType: utils_1.RequestType.
|
|
1068
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1069
1069
|
},
|
|
1070
1070
|
syncSolutionToTeams: {
|
|
1071
1071
|
argNames: ["id"],
|
|
1072
|
-
requestType: utils_1.RequestType.
|
|
1072
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1073
1073
|
},
|
|
1074
1074
|
syncSolutionToTeamsByUniqueId: {
|
|
1075
1075
|
argNames: ["id"],
|
|
1076
|
-
requestType: utils_1.RequestType.
|
|
1076
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1077
1077
|
},
|
|
1078
1078
|
updateMyRequestStatus: {
|
|
1079
1079
|
argNames: ["RequestId", "Status"],
|
|
1080
|
-
requestType: utils_1.RequestType.
|
|
1080
|
+
requestType: utils_1.RequestType.PostWithArgs
|
|
1081
1081
|
},
|
|
1082
1082
|
upload: {
|
|
1083
1083
|
argNames: ["Url", "Overwrite", "Content"],
|
package/build/rest.js
CHANGED