@alicloud/apig20240327 5.7.0 → 6.0.0
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/dist/client.js +6 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateMcpServerRequest.d.ts +15 -0
- package/dist/models/CreateMcpServerRequest.js +27 -1
- package/dist/models/CreateMcpServerRequest.js.map +1 -1
- package/dist/models/GetConsumerResponseBody.d.ts +1 -1
- package/dist/models/GetConsumerResponseBody.js +3 -3
- package/dist/models/GetConsumerResponseBody.js.map +1 -1
- package/dist/models/UpdateMcpServerRequest.d.ts +15 -0
- package/dist/models/UpdateMcpServerRequest.js +27 -1
- package/dist/models/UpdateMcpServerRequest.js.map +1 -1
- package/dist/models/model.d.ts +2 -0
- package/dist/models/model.js +20 -16
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +8 -0
- package/src/models/CreateMcpServerRequest.ts +32 -0
- package/src/models/GetConsumerResponseBody.ts +4 -4
- package/src/models/UpdateMcpServerRequest.ts +32 -0
- package/src/models/model.ts +2 -0
package/dist/client.js
CHANGED
|
@@ -872,6 +872,9 @@ class Client extends openapi_core_1.default {
|
|
|
872
872
|
if (!$dara.isNull(request.match)) {
|
|
873
873
|
body["match"] = request.match;
|
|
874
874
|
}
|
|
875
|
+
if (!$dara.isNull(request.mcpServerConfig)) {
|
|
876
|
+
body["mcpServerConfig"] = request.mcpServerConfig;
|
|
877
|
+
}
|
|
875
878
|
if (!$dara.isNull(request.mcpStatisticsEnable)) {
|
|
876
879
|
body["mcpStatisticsEnable"] = request.mcpStatisticsEnable;
|
|
877
880
|
}
|
|
@@ -4919,6 +4922,9 @@ class Client extends openapi_core_1.default {
|
|
|
4919
4922
|
if (!$dara.isNull(request.match)) {
|
|
4920
4923
|
body["match"] = request.match;
|
|
4921
4924
|
}
|
|
4925
|
+
if (!$dara.isNull(request.mcpServerConfig)) {
|
|
4926
|
+
body["mcpServerConfig"] = request.mcpServerConfig;
|
|
4927
|
+
}
|
|
4922
4928
|
if (!$dara.isNull(request.mcpStatisticsEnable)) {
|
|
4923
4929
|
body["mcpStatisticsEnable"] = request.mcpStatisticsEnable;
|
|
4924
4930
|
}
|