tencentcloud-sdk-nodejs 4.0.774 → 4.0.775

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.
@@ -6967,112 +6967,113 @@ export interface PatientInfo {
6967
6967
  * 患者姓名
6968
6968
  注意:此字段可能返回 null,表示取不到有效值。
6969
6969
  */
6970
- Name: string
6970
+ Name?: string
6971
6971
  /**
6972
6972
  * 患者性别
6973
6973
  注意:此字段可能返回 null,表示取不到有效值。
6974
6974
  */
6975
- Sex: string
6975
+ Sex?: string
6976
6976
  /**
6977
6977
  * 患者年龄
6978
6978
  注意:此字段可能返回 null,表示取不到有效值。
6979
6979
  */
6980
- Age: string
6980
+ Age?: string
6981
6981
  /**
6982
6982
  * 患者手机号码
6983
6983
  注意:此字段可能返回 null,表示取不到有效值。
6984
6984
  */
6985
- Phone: string
6985
+ Phone?: string
6986
6986
  /**
6987
6987
  * 患者地址
6988
6988
  注意:此字段可能返回 null,表示取不到有效值。
6989
6989
  */
6990
- Address: string
6990
+ Address?: string
6991
6991
  /**
6992
6992
  * 患者身份证
6993
6993
  注意:此字段可能返回 null,表示取不到有效值。
6994
6994
  */
6995
- IdCard: string
6995
+ IdCard?: string
6996
6996
  /**
6997
6997
  * 健康卡号
6998
6998
  注意:此字段可能返回 null,表示取不到有效值。
6999
6999
  */
7000
- HealthCardNo: string
7000
+ HealthCardNo?: string
7001
7001
  /**
7002
7002
  * 社保卡号
7003
7003
  注意:此字段可能返回 null,表示取不到有效值。
7004
7004
  */
7005
- SocialSecurityCardNo: string
7005
+ SocialSecurityCardNo?: string
7006
7006
  /**
7007
7007
  * 出生日期
7008
7008
  注意:此字段可能返回 null,表示取不到有效值。
7009
7009
  */
7010
- Birthday: string
7010
+ Birthday?: string
7011
7011
  /**
7012
7012
  * 民族
7013
7013
  注意:此字段可能返回 null,表示取不到有效值。
7014
7014
  */
7015
- Ethnicity: string
7015
+ Ethnicity?: string
7016
7016
  /**
7017
7017
  * 婚姻状况
7018
7018
  注意:此字段可能返回 null,表示取不到有效值。
7019
7019
  */
7020
- Married: string
7020
+ Married?: string
7021
7021
  /**
7022
7022
  * 职业
7023
7023
  注意:此字段可能返回 null,表示取不到有效值。
7024
7024
  */
7025
- Profession: string
7025
+ Profession?: string
7026
7026
  /**
7027
7027
  * 教育程度
7028
7028
  注意:此字段可能返回 null,表示取不到有效值。
7029
7029
  */
7030
- EducationBackground: string
7030
+ EducationBackground?: string
7031
7031
  /**
7032
7032
  * 国籍
7033
7033
  注意:此字段可能返回 null,表示取不到有效值。
7034
7034
  */
7035
- Nationality: string
7035
+ Nationality?: string
7036
7036
  /**
7037
7037
  * 籍贯
7038
7038
  注意:此字段可能返回 null,表示取不到有效值。
7039
7039
  */
7040
- BirthPlace: string
7040
+ BirthPlace?: string
7041
7041
  /**
7042
7042
  * 医保类型
7043
7043
  注意:此字段可能返回 null,表示取不到有效值。
7044
7044
  */
7045
- MedicalInsuranceType: string
7045
+ MedicalInsuranceType?: string
7046
7046
  /**
7047
7047
  * 标准化年龄
7048
7048
  注意:此字段可能返回 null,表示取不到有效值。
7049
7049
  */
7050
- AgeNorm: string
7050
+ AgeNorm?: string
7051
7051
  /**
7052
- * 民族
7052
+ * 民族。该字段已不再使用,请从Ethnicity取值
7053
7053
  注意:此字段可能返回 null,表示取不到有效值。
7054
+ * @deprecated
7054
7055
  */
7055
- Nation: string
7056
+ Nation?: string
7056
7057
  /**
7057
7058
  * 婚姻代码
7058
7059
  注意:此字段可能返回 null,表示取不到有效值。
7059
7060
  */
7060
- MarriedCode: string
7061
+ MarriedCode?: string
7061
7062
  /**
7062
7063
  * 职业代码
7063
7064
  注意:此字段可能返回 null,表示取不到有效值。
7064
7065
  */
7065
- ProfessionCode: string
7066
+ ProfessionCode?: string
7066
7067
  /**
7067
7068
  * 居民医保代码
7068
7069
  注意:此字段可能返回 null,表示取不到有效值。
7069
7070
  */
7070
- MedicalInsuranceTypeCode: string
7071
+ MedicalInsuranceTypeCode?: string
7071
7072
  /**
7072
7073
  * 床号
7073
7074
  注意:此字段可能返回 null,表示取不到有效值。
7074
7075
  */
7075
- BedNo: string
7076
+ BedNo?: string
7076
7077
  }
