@alicloud/websitebuild20250429 2.35.1 → 2.36.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 +17 -2
- package/dist/client.js +44 -2
- package/dist/client.js.map +1 -1
- package/dist/models/AppInstanceProfile.d.ts +65 -0
- package/dist/models/AppInstanceProfile.js +2 -0
- package/dist/models/AppInstanceProfile.js.map +1 -1
- package/dist/models/GetAppCodeWorkspaceDetailResponseBody.d.ts +2 -2
- package/dist/models/GetAppInstanceForAdminResponseBody.d.ts +2 -2
- package/dist/models/GetAppInstanceResponseBody.d.ts +3 -3
- package/dist/models/GetAppPluginResponseBody.d.ts +20 -4
- package/dist/models/GetAppPluginResponseBody.js +4 -0
- package/dist/models/GetAppPluginResponseBody.js.map +1 -1
- package/dist/models/GetOssUploadPolicyResponseBody.d.ts +6 -6
- package/dist/models/ListAppInstancesResponseBody.d.ts +5 -2
- package/dist/models/ListAppInstancesResponseBody.js.map +1 -1
- package/dist/models/ListAppPublishHistoryRequest.d.ts +1 -1
- package/dist/models/ListAppPublishHistoryResponseBody.d.ts +5 -5
- package/dist/models/QueryInspirationBalanceForPartnerRequest.d.ts +23 -0
- package/dist/models/QueryInspirationBalanceForPartnerRequest.js +60 -0
- package/dist/models/QueryInspirationBalanceForPartnerRequest.js.map +1 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponse.d.ts +19 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponse.js +69 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponse.js.map +1 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponseBody.d.ts +102 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponseBody.js +113 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +22 -13
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +48 -2
- package/src/models/AppInstanceProfile.ts +67 -0
- package/src/models/GetAppCodeWorkspaceDetailResponseBody.ts +2 -2
- package/src/models/GetAppInstanceForAdminResponseBody.ts +2 -2
- package/src/models/GetAppInstanceResponseBody.ts +3 -3
- package/src/models/GetAppPluginResponseBody.ts +24 -4
- package/src/models/GetOssUploadPolicyResponseBody.ts +6 -6
- package/src/models/ListAppInstancesResponseBody.ts +5 -2
- package/src/models/ListAppPublishHistoryRequest.ts +1 -1
- package/src/models/ListAppPublishHistoryResponseBody.ts +5 -5
- package/src/models/QueryInspirationBalanceForPartnerRequest.ts +38 -0
- package/src/models/QueryInspirationBalanceForPartnerResponse.ts +40 -0
- package/src/models/QueryInspirationBalanceForPartnerResponseBody.ts +161 -0
- package/src/models/model.ts +4 -0
package/dist/client.d.ts
CHANGED
|
@@ -1496,7 +1496,7 @@ export default class Client extends OpenApi {
|
|
|
1496
1496
|
* Generates a file upload policy.
|
|
1497
1497
|
*
|
|
1498
1498
|
* @remarks
|
|
1499
|
-
* Retrieves the configuration information of the code generation
|
|
1499
|
+
* Retrieves the configuration information of the code generation plugin.
|
|
1500
1500
|
*
|
|
1501
1501
|
* @param request - GetOssUploadPolicyRequest
|
|
1502
1502
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -1507,7 +1507,7 @@ export default class Client extends OpenApi {
|
|
|
1507
1507
|
* Generates a file upload policy.
|
|
1508
1508
|
*
|
|
1509
1509
|
* @remarks
|
|
1510
|
-
* Retrieves the configuration information of the code generation
|
|
1510
|
+
* Retrieves the configuration information of the code generation plugin.
|
|
1511
1511
|
*
|
|
1512
1512
|
* @param request - GetOssUploadPolicyRequest
|
|
1513
1513
|
* @returns GetOssUploadPolicyResponse
|
|
@@ -2486,6 +2486,21 @@ export default class Client extends OpenApi {
|
|
|
2486
2486
|
* @returns QueryInspirationBalanceResponse
|
|
2487
2487
|
*/
|
|
2488
2488
|
queryInspirationBalance(): Promise<$_model.QueryInspirationBalanceResponse>;
|
|
2489
|
+
/**
|
|
2490
|
+
* 提供给服务商的灵感值查询接口
|
|
2491
|
+
*
|
|
2492
|
+
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
2493
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2494
|
+
* @returns QueryInspirationBalanceForPartnerResponse
|
|
2495
|
+
*/
|
|
2496
|
+
queryInspirationBalanceForPartnerWithOptions(request: $_model.QueryInspirationBalanceForPartnerRequest, runtime: $dara.RuntimeOptions): Promise<$_model.QueryInspirationBalanceForPartnerResponse>;
|
|
2497
|
+
/**
|
|
2498
|
+
* 提供给服务商的灵感值查询接口
|
|
2499
|
+
*
|
|
2500
|
+
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
2501
|
+
* @returns QueryInspirationBalanceForPartnerResponse
|
|
2502
|
+
*/
|
|
2503
|
+
queryInspirationBalanceForPartner(request: $_model.QueryInspirationBalanceForPartnerRequest): Promise<$_model.QueryInspirationBalanceForPartnerResponse>;
|
|
2489
2504
|
/**
|
|
2490
2505
|
* Queries the details of inspiration point consumption.
|
|
2491
2506
|
*
|
package/dist/client.js
CHANGED
|
@@ -3984,7 +3984,7 @@ class Client extends openapi_core_1.default {
|
|
|
3984
3984
|
* Generates a file upload policy.
|
|
3985
3985
|
*
|
|
3986
3986
|
* @remarks
|
|
3987
|
-
* Retrieves the configuration information of the code generation
|
|
3987
|
+
* Retrieves the configuration information of the code generation plugin.
|
|
3988
3988
|
*
|
|
3989
3989
|
* @param request - GetOssUploadPolicyRequest
|
|
3990
3990
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -4016,7 +4016,7 @@ class Client extends openapi_core_1.default {
|
|
|
4016
4016
|
* Generates a file upload policy.
|
|
4017
4017
|
*
|
|
4018
4018
|
* @remarks
|
|
4019
|
-
* Retrieves the configuration information of the code generation
|
|
4019
|
+
* Retrieves the configuration information of the code generation plugin.
|
|
4020
4020
|
*
|
|
4021
4021
|
* @param request - GetOssUploadPolicyRequest
|
|
4022
4022
|
* @returns GetOssUploadPolicyResponse
|
|
@@ -6802,6 +6802,48 @@ class Client extends openapi_core_1.default {
|
|
|
6802
6802
|
let runtime = new $dara.RuntimeOptions({});
|
|
6803
6803
|
return await this.queryInspirationBalanceWithOptions(runtime);
|
|
6804
6804
|
}
|
|
6805
|
+
/**
|
|
6806
|
+
* 提供给服务商的灵感值查询接口
|
|
6807
|
+
*
|
|
6808
|
+
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
6809
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
6810
|
+
* @returns QueryInspirationBalanceForPartnerResponse
|
|
6811
|
+
*/
|
|
6812
|
+
async queryInspirationBalanceForPartnerWithOptions(request, runtime) {
|
|
6813
|
+
request.validate();
|
|
6814
|
+
let query = {};
|
|
6815
|
+
if (!$dara.isNull(request.belongId)) {
|
|
6816
|
+
query["BelongId"] = request.belongId;
|
|
6817
|
+
}
|
|
6818
|
+
if (!$dara.isNull(request.belongIdType)) {
|
|
6819
|
+
query["BelongIdType"] = request.belongIdType;
|
|
6820
|
+
}
|
|
6821
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
6822
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
6823
|
+
});
|
|
6824
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
6825
|
+
action: "QueryInspirationBalanceForPartner",
|
|
6826
|
+
version: "2025-04-29",
|
|
6827
|
+
protocol: "HTTPS",
|
|
6828
|
+
pathname: "/",
|
|
6829
|
+
method: "POST",
|
|
6830
|
+
authType: "AK",
|
|
6831
|
+
style: "RPC",
|
|
6832
|
+
reqBodyType: "formData",
|
|
6833
|
+
bodyType: "json",
|
|
6834
|
+
});
|
|
6835
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.QueryInspirationBalanceForPartnerResponse({}));
|
|
6836
|
+
}
|
|
6837
|
+
/**
|
|
6838
|
+
* 提供给服务商的灵感值查询接口
|
|
6839
|
+
*
|
|
6840
|
+
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
6841
|
+
* @returns QueryInspirationBalanceForPartnerResponse
|
|
6842
|
+
*/
|
|
6843
|
+
async queryInspirationBalanceForPartner(request) {
|
|
6844
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
6845
|
+
return await this.queryInspirationBalanceForPartnerWithOptions(request, runtime);
|
|
6846
|
+
}
|
|
6805
6847
|
/**
|
|
6806
6848
|
* Queries the details of inspiration point consumption.
|
|
6807
6849
|
*
|