tencentcloud-sdk-nodejs-essbasic 4.0.521 → 4.0.522

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.
@@ -113,27 +113,28 @@ export interface DescribeFlowDetailInfoRequest {
113
113
  FlowGroupId?: string;
114
114
  }
115
115
  /**
116
- * UploadFiles请求参数结构体
116
+ * ModifyExtendedService请求参数结构体
117
117
  */
118
- export interface UploadFilesRequest {
118
+ export interface ModifyExtendedServiceRequest {
119
119
  /**
120
- * 应用相关信息,若是渠道版调用 appidproxyappid 必填
120
+ * 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId Agent.ProxyAppId 均必填
121
121
  */
122
122
  Agent: Agent;
123
123
  /**
124
- * 文件对应业务类型
125
- 1. TEMPLATE - 模板; 文件类型:.pdf/.doc/.docx/.html
126
- 2. DOCUMENT - 签署过程及签署后的合同文档/图片控件 文件类型:.pdf/.doc/.docx/.jpg/.png/.xls.xlsx/.html
124
+ * 扩展服务类型
125
+ AUTO_SIGN 企业静默签(自动签署)
126
+ OVERSEA_SIGN 企业与港澳台居民*签署合同
127
+ MOBILE_CHECK_APPROVER 使用手机号验证签署方身份
128
+ PAGING_SEAL 骑缝章
129
+ DOWNLOAD_FLOW 授权渠道下载合同
127
130
  */
128
- BusinessType: string;
131
+ ServiceType: string;
129
132
  /**
130
- * 上传文件内容数组,最多支持20个文件
131
- */
132
- FileInfos?: Array<UploadFile>;
133
- /**
134
- * 操作者的信息
135
- */
136
- Operator?: UserInfo;
133
+ * 操作类型
134
+ OPEN:开通
135
+ CLOSE:关闭
136
+ */
137
+ Operate: string;
137
138
  }
138
139
  /**
139
140
  * DescribeResourceUrlsByFlows请求参数结构体
@@ -1100,6 +1101,29 @@ export interface ChannelCancelMultiFlowSignQRCodeRequest {
1100
1101
  */
1101
1102
  Operator?: UserInfo;
1102
1103
  }
1104
+ /**
1105
+ * UploadFiles请求参数结构体
1106
+ */
1107
+ export interface UploadFilesRequest {
1108
+ /**
1109
+ * 应用相关信息,若是渠道版调用 appid 和proxyappid 必填
1110
+ */
1111
+ Agent: Agent;
1112
+ /**
1113
+ * 文件对应业务类型
1114
+ 1. TEMPLATE - 模板; 文件类型:.pdf/.doc/.docx/.html
1115
+ 2. DOCUMENT - 签署过程及签署后的合同文档/图片控件 文件类型:.pdf/.doc/.docx/.jpg/.png/.xls.xlsx/.html
1116
+ */
1117
+ BusinessType: string;
1118
+ /**
1119
+ * 上传文件内容数组,最多支持20个文件
1120
+ */
1121
+ FileInfos?: Array<UploadFile>;
1122
+ /**
1123
+ * 操作者的信息
1124
+ */
1125
+ Operator?: UserInfo;
1126
+ }
1103
1127
  /**
1104
1128
  * ChannelDescribeOrganizationSeals请求参数结构体
1105
1129
  */
@@ -1153,6 +1177,15 @@ export interface ProxyOrganizationOperator {
1153
1177
  */
1154
1178
  Mobile?: string;
1155
1179
  }
1180
+ /**
1181
+ * DescribeExtendedServiceAuthInfo请求参数结构体
1182
+ */
1183
+ export interface DescribeExtendedServiceAuthInfoRequest {
1184
+ /**
1185
+ * 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
1186
+ */
1187
+ Agent: Agent;
1188
+ }
1156
1189
  /**
1157
1190
  * 此结构 (FormField) 用于描述内容控件填充结构。
1158
1191
 
@@ -1704,76 +1737,45 @@ export interface ChannelGetTaskResultApiRequest {
1704
1737
  Organization?: OrganizationInfo;
1705
1738
  }
1706
1739
  /**
1707
- * 签署链接内容
1740
+ * 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
1708
1741
  */