7077
7078
 
7078
7079
  /**
@@ -228,6 +228,8 @@ export interface DescribeRegisterInstancesRequest {
228
228
  按照【操作系统类型】进行过滤,取值:Linux | Windows。
229
229
  类型:String
230
230
  必选:否
231
+
232
+
231
233
  */
232
234
  Filters?: Array<Filter>
233
235
  /**
@@ -22,11 +22,11 @@ export interface CreatePlanForZoneResponse {
22
22
  /**
23
23
  * 购买的资源名字列表。
24
24
  */
25
- ResourceNames: Array<string>
25
+ ResourceNames?: Array<string>
26
26
  /**
27
27
  * 购买的订单号列表。
28
28
  */
29
- DealNames: Array<string>
29
+ DealNames?: Array<string>
30
30
  /**
31
31
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
32
32
  */
@@ -2754,27 +2754,27 @@ export interface RateLimitTemplateDetail {
2754
2754
  /**
2755
2755
  * 唯一id。
2756
2756
  */
2757
- ID?: number
2757
+ ID: number
2758
2758
  /**
2759
2759
  * 模板处置方式,取值有:
2760
2760
  <li>alg:JavaScript挑战;</li>
2761
2761
  <li>monitor:观察。</li>
2762
2762
  注意:此字段可能返回 null,表示取不到有效值。
2763
2763
  */
2764
- Action?: string
2764
+ Action: string
2765
2765
  /**
2766
2766
  * 惩罚时间,取值范围0-2天,单位秒。
2767
2767
  注意:此字段可能返回 null,表示取不到有效值。
2768
2768
  */
2769
- PunishTime?: number
2769
+ PunishTime: number
2770
2770
  /**
2771
2771
  * 统计阈值,单位是次,取值范围0-4294967294。
2772
2772
  */
2773
- Threshold?: number
2773
+ Threshold: number
2774
2774
  /**
2775
2775
  * 统计周期,取值范围0-120秒。
2776
2776
  */
2777
- Period?: number
2777
+ Period: number
2778
2778
  }
2779
2779
 
2780
2780
  /**
@@ -3547,42 +3547,42 @@ export interface WafRule {
3547
3547
  */
