tencentcloud-sdk-nodejs-es 4.1.51 → 4.1.61

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-es",
3
- "version": "4.1.51",
3
+ "version": "4.1.61",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -159,6 +159,16 @@ export interface Usage {
159
159
  */
160
160
  TotalTokens?: number;
161
161
  }
162
+ /**
163
+ * 文档解析配置
164
+ */
165
+ export interface DocumentParseConfig {
166
+ /**
167
+ * 0:图片以链接形式返回
168
+ 1:返回图片中提取的文本内容
169
+ */
170
+ ImageResponseType?: number;
171
+ }
162
172
  /**
163
173
  * ParseDocument返回参数结构体
164
174
  */
@@ -388,6 +398,18 @@ export interface ParseDocument {
388
398
  支持的图片像素:单边介于20-10000px之间。
389
399
  */
390
400
  FileContent?: string;
401
+ /**
402
+ * 文档解析配置
403
+ */
404
+ DocumentParseConfig?: DocumentParseConfig;
405
+ /**
406
+ * 文档的起始页码
407
+ */
408
+ FileStartPageNumber?: number;
409
+ /**
410
+ * 文档的结束页码
411
+ */
412
+ FileEndPageNumber?: number;
391
413
  }
392
414
  /**
393
415
  * GetDocumentChunkResult返回参数结构体