@alicloud/websitebuild20250429 2.36.3 → 2.37.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.d.ts +21 -0
- package/dist/client.js +54 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DeleteAppSceneRecipientRequest.d.ts +37 -0
- package/dist/models/DeleteAppSceneRecipientRequest.js +62 -0
- package/dist/models/DeleteAppSceneRecipientRequest.js.map +1 -0
- package/dist/models/DeleteAppSceneRecipientResponse.d.ts +19 -0
- package/dist/models/DeleteAppSceneRecipientResponse.js +69 -0
- package/dist/models/DeleteAppSceneRecipientResponse.js.map +1 -0
- package/dist/models/DeleteAppSceneRecipientResponseBody.d.ts +98 -0
- package/dist/models/DeleteAppSceneRecipientResponseBody.js +81 -0
- package/dist/models/DeleteAppSceneRecipientResponseBody.js.map +1 -0
- package/dist/models/ListAppInstanceDomainsRequest.d.ts +16 -2
- package/dist/models/ListAppInstanceDomainsRequest.js +2 -0
- package/dist/models/ListAppInstanceDomainsRequest.js.map +1 -1
- package/dist/models/ListAppInstanceDomainsResponseBody.d.ts +76 -29
- package/dist/models/ListAppInstanceDomainsResponseBody.js +12 -0
- package/dist/models/ListAppInstanceDomainsResponseBody.js.map +1 -1
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +16 -10
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +60 -0
- package/src/models/DeleteAppSceneRecipientRequest.ts +54 -0
- package/src/models/DeleteAppSceneRecipientResponse.ts +40 -0
- package/src/models/DeleteAppSceneRecipientResponseBody.ts +134 -0
- package/src/models/ListAppInstanceDomainsRequest.ts +18 -2
- package/src/models/ListAppInstanceDomainsResponseBody.ts +88 -29
- package/src/models/model.ts +3 -0
package/dist/client.d.ts
CHANGED
|
@@ -643,6 +643,27 @@ export default class Client extends OpenApi {
|
|
|
643
643
|
* @returns DeleteAppPluginResponse
|
|
644
644
|
*/
|
|
645
645
|
deleteAppPlugin(request: $_model.DeleteAppPluginRequest): Promise<$_model.DeleteAppPluginResponse>;
|
|
646
|
+
/**
|
|
647
|
+
* Deletes a scenario recipient.
|
|
648
|
+
*
|
|
649
|
+
* @remarks
|
|
650
|
+
* Queries application instance information.
|
|
651
|
+
*
|
|
652
|
+
* @param request - DeleteAppSceneRecipientRequest
|
|
653
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
654
|
+
* @returns DeleteAppSceneRecipientResponse
|
|
655
|
+
*/
|
|
656
|
+
deleteAppSceneRecipientWithOptions(request: $_model.DeleteAppSceneRecipientRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteAppSceneRecipientResponse>;
|
|
657
|
+
/**
|
|
658
|
+
* Deletes a scenario recipient.
|
|
659
|
+
*
|
|
660
|
+
* @remarks
|
|
661
|
+
* Queries application instance information.
|
|
662
|
+
*
|
|
663
|
+
* @param request - DeleteAppSceneRecipientRequest
|
|
664
|
+
* @returns DeleteAppSceneRecipientResponse
|
|
665
|
+
*/
|
|
666
|
+
deleteAppSceneRecipient(request: $_model.DeleteAppSceneRecipientRequest): Promise<$_model.DeleteAppSceneRecipientResponse>;
|
|
646
667
|
/**
|
|
647
668
|
* Deletes a Supabase key.
|
|
648
669
|
*
|
package/dist/client.js
CHANGED
|
@@ -1926,6 +1926,57 @@ class Client extends openapi_core_1.default {
|
|
|
1926
1926
|
let runtime = new $dara.RuntimeOptions({});
|
|
1927
1927
|
return await this.deleteAppPluginWithOptions(request, runtime);
|
|
1928
1928
|
}
|
|
1929
|
+
/**
|
|
1930
|
+
* Deletes a scenario recipient.
|
|
1931
|
+
*
|
|
1932
|
+
* @remarks
|
|
1933
|
+
* Queries application instance information.
|
|
1934
|
+
*
|
|
1935
|
+
* @param request - DeleteAppSceneRecipientRequest
|
|
1936
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1937
|
+
* @returns DeleteAppSceneRecipientResponse
|
|
1938
|
+
*/
|
|
1939
|
+
async deleteAppSceneRecipientWithOptions(request, runtime) {
|
|
1940
|
+
request.validate();
|
|
1941
|
+
let query = {};
|
|
1942
|
+
if (!$dara.isNull(request.bizId)) {
|
|
1943
|
+
query["BizId"] = request.bizId;
|
|
1944
|
+
}
|
|
1945
|
+
if (!$dara.isNull(request.recipientId)) {
|
|
1946
|
+
query["RecipientId"] = request.recipientId;
|
|
1947
|
+
}
|
|
1948
|
+
if (!$dara.isNull(request.sceneId)) {
|
|
1949
|
+
query["SceneId"] = request.sceneId;
|
|
1950
|
+
}
|
|
1951
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
1952
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
1953
|
+
});
|
|
1954
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
1955
|
+
action: "DeleteAppSceneRecipient",
|
|
1956
|
+
version: "2025-04-29",
|
|
1957
|
+
protocol: "HTTPS",
|
|
1958
|
+
pathname: "/",
|
|
1959
|
+
method: "POST",
|
|
1960
|
+
authType: "AK",
|
|
1961
|
+
style: "RPC",
|
|
1962
|
+
reqBodyType: "formData",
|
|
1963
|
+
bodyType: "json",
|
|
1964
|
+
});
|
|
1965
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DeleteAppSceneRecipientResponse({}));
|
|
1966
|
+
}
|
|
1967
|
+
/**
|
|
1968
|
+
* Deletes a scenario recipient.
|
|
1969
|
+
*
|
|
1970
|
+
* @remarks
|
|
1971
|
+
* Queries application instance information.
|
|
1972
|
+
*
|
|
1973
|
+
* @param request - DeleteAppSceneRecipientRequest
|
|
1974
|
+
* @returns DeleteAppSceneRecipientResponse
|
|
1975
|
+
*/
|
|
1976
|
+
async deleteAppSceneRecipient(request) {
|
|
1977
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
1978
|
+
return await this.deleteAppSceneRecipientWithOptions(request, runtime);
|
|
1979
|
+
}
|
|
1929
1980
|
/**
|
|
1930
1981
|
* Deletes a Supabase key.
|
|
1931
1982
|
*
|
|
@@ -4830,6 +4881,9 @@ class Client extends openapi_core_1.default {
|
|
|
4830
4881
|
if (!$dara.isNull(request.pageSize)) {
|
|
4831
4882
|
query["PageSize"] = request.pageSize;
|
|
4832
4883
|
}
|
|
4884
|
+
if (!$dara.isNull(request.statusQueryMode)) {
|
|
4885
|
+
query["StatusQueryMode"] = request.statusQueryMode;
|
|
4886
|
+
}
|
|
4833
4887
|
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
4834
4888
|
query: openapi_core_2.OpenApiUtil.query(query),
|
|
4835
4889
|
});
|