3548
3548
  export interface SecurityConfig {
3549
3549
  /**
3550
- * 托管规则。如果为null,默认使用历史配置。
3550
+ * 托管规则。如果入参为空或不填,默认使用历史配置。
3551
3551
  注意:此字段可能返回 null,表示取不到有效值。
3552
3552
  */
3553
3553
  WafConfig?: WafConfig
3554
3554
  /**
3555
- * 速率限制。如果为null,默认使用历史配置。
3555
+ * 速率限制。如果入参为空或不填,默认使用历史配置。
3556
3556
  注意:此字段可能返回 null,表示取不到有效值。
3557
3557
  */
3558
3558
  RateLimitConfig?: RateLimitConfig
3559
3559
  /**
3560
- * 自定义规则。如果为null,默认使用历史配置。
3560
+ * 自定义规则。如果入参为空或不填,默认使用历史配置。
3561
3561
  注意:此字段可能返回 null,表示取不到有效值。
3562
3562
  */
3563
3563
  AclConfig?: AclConfig
3564
3564
  /**
3565
- * Bot配置。如果为null,默认使用历史配置。
3565
+ * Bot配置。如果入参为空或不填,默认使用历史配置。
3566
3566
  注意:此字段可能返回 null,表示取不到有效值。
3567
3567
  */
3568
3568
  BotConfig?: BotConfig
3569
3569
  /**
3570
- * 七层防护总开关。如果为null,默认使用历史配置。
3570
+ * 七层防护总开关。如果入参为空或不填,默认使用历史配置。
3571
3571
  注意:此字段可能返回 null,表示取不到有效值。
3572
3572
  */
3573
3573
  SwitchConfig?: SwitchConfig
3574
3574
  /**
3575
- * 基础访问管控。如果为null,默认使用历史配置。
3575
+ * 基础访问管控。如果入参为空或不填,默认使用历史配置。
3576
3576
  注意:此字段可能返回 null,表示取不到有效值。
3577
3577
  */
3578
3578
  IpTableConfig?: IpTableConfig
3579
3579
  /**
3580
- * 例外规则配置。如果为null,默认使用历史配置。
3580
+ * 例外规则配置。如果入参为空或不填,默认使用历史配置。
3581
3581
  注意:此字段可能返回 null,表示取不到有效值。
3582
3582
  */
3583
3583
  ExceptConfig?: ExceptConfig
3584
3584
  /**
3585
- * 自定义拦截页面配置。如果为null,默认使用历史配置。
3585
+ * 自定义拦截页面配置。如果入参为空或不填,默认使用历史配置。
3586
3586
  注意:此字段可能返回 null,表示取不到有效值。
3587
3587
  */
3588
3588
  DropPageConfig?: DropPageConfig
@@ -3592,7 +3592,7 @@ export interface SecurityConfig {
3592
3592
  */
3593
3593
  TemplateConfig?: TemplateConfig
3594
3594
  /**
3595
- * 慢速攻击配置。如果为null,默认使用历史配置。
3595
+ * 慢速攻击配置。如果入参为空或不填,默认使用历史配置。
3596
3596
  注意:此字段可能返回 null,表示取不到有效值。
3597
3597
  */
3598
3598
  SlowPostConfig?: SlowPostConfig
@@ -6984,11 +6984,11 @@ export interface CreatePurgeTaskRequest {
6984
6984
  */
6985
6985
  Type: string
6986
6986
  /**
6987
- * 节点缓存清除方法,针对目录刷新、Hostname刷新以及刷新全部缓存 类型有效,取值有:<li> invalidate:仅刷新目录下产生了更新的资源;</li><li> delete:无论目录下资源是否更新都刷新节点资源。</li>注意:使用目录刷新时,默认值: invalidate。
6987
+ * 节点缓存清除方法,针对目录刷新、Hostname刷新以及刷新全部缓存类型有效,取值有:<li> invalidate:仅刷新目录下产生了更新的资源;</li><li> delete:无论目录下资源是否更新都刷新节点资源。</li>默认值: invalidate。
6988
6988
  */
6989
6989
  Method?: string
6990
6990
  /**
6991
- * 要清除缓存的资源列表。每个元素格式依据清除缓存类型而定,可参考接口示例。<li>EO 默认针对内容含有非 ASCII 字符集的字符进行转义,编码规则遵循 RFC3986;</li><li>单次提交的任务数受计费套餐配额限制,请查看 [EO计费套餐](https://cloud.tencent.com/document/product/1552/77380)。</li>
6991
+ * 要清除缓存的资源列表。每个元素格式依据清除缓存类型而定,可参考接口示例。<li>单次提交的任务数受计费套餐配额限制,请查看 [EO计费套餐](https://cloud.tencent.com/document/product/1552/77380)。</li>
6992
6992
  */
6993
6993
  Targets?: Array<string>
6994
6994
  /**
@@ -413,8 +413,10 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
413
413
  }
414
414
 
415
415
  /**
416
- * 将一个在线媒体流推到TRTC房间。
417
- */
416
+ * 将一个在线媒体流推到TRTC房间。
417
+ 使用此接口的前提条件:需要购买 [尊享版或旗舰版套餐包](https://cloud.tencent.com/document/product/647/85386
418
+ )
419
+ */
418
420
  async StartStreamIngest(
419
421
  req: StartStreamIngestRequest,
420
422
  cb?: (error: string, rep: StartStreamIngestResponse) => void
@@ -1636,7 +1636,7 @@ export interface DescribeRelayUsageResponse {
1636
1636
  */
1637
1637
  export interface StartStreamIngestRequest {
1638
1638
  /**
1639
- * TRTC的[SdkAppId](https://cloud.tencent.com/document/product/647/46351#sdkappid),和录制的房间所对应的SdkAppId相同。
1639
+ * TRTC的[SdkAppId](https://cloud.tencent.com/document/product/647/46351#sdkappid),和TRTC的房间所对应的SdkAppId相同。
1640
1640
  */
1641
1641
  SdkAppId: number
1642
1642
  /**
@@ -1659,9 +1659,9 @@ export interface StartStreamIngestRequest {
1659
1659
  */
1660
1660
  UserSig: string
1661
1661
  /**
1662
- * 源流URL。示例值:https://a.b/test.mp4
1662
+ * 【本字段已废弃,请使用 StreamUrl 字段】源流URL,支持一个地址。
1663
1663
  */
1664
- SourceUrl: Array<string>
1664
+ SourceUrl?: Array<string>
1665
1665
  /**
1666
1666
  * TRTC房间权限加密串,只有在TRTC控制台启用了高级权限控制的时候需要携带,在TRTC控制台如果开启高级权限控制后,TRTC 的后台服务系统会校验一个叫做 [PrivateMapKey] 的“权限票据”,权限票据中包含了一个加密后的 RoomId 和一个加密后的“权限位列表”。由于 PrivateMapKey 中包含 RoomId,所以只提供了 UserSig 没有提供 PrivateMapKey 时,并不能进入指定的房间。
1667
1667
  */
@@ -1674,6 +1674,10 @@ export interface StartStreamIngestRequest {
1674
1674
  * 音频编码参数。可选,如果不填,保持原始流的参数。
1675
1675
  */
1676
1676
  AudioEncodeParams?: AudioEncodeParams
1677
+ /**
1678
+ * 源流URL。历史原因本字段【必填】。
1679
+ */
1680
+ StreamUrl?: string
1677
1681
  }
1678
1682
 
1679
1683
  /**
@@ -1 +1 @@
1
- export declare const sdkVersion = "4.0.774";
1
+ export declare const sdkVersion = "4.0.775";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.sdkVersion = void 0;
4
- exports.sdkVersion = "4.0.774";
4
+ exports.sdkVersion = "4.0.775";
@@ -448,6 +448,7 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
448
448
  <th>子客企业状态</th>
449
449
  <th>子客企业员工状态</th>
450
450
  <th>点击链接进入的流程</th>
451
+ <th>视频样例</th>
451
452
  </tr>
452
453
  </thead>
453
454
  <tbody>
@@ -455,16 +456,19 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
455
456
  <td>企业未激活</td>
456
457
  <td>员工未认证</td>
457
458
  <td>进入企业激活流程,首次完成企业激活流程的员工会成为超管</td>
459
+ <td><a href="https://dyn.ess.tencent.cn/guide/apivideo/CreateConsoleLoginUrl_noverify.mp4" target="_blank">打开</a></td>
458
460
  </tr>
459
461
  <tr>
460
462
  <td>企业已激活</td>
461
463
  <td>员工未认证</td>
462
464
  <td>进入员认证并加入企业流程</td>
465
+ <td>-</td>
463
466
  </tr>
464
467
  <tr>
465
468
  <td>企业已激活</td>
466
469
  <td>员工已认证</td>
467
470
  <td>进入子客企业Web控制台</td>
471
+ <td>-</td>
468
472
  </tr>
469
473
  </tbody>
470
474
  </table>
@@ -487,6 +491,41 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
487
491
  注意:
488
492
  1. 只支持PC浏览器操作使用
489
493
 
494
+ **嵌入式签署人-各种场景传参说明**:
495
+
496
+ <table>
497
+ <thead>
498
+ <tr>
499
+ <th>场景编号</th>
500
+ <th>可作为签署方的类型</th>
501
+ <th>签署方传参说明</th>
502
+ </tr>
503
+ </thead>
504
+
505
+ <tbody>
506
+ <tr>
507
+ <td>场景一</td>
508
+ <td>第三方子企业A员工</td>
509
+ <td>OpenId、OrganizationName、OrganizationOpenId必传 ,ApproverType设置为ORGANIZATION</td>
510
+ </tr>
511
+ <tr>
512
+ <td>场景二</td>
513
+ <td>第三方子企业B员工</td>
514
+ <td>OpenId、OrganizationOpenId、OrganizationName必传, ApproverType设置为ORGANIZATION</td>
515
+ </tr>
516
+ <tr>
517
+ <td>场景三</td>
518
+ <td>SaaS平台企业员工</td>
519
+ <td>Name、Mobile、OrganizationName必传,NotChannelOrganization=True。 ApproverType设置为ORGANIZATION</td>
520
+ </tr>
521
+ <tr>
522
+ <td>场景四</td>
523
+ <td>个人/自然人</td>
524
+ <td>Name、Mobile必传, ApproverType设置为PERSON</td>
525
+ </tr>
526
+ </tbody>
527
+ </table>
528
+
490
529
  嵌入的页面样式如下:
491
530
  ![image](https://qcloudimg.tencent-cloud.cn/raw/b2ae013fb4d747891dd3815bbe897208.png)
492
531
  */
@@ -827,16 +866,26 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
827
866
  */
828
867
  ChannelCreateFlowGroupByTemplates(req: ChannelCreateFlowGroupByTemplatesRequest, cb?: (error: string, rep: ChannelCreateFlowGroupByTemplatesResponse) => void): Promise<ChannelCreateFlowGroupByTemplatesResponse>;
829
868
  /**
830
- * 此接口(CreateChannelOrganizationInfoChangeUrl)用于创建子客企业信息变更链接(需要在移动端打开,会跳转到微信小程序),支持创建企业超管变更链接或企业基础信息变更链接,通过入参 ChangeType 指定。
869
+ * 此接口(CreateChannelOrganizationInfoChangeUrl)用于创建子客企业信息变更链接。
870
+
871
+ <h3 id="1">支持变更链接类型,通过入参 Endpoint 指定,默认为WEIXINAPP。</h3>
872
+
873
+ <h4 id="WEIXINAPP">WEIXINAPP</h4>
874
+ <p>创建变更短链。需要在移动端打开,会跳转到微信腾讯电子签小程序进行更换。</p>
875
+
876
+ <h4 id="APP">APP</h4>
877
+ <p>创建变更小程序链接,可从第三方APP跳转到微信腾讯电子签小程序进行更换。</p>
878
+
831
879
 
880
+ <h3 id="2">支持创建企业超管变更链接或企业基础信息变更链接,通过入参 ChangeType 指定。</h3>
832
881
 
833
- <h3 id="1-企业超管变更">1. 企业超管变更</h3>
882
+ <h4 id="1-企业超管变更">1. 企业超管变更</h4>
834
883
 
835
884
  <p>换成企业的其他员工来当超管</p>
836
885
 
837
- <h3 id="2-企业基础信息变更">2. 企业基础信息变更</h3>
886
+ <h4 id="2-企业基础信息变更">2. 企业基础信息变更</h4>
838
887
 
839
- <h4 id="可以变动">可以变动</h4>
888
+ <h5 id="可以变动">可以变动</h5>
840
889
 
841
890
  <ul>
842
891
  <li>企业名称<br>
@@ -846,7 +895,7 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
846
895
  <li>企业地址和所在地</li>
847
896
  </ul>
848
897
 
849
- <h4 id="不可变动">不可变动</h4>
898
+ <h5 id="不可变动">不可变动</h5>
850
899
 
851
900
  <ul>
852
901
  <li>统一社会信用代码<br>
@@ -520,6 +520,7 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
520
520
  <th>子客企业状态</th>
521
521
  <th>子客企业员工状态</th>
522
522
  <th>点击链接进入的流程</th>
523
+ <th>视频样例</th>
523
524
  </tr>
524
525
  </thead>
525
526
  <tbody>
@@ -527,16 +528,19 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
527
528
  <td>企业未激活</td>
528
529
  <td>员工未认证</td>
529
530
  <td>进入企业激活流程,首次完成企业激活流程的员工会成为超管</td>
531
+ <td><a href="https://dyn.ess.tencent.cn/guide/apivideo/CreateConsoleLoginUrl_noverify.mp4" target="_blank">打开</a></td>
530
532
  </tr>
531
533
  <tr>
532
534
  <td>企业已激活</td>
533
535
  <td>员工未认证</td>
534
536
  <td>进入员认证并加入企业流程</td>
537
+ <td>-</td>
535
538
  </tr>
536
539
  <tr>
537
540
  <td>企业已激活</td>
538
541
  <td>员工已认证</td>
539
542
  <td>进入子客企业Web控制台</td>
543
+ <td>-</td>
540
544
  </tr>
541
545
  </tbody>
542
546
  </table>
@@ -563,6 +567,41 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
563
567
  注意:
564
568
  1. 只支持PC浏览器操作使用
565
569
 
570
+ **嵌入式签署人-各种场景传参说明**:
571
+
572
+ <table>
573
+ <thead>
574
+ <tr>
575
+ <th>场景编号</th>
576
+ <th>可作为签署方的类型</th>
577
+ <th>签署方传参说明</th>
578
+ </tr>
579
+ </thead>
580
+
581
+ <tbody>
582
+ <tr>
583
+ <td>场景一</td>
584
+ <td>第三方子企业A员工</td>
585
+ <td>OpenId、OrganizationName、OrganizationOpenId必传 ,ApproverType设置为ORGANIZATION</td>
586
+ </tr>
587
+ <tr>
588
+ <td>场景二</td>
589
+ <td>第三方子企业B员工</td>
590
+ <td>OpenId、OrganizationOpenId、OrganizationName必传, ApproverType设置为ORGANIZATION</td>
591
+ </tr>
592
+ <tr>
593
+ <td>场景三</td>
594
+ <td>SaaS平台企业员工</td>
595
+ <td>Name、Mobile、OrganizationName必传,NotChannelOrganization=True。 ApproverType设置为ORGANIZATION</td>
596
+ </tr>
597
+ <tr>
598
+ <td>场景四</td>
599
+ <td>个人/自然人</td>
600
+ <td>Name、Mobile必传, ApproverType设置为PERSON</td>
601
+ </tr>
602
+ </tbody>
603
+ </table>
604
+
566
605
  嵌入的页面样式如下:
567
606
  ![image](https://qcloudimg.tencent-cloud.cn/raw/b2ae013fb4d747891dd3815bbe897208.png)
568
607
  */
@@ -963,16 +1002,26 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
963
1002
  return this.request("ChannelCreateFlowGroupByTemplates", req, cb);
964
1003
  }
965
1004
  /**
966
- * 此接口(CreateChannelOrganizationInfoChangeUrl)用于创建子客企业信息变更链接(需要在移动端打开,会跳转到微信小程序),支持创建企业超管变更链接或企业基础信息变更链接,通过入参 ChangeType 指定。
1005
+ * 此接口(CreateChannelOrganizationInfoChangeUrl)用于创建子客企业信息变更链接。
1006
+
1007
+ <h3 id="1">支持变更链接类型,通过入参 Endpoint 指定,默认为WEIXINAPP。</h3>
1008
+
1009
+ <h4 id="WEIXINAPP">WEIXINAPP</h4>
1010
+ <p>创建变更短链。需要在移动端打开,会跳转到微信腾讯电子签小程序进行更换。</p>
1011
+
1012
+ <h4 id="APP">APP</h4>
1013
+ <p>创建变更小程序链接,可从第三方APP跳转到微信腾讯电子签小程序进行更换。</p>
1014
+
967
1015
 
1016
+ <h3 id="2">支持创建企业超管变更链接或企业基础信息变更链接,通过入参 ChangeType 指定。</h3>
968
1017
 
969
- <h3 id="1-企业超管变更">1. 企业超管变更</h3>
1018
+ <h4 id="1-企业超管变更">1. 企业超管变更</h4>
970
1019
 
971
1020
  <p>换成企业的其他员工来当超管</p>
972
1021
 
973
- <h3 id="2-企业基础信息变更">2. 企业基础信息变更</h3>
1022
+ <h4 id="2-企业基础信息变更">2. 企业基础信息变更</h4>
974
1023
 
975
- <h4 id="可以变动">可以变动</h4>
1024
+ <h5 id="可以变动">可以变动</h5>
976
1025
 
977
1026
  <ul>
978
1027
  <li>企业名称<br>
@@ -982,7 +1031,7 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
982
1031
  <li>企业地址和所在地</li>
983
1032
  </ul>
984
1033
 
985
- <h4 id="不可变动">不可变动</h4>
1034
+ <h5 id="不可变动">不可变动</h5>
986
1035
 
987
1036
  <ul>
988
1037
  <li>统一社会信用代码<br>
@@ -6345,6 +6345,14 @@ export interface CreateChannelOrganizationInfoChangeUrlRequest {
6345
6345
  <li>**2**:企业基础信息变更, 可以改企业名称 , 所在地址 , 法人名字等信息</li></ul>
6346
6346
  */
6347
6347
  ChangeType: number;
6348
+ /**
6349
+ * 变更链接类型:
6350
+ <ul>
6351
+ <li>**WEIXINAPP** : 创建变更短链。需要在移动端打开,会跳转到微信腾讯电子签小程序进行更换。(默认)</li>
6352
+ <li>**APP** : 创建变更小程序链接,可从第三方APP跳转到微信腾讯电子签小程序进行更换。</li>
6353
+ </ul>
6354
+ */
6355
+ Endpoint?: string;
6348
6356
  }
6349
6357
  /**
6350
6358
  * ChannelModifyRole请求参数结构体
@@ -154,7 +154,7 @@ export interface ChatProRequest {
154
154
  * 聊天上下文信息。
155
155
  说明:
156
156
  1.长度最多为40, 按对话时间从旧到新在数组中排列。
157
- 2.Message的Role当前可选值:user、assistant,其中,user和assistant需要交替出现(一问一答),最后一个为user提问, 且Content不能为空。
157
+ 2.Message的Role当前可选值:system、user、assistant,其中,system角色是可选的,如果存在,必须位于列表的最开始。user和assistant需要交替出现(一问一答),最后一个为user提问, 且Content不能为空。
158
158
  3.Messages中Content总长度不超过16000 token,超过则会截断最前面的内容,只保留尾部内容。建议不超过4000 token。
159
159
  */
160
160
  Messages: Array<Message>;