tencentcloud-sdk-nodejs-lke 4.1.147 → 4.1.149

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.147",
3
+ "version": "4.1.149",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2174,6 +2174,10 @@ export interface DescribeWorkflowRunResponse {
2174
2174
  * 节点列表
2175
2175
  */
2176
2176
  NodeRuns?: Array<NodeRunBase>;
2177
+ /**
2178
+ * 子工作流对应的NodePath
2179
+ */
2180
+ SubWorkflowNodePath?: string;
2177
2181
  /**
2178
2182
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2179
2183
  */
@@ -4913,6 +4917,23 @@ export interface DescribeWorkflowRunRequest {
4913
4917
  * 工作流运行实例ID
4914
4918
  */
4915
4919
  WorkflowRunId: string;
4920
+ /**
4921
+ * 指定的子工作流对应的NodePath。
4922
+ 格式:`[<node_id>[<index>].]*<node_id>[<index>]`
4923
+ - 此路径用于定位一个具体的工作流实例(Workflow Run),可以是主工作流实例或某个子工作流节点产生的子实例。
4924
+ - 路径由点号(.)分隔的节点标识符组成,每个节点标识符格式为 `节点ID[实例索引]`。
4925
+ - **节点ID (node_id)**:子工作流所属的节点的ID。
4926
+ - **实例索引 (index)**:“实例索引” 在工作流节点的时候为空,循环、批处理节点非空,从1开始。
4927
+ 示例:
4928
+ - "" 或 不设置 -> 查询主工作流实例 (父工作流)
4929
+ - "node_id_a" -> 查询由主工作流中工作流节点`node_id_a`对应的子工作流实例
4930
+ - "node_id_a.node_id_b[1]" -> 查询工作流节点`node_id_a`对应的子工作流的循环节点node_id_b的第1轮循环的子工作流运行状态
4931
+ */
4932
+ SubWorkflowNodePath?: string;
4933
+ /**
4934
+ * 是否需要返回工作流的流程图配置
4935
+ */
4936
+ IncludeWorkflowGraph?: boolean;
4916
4937
  }
4917
4938
  /**
4918
4939
  * DescribeUnsatisfiedReplyContext请求参数结构体
@@ -9367,6 +9388,7 @@ export interface WorkflowRunDetail {
9367
9388
  EndTime?: string;
9368
9389
  /**
9369
9390
  * 工作流画布Json
9391
+ * @deprecated
9370
9392
  */
9371
9393
  DialogJson?: string;
9372
9394
  /**
@@ -9381,6 +9403,10 @@ export interface WorkflowRunDetail {
9381
9403
  * API参数配置
9382
9404
  */
9383
9405
  CustomVariables?: Array<CustomVariable>;
9406
+ /**
9407
+ * 工作流的流程图
9408
+ */
9409
+ WorkflowGraph?: string;
9384
9410
  }
9385
9411
  /**
9386
9412
  * 知识库详情信息