1709
- export interface SignUrlInfo {
1710
- /**
1711
- * 签署链接,过期时间为30天
1712
- 注意:此字段可能返回 null,表示取不到有效值。
1713
- */
1714
- SignUrl: string;
1715
- /**
1716
- * 合同过期时间
1717
- 注意:此字段可能返回 null,表示取不到有效值。
1718
- */
1719
- Deadline: number;
1720
- /**
1721
- * 当流程为顺序签署此参数有效时,数字越小优先级越高,暂不支持并行签署 可选
1722
- 注意:此字段可能返回 null,表示取不到有效值。
1723
- */
1724
- SignOrder: number;
1725
- /**
1726
- * 签署人编号
1727
- 注意:此字段可能返回 null,表示取不到有效值。
1728
- */
1729
- SignId: string;
1742
+ export interface FlowDetailInfo {
1730
1743
  /**
1731
- * 自定义用户编号
1732
- 注意:此字段可能返回 null,表示取不到有效值。
1733
- */
1734
- CustomUserId: string;
1744
+ * 合同(流程)的Id
1745
+ */
1746
+ FlowId: string;
1735
1747
  /**
1736
- * 用户姓名
1737
- 注意:此字段可能返回 null,表示取不到有效值。
1738
- */
1739
- Name: string;
1748
+ * 合同(流程)的名字
1749
+ */
1750
+ FlowName: string;
1740
1751
  /**
1741
- * 用户手机号码
1742
- 注意:此字段可能返回 null,表示取不到有效值。
1743
- */
1744
- Mobile: string;
1752
+ * 合同(流程)的类型
1753
+ */
1754
+ FlowType: string;
1745
1755
  /**
1746
- * 签署参与者机构名字
1747
- 注意:此字段可能返回 null,表示取不到有效值。
1748
- */
1749
- OrganizationName: string;
1756
+ * 合同(流程)的状态
1757
+ */
1758
+ FlowStatus: string;
1750
1759
  /**
1751
- * 参与者类型:
1752
- ORGANIZATION 企业经办人
1753
- PERSON 自然人
1754
- 注意:此字段可能返回 null,表示取不到有效值。
1755
- */
1756
- ApproverType: string;
1760
+ * 合同(流程)的信息
1761
+ */
1762
+ FlowMessage: string;
1757
1763
  /**
1758
- * 经办人身份证号
1759
- 注意:此字段可能返回 null,表示取不到有效值。
1760
- */
1761
- IdCardNumber: string;
1764
+ * 合同(流程)的创建时间戳
1765
+ */
1766
+ CreateOn: number;
1762
1767
  /**
1763
- * 签署链接对应流程Id
1764
- 注意:此字段可能返回 null,表示取不到有效值。
1765
- */
1766
- FlowId: string;
1768
+ * 合同(流程)的签署截止时间戳
1769
+ */
1770
+ DeadLine: number;
1767
1771
  /**
1768
- * 企业经办人 用户在渠道的编号
1769
- 注意:此字段可能返回 null,表示取不到有效值。
1770
- */
1771
- OpenId: string;
1772
+ * 用户自定义数据
1773
+ */
1774
+ CustomData: string;
1772
1775
  /**
1773
- * 合同组签署链接对应的合同组id
1774
- 注意:此字段可能返回 null,表示取不到有效值。
1775
- */
1776
- FlowGroupId: string;
1776
+ * 合同(流程)的签署人数组
1777
+ */
1778
+ FlowApproverInfos: Array<FlowApproverDetail>;
1777
1779
  }
1778
1780
  /**
1779
1781
  * CreateFlowsByTemplates返回参数结构体
@@ -1869,45 +1871,76 @@ export interface SyncProxyOrganizationOperatorsResponse {
1869
1871
  RequestId?: string;
1870
1872
  }
1871
1873
  /**
1872
- * 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
1874
+ * 签署链接内容
1873
1875
  */
1874
- export interface FlowDetailInfo {
1876
+ export interface SignUrlInfo {
1875
1877
  /**
1876
- * 合同(流程)的Id
1877
- */
1878
- FlowId: string;
1878
+ * 签署链接,过期时间为30天
1879
+ 注意:此字段可能返回 null,表示取不到有效值。
1880
+ */
1881
+ SignUrl: string;
1879
1882
  /**
1880
- * 合同(流程)的名字
1881
- */
1882
- FlowName: string;
1883
+ * 合同过期时间
1884
+ 注意:此字段可能返回 null,表示取不到有效值。
1885
+ */
1886
+ Deadline: number;
1883
1887
  /**
1884
- * 合同(流程)的类型
1885
- */
1886
- FlowType: string;
1888
+ * 当流程为顺序签署此参数有效时,数字越小优先级越高,暂不支持并行签署 可选
1889
+ 注意:此字段可能返回 null,表示取不到有效值。
1890
+ */
1891
+ SignOrder: number;
1887
1892
  /**
1888
- * 合同(流程)的状态
1889
- */
1890
- FlowStatus: string;
1893
+ * 签署人编号
1894
+ 注意:此字段可能返回 null,表示取不到有效值。
1895
+ */
1896
+ SignId: string;
1891
1897
  /**
1892
- * 合同(流程)的信息
1893
- */
1894
- FlowMessage: string;
1898
+ * 自定义用户编号
1899
+ 注意:此字段可能返回 null,表示取不到有效值。
1900
+ */
1901
+ CustomUserId: string;
1895
1902
  /**
1896
- * 合同(流程)的创建时间戳
1897
- */
1898
- CreateOn: number;
1903
+ * 用户姓名
1904
+ 注意:此字段可能返回 null,表示取不到有效值。
1905
+ */
1906
+ Name: string;
1899
1907
  /**
1900
- * 合同(流程)的签署截止时间戳
1901
- */
1902
- DeadLine: number;
1908
+ * 用户手机号码
1909
+ 注意:此字段可能返回 null,表示取不到有效值。
1910
+ */
1911
+ Mobile: string;
1903
1912
  /**
1904
- * 用户自定义数据
1905
- */
1906
- CustomData: string;
1913
+ * 签署参与者机构名字
1914
+ 注意:此字段可能返回 null,表示取不到有效值。
1915
+ */
1916
+ OrganizationName: string;
1907
1917
  /**
1908
- * 合同(流程)的签署人数组
1909
- */
1910
- FlowApproverInfos: Array<FlowApproverDetail>;
1918
+ * 参与者类型:
1919
+ ORGANIZATION 企业经办人
1920
+ PERSON 自然人
1921
+ 注意:此字段可能返回 null,表示取不到有效值。
1922
+ */
1923
+ ApproverType: string;
1924
+ /**
1925
+ * 经办人身份证号
1926
+ 注意:此字段可能返回 null,表示取不到有效值。
1927
+ */
1928
+ IdCardNumber: string;
1929
+ /**
1930
+ * 签署链接对应流程Id
1931
+ 注意:此字段可能返回 null,表示取不到有效值。
1932
+ */
1933
+ FlowId: string;
1934
+ /**
1935
+ * 企业经办人 用户在渠道的编号
1936
+ 注意:此字段可能返回 null,表示取不到有效值。
1937
+ */
1938
+ OpenId: string;
1939
+ /**
1940
+ * 合同组签署链接对应的合同组id
1941
+ 注意:此字段可能返回 null,表示取不到有效值。
1942
+ */
1943
+ FlowGroupId: string;
1911
1944
  }
1912
1945
  /**
1913
1946
  * 流程对应资源链接信息
@@ -1937,6 +1970,40 @@ export interface UploadFile {
1937
1970
  */
1938
1971
  FileName?: string;
1939
1972
  }
1973
+ /**
1974
+ * 企业扩展服务授权信息
1975
+ */
1976
+ export interface ExtentServiceAuthInfo {
1977
+ /**
1978
+ * 扩展服务类型
1979
+ AUTO_SIGN 企业静默签(自动签署)
1980
+ OVERSEA_SIGN 企业与港澳台居民*签署合同
1981
+ MOBILE_CHECK_APPROVER 使用手机号验证签署方身份
1982
+ PAGING_SEAL 骑缝章
1983
+ DOWNLOAD_FLOW 授权渠道下载合同
1984
+ */
1985
+ Type?: string;
1986
+ /**
1987
+ * 扩展服务名称
1988
+ */
1989
+ Name?: string;
1990
+ /**
1991
+ * 服务状态
1992
+ ENABLE 开启
1993
+ DISABLE 关闭
1994
+ */
1995
+ Status?: string;
1996
+ /**
1997
+ * 最近操作人openid(经办人openid)
1998
+ 注意:此字段可能返回 null,表示取不到有效值。
1999
+ */
2000
+ OperatorOpenId?: string;
2001
+ /**
2002
+ * 最近操作时间
2003
+ 注意:此字段可能返回 null,表示取不到有效值。
2004
+ */
2005
+ OperateOn?: number;
2006
+ }
1940
2007
  /**
1941
2008
  * 此结构体 (Filter) 用于描述查询过滤条件。
1942
2009
  */
@@ -2268,6 +2335,22 @@ export interface ChannelCreateBoundFlowsResponse {
2268
2335
  */
2269
2336
  RequestId?: string;
2270
2337
  }
2338
+ /**
2339
+ * ModifyExtendedService返回参数结构体
2340
+ */
2341
+ export interface ModifyExtendedServiceResponse {
2342
+ /**
2343
+ * 操作跳转链接,有效期24小时
2344
+ 仅当操作类型是 OPEN 且 扩展服务类型是 AUTO_SIGN 或 DOWNLOAD_FLOW 或者 OVERSEA_SIGN 时返回 ,此时需要经办人(操作人)点击链接完成服务开通操作。若开通操作时没有返回跳转链接,表示无需跳转操作,此时会直接开通服务
2345
+
2346
+ 操作类型是CLOSE时,不会返回此链接,会直接关闭企业该扩展服务
2347
+ */
2348
+ OperateUrl?: string;
2349
+ /**
2350
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2351
+ */
2352
+ RequestId?: string;
2353
+ }
2271
2354
  /**
2272
2355
  * ChannelGetTaskResultApi返回参数结构体
2273
2356
  */
@@ -2310,6 +2393,20 @@ export interface ChannelGetTaskResultApiResponse {
2310
2393
  */
2311
2394
  RequestId?: string;
2312
2395
  }
2396
+ /**
2397
+ * DescribeExtendedServiceAuthInfo返回参数结构体
2398
+ */
2399
+ export interface DescribeExtendedServiceAuthInfoResponse {
2400
+ /**
2401
+ * 企业扩展服务授权信息
2402
+ 注意:此字段可能返回 null,表示取不到有效值。
2403
+ */
2404
+ AuthInfo?: Array<ExtentServiceAuthInfo>;
2405
+ /**
2406
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2407
+ */
2408
+ RequestId?: string;
2409
+ }
2313
2410
  /**
2314
2411
  * 此结构体 (Component) 用于描述控件属性。
2315
2412