tencentcloud-sdk-nodejs-lke 4.1.41 → 4.1.42

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-lke",
3
- "version": "4.1.41",
3
+ "version": "4.1.42",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -7073,17 +7073,13 @@ export interface GetMsgRecordRequest {
7073
7073
  */
7074
7074
  Type: number;
7075
7075
  /**
7076
- * 数量, 数量需大于2
7076
+ * 数量, 数量需大于2, 最大1000
7077
7077
  */
7078
7078
  Count: number;
7079
7079
  /**
7080
7080
  * 会话sessionid
7081
7081
  */
7082
7082
  SessionId: string;
7083
- /**
7084
- * 最后一条记录ID
7085
- */
7086
- LastRecordId?: string;
7087
7083
  /**
7088
7084
  * 应用AppKey, 当Type=5[API访客]时, 该字段必填 :</br> 获取方式:</br> 1、应用发布后在应用页面[发布管理]-[调用信息]-[API管理]处获取</br> 2、参考 https://cloud.tencent.com/document/product/1759/109469 第二项
7089
7085
  */
@@ -7092,8 +7088,18 @@ export interface GetMsgRecordRequest {
7092
7088
  * 场景, 体验: 1; 正式: 2
7093
7089
  */
7094
7090
  Scene?: number;
7091
+ /**
7092
+ * 最后一条记录ID, 消息从后往前获取
7093
+
7094
+ MidRecordId与LastRecordId只能选择一个
7095
+
7096
+ */
7097
+ LastRecordId?: string;
7095
7098
  /**
7096
7099
  * 传该值,代表拉取该记录id的前后总共count条消息记录
7100
+
7101
+ MidRecordId与LastRecordId只能选择一个
7102
+
7097
7103
  */
7098
7104
  MidRecordId?: string;
7099
7105
  }