tencentcloud-sdk-nodejs-intl-en 3.0.1349 → 3.0.1350
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/advisor/v20200721/models.js +11 -24
- package/tencentcloud/asr/v20190614/models.js +9 -2
- package/tencentcloud/billing/v20180709/billing_client.js +242 -64
- package/tencentcloud/billing/v20180709/models.js +10788 -4645
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/cloudaudit/v20190319/cloudaudit_client.js +2 -30
- package/tencentcloud/cloudaudit/v20190319/models.js +132 -247
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/faceid_client.js +260 -143
- package/tencentcloud/faceid/v20180301/models.js +4283 -3113
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/organization/v20210331/models.js +1 -1
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/sms/v20210111/models.js +250 -31
- package/tencentcloud/sms/v20210111/sms_client.js +16 -3
- package/tencentcloud/sts/v20180813/models.js +42 -26
- package/tencentcloud/sts/v20180813/sts_client.js +30 -4
- package/tencentcloud/tag/v20180813/tag_client.js +1 -1
- package/tencentcloud/tchd/v20230306/models.js +1 -1
- package/tencentcloud/tem/index.js +1 -1
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/trtc/v20190722/models.js +263 -168
- package/tencentcloud/trtc/v20190722/trtc_client.js +11 -13
- package/tencentcloud/vod/index.js +1 -1
- package/tencentcloud/wedata/index.js +1 -1
|
@@ -35,6 +35,7 @@ const SetUserBlockedRequest = models.SetUserBlockedRequest;
|
|
|
35
35
|
const DescribeUserEventRequest = models.DescribeUserEventRequest;
|
|
36
36
|
const DeleteCloudModerationRequest = models.DeleteCloudModerationRequest;
|
|
37
37
|
const SetUserBlockedResponse = models.SetUserBlockedResponse;
|
|
38
|
+
const McuBackgroundCustomRender = models.McuBackgroundCustomRender;
|
|
38
39
|
const WaterMarkChar = models.WaterMarkChar;
|
|
39
40
|
const DescribeTrtcRoomUsageResponse = models.DescribeTrtcRoomUsageResponse;
|
|
40
41
|
const StopPublishCdnStreamResponse = models.StopPublishCdnStreamResponse;
|
|
@@ -295,18 +296,14 @@ This API is used to achieve the following goals:
|
|
|
295
296
|
}
|
|
296
297
|
|
|
297
298
|
/**
|
|
298
|
-
*
|
|
299
|
+
* API description:.
|
|
300
|
+
Start a mixed stream forwarding task to mix multiple audio and video streams in a TRTC room into one media stream, transcode it, and push it to live stream CDN or back to the TRTC room. It also supports directly forwarding a single stream from the TRTC room without transcoding. After startup successful, it will return a task ID (TaskId) unique to the SdkAppid dimension. You need to save this TaskId, as it will be relied on to update and end the task subsequently. See document: [Feature Description](https://www.tencentcloud.comom/document/product/647/84721?from_cn_redirect=1#b9a855f4-e38c-4616-9b07-fc44e0e8282a) and [Common Issues](https://www.tencentcloud.comom/document/product/647/62620?from_cn_redirect=1).
|
|
299
301
|
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
For
|
|
305
|
-
|
|
306
|
-
Note: You can enable the relay to CDN in the console to monitor events under the CDN relay status. For callback details, see: [Relay to CDN Callback Description](https://trtc.io/zh/document/54913?product=rtcengine&menulabel=core%20sdk&platform=web ) .
|
|
307
|
-
|
|
308
|
-
Starting a relay task may incur the following fees:
|
|
309
|
-
MCU stream mixing and transcoding fees: [See Cloud Stream Mixing and Transcoding Pricing](https://trtc.io/zh/document/47631 ) .
|
|
302
|
+
Note:.
|
|
303
|
+
You can enable bypass relay callback through console activation for monitoring events of CDN state. Refer to the documentation for callback: [Bypass Relay Callback Description](https://www.tencentcloud.comom/document/product/647/88552?from_cn_redirect=1).
|
|
304
|
+
Initiating a mixed stream push task may incur the following fees:.
|
|
305
|
+
For MCU mix transcoding fees, refer to the documentation: On-Cloud MixTranscoding billing (https://www.tencentcloud.comom/document/product/647/49446?from_cn_redirect=1).
|
|
306
|
+
For forwarding expenses of non-Tencent Cloud CDN, refer to the documentation: [Cloud-based forwarding billing explanation](https://www.tencentcloud.comom/document/product/647/82155?from_cn_redirect=1).
|
|
310
307
|
* @param {StartPublishCdnStreamRequest} req
|
|
311
308
|
* @param {function(string, StartPublishCdnStreamResponse):void} cb
|
|
312
309
|
* @public
|
|
@@ -478,7 +475,8 @@ Note: For details about how to use this API, see the `StartPublishCdnStream` doc
|
|
|
478
475
|
}
|
|
479
476
|
|
|
480
477
|
/**
|
|
481
|
-
* This
|
|
478
|
+
* This API is used to trigger a page recording task. Specify parameters such as the recording URL, recording resolution, and recording result storage in the API parameter.
|
|
479
|
+
Because parameter or API logic issues will return immediate results. For page issues such as page unreachable, results will be returned in the callback, stay tuned.
|
|
482
480
|
* @param {StartWebRecordRequest} req
|
|
483
481
|
* @param {function(string, StartWebRecordResponse):void} cb
|
|
484
482
|
* @public
|
|
@@ -557,7 +555,7 @@ Note:
|
|
|
557
555
|
/**
|
|
558
556
|
* API description:.
|
|
559
557
|
Start on-cloud recording to complete audio and video recording in the room and upload to designated cloud storage. This API is used to record each audio and video stream in the TRTC room separately or merge multiple video images into one stream.
|
|
560
|
-
Before official online operation, pay attention to the recording best practices (https://www.tencentcloud.
|
|
558
|
+
Before official online operation, pay attention to the recording best practices (https://www.tencentcloud.comom/document/product/647/76497?from_cn_redirect=1#e7e2f04c-6cde-43c9-9cd0-0f8d22dee68c). In conjunction with best practices, it can greatly improve API recording availability.
|
|
561
559
|
|
|
562
560
|
This API is used to achieve the following goals:.
|
|
563
561
|
Specify the subscription stream parameter (RecordParams) to specify the blocklist or allowlist of anchors that need to be recorded.
|