tencentcloud-sdk-nodejs-intl-en 3.0.1106 → 3.0.1108
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/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +36 -5
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +310 -80
- package/tencentcloud/tcsas/index.js +3 -0
- package/tencentcloud/tcsas/v20250106/index.js +4 -0
- package/tencentcloud/tcsas/v20250106/models.js +8650 -0
- package/tencentcloud/tcsas/v20250106/tcsas_client.js +849 -0
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1108";
|
|
2
2
|
module.exports = sdkVersion
|
package/tencentcloud/index.js
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
const models = require("./models");
|
|
18
18
|
const AbstractClient = require('../../common/abstract_client')
|
|
19
|
-
const
|
|
19
|
+
const QueryAccountVerificationStatusResponse = models.QueryAccountVerificationStatusResponse;
|
|
20
20
|
const SendVerifyCodeRequest = models.SendVerifyCodeRequest;
|
|
21
21
|
const QueryPartnerCreditResponse = models.QueryPartnerCreditResponse;
|
|
22
22
|
const QueryVoucherListByUinRequest = models.QueryVoucherListByUinRequest;
|
|
@@ -27,26 +27,30 @@ const QueryVoucherAmountByUinItem = models.QueryVoucherAmountByUinItem;
|
|
|
27
27
|
const QueryVoucherListByUinItem = models.QueryVoucherListByUinItem;
|
|
28
28
|
const QueryCreditAllocationHistoryData = models.QueryCreditAllocationHistoryData;
|
|
29
29
|
const TagInfo = models.TagInfo;
|
|
30
|
+
const QueryPolicyProductListByCodeRequest = models.QueryPolicyProductListByCodeRequest;
|
|
30
31
|
const DescribeBillSummaryResponse = models.DescribeBillSummaryResponse;
|
|
31
32
|
const DescribeBillSummaryByPayModeResponse = models.DescribeBillSummaryByPayModeResponse;
|
|
32
33
|
const QueryCreditQuotaResponse = models.QueryCreditQuotaResponse;
|
|
33
34
|
const BusinessInfo = models.BusinessInfo;
|
|
34
35
|
const QueryCreditByUinListRequest = models.QueryCreditByUinListRequest;
|
|
35
|
-
const
|
|
36
|
+
const ApproveClientApplyResponse = models.ApproveClientApplyResponse;
|
|
36
37
|
const QueryPartnerCreditRequest = models.QueryPartnerCreditRequest;
|
|
38
|
+
const DescribeBillSummaryByRegionRequest = models.DescribeBillSummaryByRegionRequest;
|
|
37
39
|
const AllocateCustomerCreditRequest = models.AllocateCustomerCreditRequest;
|
|
38
40
|
const DescribeBillSummaryByRegionResponse = models.DescribeBillSummaryByRegionResponse;
|
|
39
41
|
const DescribeCustomerBillSummaryResponse = models.DescribeCustomerBillSummaryResponse;
|
|
40
42
|
const QueryCustomersCreditRequest = models.QueryCustomersCreditRequest;
|
|
41
43
|
const DescribeCustomerBillDownloadUrlResponse = models.DescribeCustomerBillDownloadUrlResponse;
|
|
42
|
-
const
|
|
44
|
+
const QueryPendingClientsV2Request = models.QueryPendingClientsV2Request;
|
|
45
|
+
const QueryPendingCustomersItem = models.QueryPendingCustomersItem;
|
|
43
46
|
const DescribeBillDetailRequest = models.DescribeBillDetailRequest;
|
|
44
47
|
const CreateAndSendClientInvitationMailResponse = models.CreateAndSendClientInvitationMailResponse;
|
|
45
48
|
const CreateAccountResponse = models.CreateAccountResponse;
|
|
46
|
-
const
|
|
49
|
+
const DescribeBillSummaryByProductResponse = models.DescribeBillSummaryByProductResponse;
|
|
47
50
|
const RegionSummaryOverviewItem = models.RegionSummaryOverviewItem;
|
|
48
51
|
const CustomerBillDetailData = models.CustomerBillDetailData;
|
|
49
52
|
const GetCountryCodesResponse = models.GetCountryCodesResponse;
|
|
53
|
+
const QueryDirectCustomersCreditResponse = models.QueryDirectCustomersCreditResponse;
|
|
50
54
|
const QueryCreditByUinListResponse = models.QueryCreditByUinListResponse;
|
|
51
55
|
const DescribeCustomerInfoResponse = models.DescribeCustomerInfoResponse;
|
|
52
56
|
const QueryVoucherAmountByUinResponse = models.QueryVoucherAmountByUinResponse;
|
|
@@ -82,13 +86,14 @@ const DescribeBillDetailResponse = models.DescribeBillDetailResponse;
|
|
|
82
86
|
const QueryVoucherPoolResponse = models.QueryVoucherPoolResponse;
|
|
83
87
|
const QueryCreditAllocationHistoryRequest = models.QueryCreditAllocationHistoryRequest;
|
|
84
88
|
const QueryCustomersCreditResponse = models.QueryCustomersCreditResponse;
|
|
85
|
-
const
|
|
89
|
+
const ApproveClientApplyRequest = models.ApproveClientApplyRequest;
|
|
86
90
|
const DescribeCustomerUinRequest = models.DescribeCustomerUinRequest;
|
|
87
91
|
const QueryVoucherListByUinResponse = models.QueryVoucherListByUinResponse;
|
|
88
92
|
const QueryVoucherPoolRequest = models.QueryVoucherPoolRequest;
|
|
89
93
|
const SummaryDetails = models.SummaryDetails;
|
|
90
94
|
const DescribeCustomerInfoData = models.DescribeCustomerInfoData;
|
|
91
95
|
const DescribeBillDownloadUrlResponse = models.DescribeBillDownloadUrlResponse;
|
|
96
|
+
const QueryPendingClientsV2Response = models.QueryPendingClientsV2Response;
|
|
92
97
|
const CreateAndSendClientInvitationMailRequest = models.CreateAndSendClientInvitationMailRequest;
|
|
93
98
|
const PolicyProductList = models.PolicyProductList;
|
|
94
99
|
const PayModeSummaryOverviewItem = models.PayModeSummaryOverviewItem;
|
|
@@ -133,6 +138,19 @@ class IntlpartnersmgtClient extends AbstractClient {
|
|
|
133
138
|
this.request("AllocateCustomerCredit", req, resp, cb);
|
|
134
139
|
}
|
|
135
140
|
|
|
141
|
+
/**
|
|
142
|
+
* Description: This API is used by resellers to query the list of sub-customers pending review. Note: This API is used to apply for the allowlist. If needed, please contact your business representative.
|
|
143
|
+
|
|
144
|
+
Callable roles: Reseller, Distributer, Second-level reseller
|
|
145
|
+
* @param {QueryPendingClientsV2Request} req
|
|
146
|
+
* @param {function(string, QueryPendingClientsV2Response):void} cb
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
QueryPendingClientsV2(req, cb) {
|
|
150
|
+
let resp = new QueryPendingClientsV2Response();
|
|
151
|
+
this.request("QueryPendingClientsV2", req, resp, cb);
|
|
152
|
+
}
|
|
153
|
+
|
|
136
154
|
/**
|
|
137
155
|
* This API is used to obtain country/region codes.
|
|
138
156
|
* @param {GetCountryCodesRequest} req
|
|
@@ -166,6 +184,19 @@ class IntlpartnersmgtClient extends AbstractClient {
|
|
|
166
184
|
this.request("QueryPartnerCredit", req, resp, cb);
|
|
167
185
|
}
|
|
168
186
|
|
|
187
|
+
/**
|
|
188
|
+
* Description: This API is used by resellers to review applications to become sub-customers. Note: This API is used to apply for the allowlist. If needed, please contact your business representative.
|
|
189
|
+
|
|
190
|
+
Callable roles: Reseller, Distributer, Second-level reseller
|
|
191
|
+
* @param {ApproveClientApplyRequest} req
|
|
192
|
+
* @param {function(string, ApproveClientApplyResponse):void} cb
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
ApproveClientApply(req, cb) {
|
|
196
|
+
let resp = new ApproveClientApplyResponse();
|
|
197
|
+
this.request("ApproveClientApply", req, resp, cb);
|
|
198
|
+
}
|
|
199
|
+
|
|
169
200
|
/**
|
|
170
201
|
* This API is used to query customer credits.
|
|
171
202
|
* @param {QueryCreditQuotaRequest} req
|