tencentcloud-sdk-nodejs-essbasic 4.0.532 → 4.0.534

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.
@@ -33,6 +33,31 @@ export interface ChannelCreateFlowRemindsResponse {
33
33
  */
34
34
  RequestId?: string;
35
35
  }
36
+ /**
37
+ * ChannelDeleteSealPolicies请求参数结构体
38
+ */
39
+ export interface ChannelDeleteSealPoliciesRequest {
40
+ /**
41
+ * 渠道信息
42
+ */
43
+ Agent: Agent;
44
+ /**
45
+ * 指定印章ID
46
+ */
47
+ SealId: string;
48
+ /**
49
+ * 指定用户ID数组
50
+ */
51
+ UserIds: Array<string>;
52
+ /**
53
+ * 操作人(用户)信息
54
+ */
55
+ Operator?: UserInfo;
56
+ /**
57
+ * 组织机构信息
58
+ */
59
+ Organization?: OrganizationInfo;
60
+ }
36
61
  /**
37
62
  * ChannelBatchCancelFlows返回参数结构体
38
63
  */
@@ -390,6 +415,19 @@ export interface ChannelCreateFlowRemindsRequest {
390
415
  */
391
416
  FlowIds: Array<string>;
392
417
  }
418
+ /**
419
+ * ChannelCreateSealPolicy返回参数结构体
420
+ */
421
+ export interface ChannelCreateSealPolicyResponse {
422
+ /**
423
+ * 最终授权成功的用户ID数组。其他的跳过的是已经授权了的
424
+ */
425
+ UserIds?: Array<string>;
426
+ /**
427
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
428
+ */
429
+ RequestId?: string;
430
+ }
393
431
  /**
394
432
  * ChannelCancelFlow返回参数结构体
395
433
  */
@@ -1919,21 +1957,17 @@ export interface CreateFlowsByTemplatesResponse {
1919
1957
  RequestId?: string;
1920
1958
  }
1921
1959
  /**
1922
- * PrepareFlows请求参数结构体
1960
+ * DescribeChannelFlowEvidenceReport请求参数结构体
1923
1961
  */
1924
- export interface PrepareFlowsRequest {
1962
+ export interface DescribeChannelFlowEvidenceReportRequest {
1925
1963
  /**
1926
- * 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
1964
+ * 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
1927
1965
  */
1928
1966
  Agent: Agent;
1929
1967
  /**
1930
- * 多个合同(签署流程)信息,最大支持20个签署流程。
1931
- */
1932
- FlowInfos: Array<FlowInfo>;
1933
- /**
1934
- * 操作完成后的跳转地址,最大长度200
1968
+ * 出证报告编号
1935
1969
  */
1936
- JumpUrl: string;
1970
+ ReportId: string;
1937
1971
  /**
1938
1972
  * 操作者的信息
1939
1973
  */
@@ -2237,17 +2271,21 @@ export interface ApproverRestriction {
2237
2271
  IdCardNumber?: string;
2238
2272
  }
2239
2273
  /**
2240
- * DescribeChannelFlowEvidenceReport请求参数结构体
2274
+ * PrepareFlows请求参数结构体
2241
2275
  */
2242
- export interface DescribeChannelFlowEvidenceReportRequest {
2276
+ export interface PrepareFlowsRequest {
2243
2277
  /**
2244
- * 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填
2278
+ * 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
2245
2279
  */
2246
2280
  Agent: Agent;
2247
2281
  /**
2248
- * 出证报告编号
2282
+ * 多个合同(签署流程)信息,最大支持20个签署流程。
2249
2283
  */
2250
- ReportId: string;
2284
+ FlowInfos: Array<FlowInfo>;
2285
+ /**
2286
+ * 操作完成后的跳转地址,最大长度200
2287
+ */
2288
+ JumpUrl: string;
2251
2289
  /**
2252
2290
  * 操作者的信息
2253
2291
  */
@@ -2477,14 +2515,9 @@ export interface ChannelGetTaskResultApiResponse {
2477
2515
  RequestId?: string;
2478
2516
  }
2479
2517
  /**
2480
- * DescribeExtendedServiceAuthInfo返回参数结构体
2518
+ * ChannelDeleteSealPolicies返回参数结构体
2481
2519
  */
2482
- export interface DescribeExtendedServiceAuthInfoResponse {
2483
- /**
2484
- * 企业扩展服务授权信息
2485
- 注意:此字段可能返回 null,表示取不到有效值。
2486
- */
2487
- AuthInfo?: Array<ExtentServiceAuthInfo>;
2520
+ export interface ChannelDeleteSealPoliciesResponse {
2488
2521
  /**
2489
2522
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2490
2523
  */
@@ -2874,6 +2907,31 @@ export interface DescribeTemplatesRequest {
2874
2907
  */
2875
2908
  ChannelTemplateId?: string;
2876
2909
  }
2910
+ /**
2911
+ * ChannelCreateSealPolicy请求参数结构体
2912
+ */
2913
+ export interface ChannelCreateSealPolicyRequest {
2914
+ /**
2915
+ * 用户渠道信息
2916
+ */
2917
+ Agent: Agent;
2918
+ /**
2919
+ * 指定印章
2920
+ */
2921
+ SealId: string;
2922
+ /**
2923
+ * 指定待授权的用户ID数组
2924
+ */
2925
+ UserIds: Array<string>;
2926
+ /**
2927
+ * 企业机构信息
2928
+ */
2929
+ Organization?: OrganizationInfo;
2930
+ /**
2931
+ * 操作人(用户)信息
2932
+ */
2933
+ Operator?: UserInfo;
2934
+ }
2877
2935
  /**
2878
2936
  * 持有的电子印章信息
2879
2937
  */
@@ -3159,6 +3217,20 @@ export interface ChannelCreateFlowSignUrlRequest {
3159
3217
  */
3160
3218
  Organization?: OrganizationInfo;
3161
3219
  }
3220
+ /**
3221
+ * DescribeExtendedServiceAuthInfo返回参数结构体
3222
+ */
3223
+ export interface DescribeExtendedServiceAuthInfoResponse {
3224
+ /**
3225
+ * 企业扩展服务授权信息
3226
+ 注意:此字段可能返回 null,表示取不到有效值。
3227
+ */
3228
+ AuthInfo?: Array<ExtentServiceAuthInfo>;
3229
+ /**
3230
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3231
+ */
3232
+ RequestId?: string;
3233
+ }
3162
3234
  /**
3163
3235
  * 抄送信息
3164
3236
  */