@tachybase/plugin-auth-dingtalk 1.3.22 → 1.3.24

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.
Files changed (24) hide show
  1. package/dist/externalVersion.js +3 -3
  2. package/dist/node_modules/@alicloud/dingtalk/dist/attendance_1_0/client.d.ts +1 -0
  3. package/dist/node_modules/@alicloud/dingtalk/dist/attendance_1_0/client.js +2 -0
  4. package/dist/node_modules/@alicloud/dingtalk/dist/datacenter_1_0/client.d.ts +86 -0
  5. package/dist/node_modules/@alicloud/dingtalk/dist/datacenter_1_0/client.js +149 -8
  6. package/dist/node_modules/@alicloud/dingtalk/dist/im_1_0/client.d.ts +631 -0
  7. package/dist/node_modules/@alicloud/dingtalk/dist/im_1_0/client.js +644 -8
  8. package/dist/node_modules/@alicloud/dingtalk/dist/index.js +2 -2
  9. package/dist/node_modules/@alicloud/dingtalk/dist/minutes_1_0/client.d.ts +207 -0
  10. package/dist/node_modules/@alicloud/dingtalk/dist/minutes_1_0/client.js +324 -2
  11. package/dist/node_modules/@alicloud/dingtalk/dist/project_1_0/client.d.ts +41 -13
  12. package/dist/node_modules/@alicloud/dingtalk/dist/project_1_0/client.js +41 -0
  13. package/dist/node_modules/@alicloud/dingtalk/dist/robot_1_0/client.d.ts +112 -0
  14. package/dist/node_modules/@alicloud/dingtalk/dist/robot_1_0/client.js +161 -1
  15. package/dist/node_modules/@alicloud/dingtalk/package.json +1 -1
  16. package/dist/node_modules/@alicloud/dingtalk/src/attendance_1_0/client.ts +3 -0
  17. package/dist/node_modules/@alicloud/dingtalk/src/datacenter_1_0/client.ts +167 -0
  18. package/dist/node_modules/@alicloud/dingtalk/src/im_1_0/client.ts +1083 -65
  19. package/dist/node_modules/@alicloud/dingtalk/src/minutes_1_0/client.ts +412 -1
  20. package/dist/node_modules/@alicloud/dingtalk/src/project_1_0/client.ts +89 -13
  21. package/dist/node_modules/@alicloud/dingtalk/src/robot_1_0/client.ts +204 -0
  22. package/dist/node_modules/@alicloud/openapi-client/package.json +1 -1
  23. package/dist/node_modules/@alicloud/tea-util/package.json +1 -1
  24. package/package.json +7 -7
@@ -3940,6 +3940,153 @@ export declare class ListSceneGroupsByTemplateIdResponse extends $tea.Model {
3940
3940
  [key: string]: any;
3941
3941
  });
3942
3942
  }
3943
+ export declare class LoginForVisitorHeaders extends $tea.Model {
3944
+ commonHeaders?: {
3945
+ [key: string]: string;
3946
+ };
3947
+ xAcsDingtalkAccessToken?: string;
3948
+ static names(): {
3949
+ [key: string]: string;
3950
+ };
3951
+ static types(): {
3952
+ [key: string]: any;
3953
+ };
3954
+ constructor(map?: {
3955
+ [key: string]: any;
3956
+ });
3957
+ }
3958
+ export declare class LoginForVisitorRequest extends $tea.Model {
3959
+ /**
3960
+ * @example
3961
+ * uuid_a123
3962
+ */
3963
+ appUserId?: string;
3964
+ /**
3965
+ * @example
3966
+ * your_channel_code
3967
+ */
3968
+ channelCode?: string;
3969
+ /**
3970
+ * @example
3971
+ * abc123xyz
3972
+ */
3973
+ customAccessToken?: string;
3974
+ static names(): {
3975
+ [key: string]: string;
3976
+ };
3977
+ static types(): {
3978
+ [key: string]: any;
3979
+ };
3980
+ constructor(map?: {
3981
+ [key: string]: any;
3982
+ });
3983
+ }
3984
+ export declare class LoginForVisitorResponseBody extends $tea.Model {
3985
+ /**
3986
+ * @remarks
3987
+ * This parameter is required.
3988
+ */
3989
+ aimInfo?: LoginForVisitorResponseBodyAimInfo;
3990
+ /**
3991
+ * @remarks
3992
+ * This parameter is required.
3993
+ */
3994
+ aimToken?: LoginForVisitorResponseBodyAimToken;
3995
+ /**
3996
+ * @remarks
3997
+ * This parameter is required.
3998
+ *
3999
+ * @example
4000
+ * 123456
4001
+ */
4002
+ appUid?: string;
4003
+ /**
4004
+ * @remarks
4005
+ * This parameter is required.
4006
+ *
4007
+ * @example
4008
+ * channel_123
4009
+ */
4010
+ channelCode?: string;
4011
+ /**
4012
+ * @remarks
4013
+ * This parameter is required.
4014
+ *
4015
+ * @example
4016
+ * device_001
4017
+ */
4018
+ deviceId?: string;
4019
+ /**
4020
+ * @example
4021
+ * example.com
4022
+ */
4023
+ safeDomainName?: string;
4024
+ /**
4025
+ * @remarks
4026
+ * This parameter is required.
4027
+ *
4028
+ * @example
4029
+ * 张三
4030
+ */
4031
+ userName?: string;
4032
+ /**
4033
+ * @remarks
4034
+ * This parameter is required.
4035
+ *
4036
+ * @example
4037
+ * @123456
4038
+ */
4039
+ visitorAvatar?: string;
4040
+ /**
4041
+ * @remarks
4042
+ * This parameter is required.
4043
+ *
4044
+ * @example
4045
+ * https://example.com/acd123.jpg
4046
+ */
4047
+ visitorAvatarUrl?: string;
4048
+ /**
4049
+ * @remarks
4050
+ * This parameter is required.
4051
+ *
4052
+ * @example
4053
+ * cid_12345
4054
+ */
4055
+ visitorCid?: string;
4056
+ /**
4057
+ * @remarks
4058
+ * This parameter is required.
4059
+ *
4060
+ * @example
4061
+ * openconversation_12345
4062
+ */
4063
+ visitorOpenConversationId?: string;
4064
+ static names(): {
4065
+ [key: string]: string;
4066
+ };
4067
+ static types(): {
4068
+ [key: string]: any;
4069
+ };
4070
+ constructor(map?: {
4071
+ [key: string]: any;
4072
+ });
4073
+ }
4074
+ export declare class LoginForVisitorResponse extends $tea.Model {
4075
+ headers?: {
4076
+ [key: string]: string;
4077
+ };
4078
+ statusCode?: number;
4079
+ body?: LoginForVisitorResponseBody;
4080
+ static names(): {
4081
+ [key: string]: string;
4082
+ };
4083
+ static types(): {
4084
+ [key: string]: any;
4085
+ };
4086
+ constructor(map?: {
4087
+ [key: string]: any;
4088
+ });
4089
+ }
3943
4090
  export declare class OfflineUnfurlingRegisterHeaders extends $tea.Model {
3944
4091
  commonHeaders?: {
3945
4092
  [key: string]: string;
@@ -4622,6 +4769,65 @@ export declare class PersonalSendCardMessageResponse extends $tea.Model {
4622
4769
  [key: string]: any;
4623
4770
  });
4624
4771
  }
4772
+ export declare class QueryGroupInfoByAppCidsHeaders extends $tea.Model {
4773
+ commonHeaders?: {
4774
+ [key: string]: string;
4775
+ };
4776
+ xAcsDingtalkAccessToken?: string;
4777
+ static names(): {
4778
+ [key: string]: string;
4779
+ };
4780
+ static types(): {
4781
+ [key: string]: any;
4782
+ };
4783
+ constructor(map?: {
4784
+ [key: string]: any;
4785
+ });
4786
+ }
4787
+ export declare class QueryGroupInfoByAppCidsRequest extends $tea.Model {
4788
+ appCids?: string[];
4789
+ static names(): {
4790
+ [key: string]: string;
4791
+ };
4792
+ static types(): {
4793
+ [key: string]: any;
4794
+ };
4795
+ constructor(map?: {
4796
+ [key: string]: any;
4797
+ });
4798
+ }
4799
+ export declare class QueryGroupInfoByAppCidsResponseBody extends $tea.Model {
4800
+ /**
4801
+ * @remarks
4802
+ * This parameter is required.
4803
+ */
4804
+ groupInfoList?: QueryGroupInfoByAppCidsResponseBodyGroupInfoList[];
4805
+ static names(): {
4806
+ [key: string]: string;
4807
+ };
4808
+ static types(): {
4809
+ [key: string]: any;
4810
+ };
4811
+ constructor(map?: {
4812
+ [key: string]: any;
4813
+ });
4814
+ }
4815
+ export declare class QueryGroupInfoByAppCidsResponse extends $tea.Model {
4816
+ headers?: {
4817
+ [key: string]: string;
4818
+ };
4819
+ statusCode?: number;
4820
+ body?: QueryGroupInfoByAppCidsResponseBody;
4821
+ static names(): {
4822
+ [key: string]: string;
4823
+ };
4824
+ static types(): {
4825
+ [key: string]: any;
4826
+ };
4827
+ constructor(map?: {
4828
+ [key: string]: any;
4829
+ });
4830
+ }
4625
4831
  export declare class QueryGroupInfoByMemberAuthHeaders extends $tea.Model {
4626
4832
  commonHeaders?: {
4627
4833
  [key: string]: string;
@@ -4696,6 +4902,65 @@ export declare class QueryGroupInfoByMemberAuthResponse extends $tea.Model {
4696
4902
  [key: string]: any;
4697
4903
  });
4698
4904
  }
4905
+ export declare class QueryGroupInfoByOpenCidsHeaders extends $tea.Model {
4906
+ commonHeaders?: {
4907
+ [key: string]: string;
4908
+ };
4909
+ xAcsDingtalkAccessToken?: string;
4910
+ static names(): {
4911
+ [key: string]: string;
4912
+ };
4913
+ static types(): {
4914
+ [key: string]: any;
4915
+ };
4916
+ constructor(map?: {
4917
+ [key: string]: any;
4918
+ });
4919
+ }
4920
+ export declare class QueryGroupInfoByOpenCidsRequest extends $tea.Model {
4921
+ openConversationIds?: string[];
4922
+ static names(): {
4923
+ [key: string]: string;
4924
+ };
4925
+ static types(): {
4926
+ [key: string]: any;
4927
+ };
4928
+ constructor(map?: {
4929
+ [key: string]: any;
4930
+ });
4931
+ }
4932
+ export declare class QueryGroupInfoByOpenCidsResponseBody extends $tea.Model {
4933
+ /**
4934
+ * @remarks
4935
+ * This parameter is required.
4936
+ */
4937
+ groupInfoList?: QueryGroupInfoByOpenCidsResponseBodyGroupInfoList[];
4938
+ static names(): {
4939
+ [key: string]: string;
4940
+ };
4941
+ static types(): {
4942
+ [key: string]: any;
4943
+ };
4944
+ constructor(map?: {
4945
+ [key: string]: any;
4946
+ });
4947
+ }
4948
+ export declare class QueryGroupInfoByOpenCidsResponse extends $tea.Model {
4949
+ headers?: {
4950
+ [key: string]: string;
4951
+ };
4952
+ statusCode?: number;
4953
+ body?: QueryGroupInfoByOpenCidsResponseBody;
4954
+ static names(): {
4955
+ [key: string]: string;
4956
+ };
4957
+ static types(): {
4958
+ [key: string]: any;
4959
+ };
4960
+ constructor(map?: {
4961
+ [key: string]: any;
4962
+ });
4963
+ }
4699
4964
  export declare class QueryGroupMemberHeaders extends $tea.Model {
4700
4965
  commonHeaders?: {
4701
4966
  [key: string]: string;
@@ -4770,6 +5035,65 @@ export declare class QueryGroupMemberResponse extends $tea.Model {
4770
5035
  [key: string]: any;
4771
5036
  });
4772
5037
  }
5038
+ export declare class QueryGroupMemberByAppUidsHeaders extends $tea.Model {
5039
+ commonHeaders?: {
5040
+ [key: string]: string;
5041
+ };
5042
+ xAcsDingtalkAccessToken?: string;
5043
+ static names(): {
5044
+ [key: string]: string;
5045
+ };
5046
+ static types(): {
5047
+ [key: string]: any;
5048
+ };
5049
+ constructor(map?: {
5050
+ [key: string]: any;
5051
+ });
5052
+ }
5053
+ export declare class QueryGroupMemberByAppUidsRequest extends $tea.Model {
5054
+ appUids?: number[];
5055
+ static names(): {
5056
+ [key: string]: string;
5057
+ };
5058
+ static types(): {
5059
+ [key: string]: any;
5060
+ };
5061
+ constructor(map?: {
5062
+ [key: string]: any;
5063
+ });
5064
+ }
5065
+ export declare class QueryGroupMemberByAppUidsResponseBody extends $tea.Model {
5066
+ /**
5067
+ * @remarks
5068
+ * This parameter is required.
5069
+ */
5070
+ groupMembers?: QueryGroupMemberByAppUidsResponseBodyGroupMembers[];
5071
+ static names(): {
5072
+ [key: string]: string;
5073
+ };
5074
+ static types(): {
5075
+ [key: string]: any;
5076
+ };
5077
+ constructor(map?: {
5078
+ [key: string]: any;
5079
+ });
5080
+ }
5081
+ export declare class QueryGroupMemberByAppUidsResponse extends $tea.Model {
5082
+ headers?: {
5083
+ [key: string]: string;
5084
+ };
5085
+ statusCode?: number;
5086
+ body?: QueryGroupMemberByAppUidsResponseBody;
5087
+ static names(): {
5088
+ [key: string]: string;
5089
+ };
5090
+ static types(): {
5091
+ [key: string]: any;
5092
+ };
5093
+ constructor(map?: {
5094
+ [key: string]: any;
5095
+ });
5096
+ }
4773
5097
  export declare class QueryGroupMemberByMemberAuthHeaders extends $tea.Model {
4774
5098
  commonHeaders?: {
4775
5099
  [key: string]: string;
@@ -9198,6 +9522,83 @@ export declare class ListOrgTextEmotionResponseBodyResult extends $tea.Model {
9198
9522
  [key: string]: any;
9199
9523
  });
9200
9524
  }
9525
+ export declare class LoginForVisitorResponseBodyAimInfo extends $tea.Model {
9526
+ /**
9527
+ * @remarks
9528
+ * This parameter is required.
9529
+ *
9530
+ * @example
9531
+ * app_123456
9532
+ */
9533
+ appId?: string;
9534
+ /**
9535
+ * @remarks
9536
+ * This parameter is required.
9537
+ */
9538
+ appKey?: {
9539
+ [key: string]: string;
9540
+ };
9541
+ /**
9542
+ * @remarks
9543
+ * This parameter is required.
9544
+ *
9545
+ * @example
9546
+ * dingtalk_app
9547
+ */
9548
+ appName?: string;
9549
+ static names(): {
9550
+ [key: string]: string;
9551
+ };
9552
+ static types(): {
9553
+ [key: string]: any;
9554
+ };
9555
+ constructor(map?: {
9556
+ [key: string]: any;
9557
+ });
9558
+ }
9559
+ export declare class LoginForVisitorResponseBodyAimToken extends $tea.Model {
9560
+ /**
9561
+ * @remarks
9562
+ * This parameter is required.
9563
+ *
9564
+ * @example
9565
+ * abc123xyz
9566
+ */
9567
+ accessToken?: string;
9568
+ /**
9569
+ * @remarks
9570
+ * This parameter is required.
9571
+ *
9572
+ * @example
9573
+ * 86400
9574
+ */
9575
+ accessTokenExpiredTime?: number;
9576
+ /**
9577
+ * @remarks
9578
+ * This parameter is required.
9579
+ *
9580
+ * @example
9581
+ * 1717027200000
9582
+ */
9583
+ buildTime?: number;
9584
+ /**
9585
+ * @remarks
9586
+ * This parameter is required.
9587
+ *
9588
+ * @example
9589
+ * refreshtoken_789
9590
+ */
9591
+ refreshToken?: string;
9592
+ static names(): {
9593
+ [key: string]: string;
9594
+ };
9595
+ static types(): {
9596
+ [key: string]: any;
9597
+ };
9598
+ constructor(map?: {
9599
+ [key: string]: any;
9600
+ });
9601
+ }
9201
9602
  export declare class OpenGroupRoleAddResponseBodyResult extends $tea.Model {
9202
9603
  openRoleId?: string;
9203
9604
  static names(): {
@@ -9354,12 +9755,107 @@ export declare class PersonalSendCardMessageResponseBodyResult extends $tea.Mode
9354
9755
  [key: string]: any;
9355
9756
  });
9356
9757
  }
9758
+ export declare class QueryGroupInfoByAppCidsResponseBodyGroupInfoList extends $tea.Model {
9759
+ /**
9760
+ * @example
9761
+ * $2$123456$2
9762
+ */
9763
+ appCid?: string;
9764
+ /**
9765
+ * @example
9766
+ * ding1234
9767
+ */
9768
+ corpId?: string;
9769
+ /**
9770
+ * @example
9771
+ * @abc
9772
+ */
9773
+ groupAvatar?: string;
9774
+ /**
9775
+ * @example
9776
+ * https://abc
9777
+ */
9778
+ groupAvatarUrl?: string;
9779
+ /**
9780
+ * @example
9781
+ * 群名称
9782
+ */
9783
+ groupName?: string;
9784
+ /**
9785
+ * @example
9786
+ * 123456a==
9787
+ */
9788
+ openConversationId?: string;
9789
+ static names(): {
9790
+ [key: string]: string;
9791
+ };
9792
+ static types(): {
9793
+ [key: string]: any;
9794
+ };
9795
+ constructor(map?: {
9796
+ [key: string]: any;
9797
+ });
9798
+ }
9799
+ export declare class QueryGroupInfoByOpenCidsResponseBodyGroupInfoList extends $tea.Model {
9800
+ /**
9801
+ * @example
9802
+ * $2$123456$2
9803
+ */
9804
+ appCid?: string;
9805
+ /**
9806
+ * @example
9807
+ * ding1234
9808
+ */
9809
+ corpId?: string;
9810
+ /**
9811
+ * @example
9812
+ * @abc
9813
+ */
9814
+ groupAvatar?: string;
9815
+ /**
9816
+ * @example
9817
+ * https://abc
9818
+ */
9819
+ groupAvatarUrl?: string;
9820
+ /**
9821
+ * @example
9822
+ * 群名称
9823
+ */
9824
+ groupName?: string;
9825
+ /**
9826
+ * @example
9827
+ * 123456a==
9828
+ */
9829
+ openConversationId?: string;
9830
+ static names(): {
9831
+ [key: string]: string;
9832
+ };
9833
+ static types(): {
9834
+ [key: string]: any;
9835
+ };
9836
+ constructor(map?: {
9837
+ [key: string]: any;
9838
+ });
9839
+ }
9357
9840
  export declare class QueryGroupMemberResponseBodyGroupMembers extends $tea.Model {
9841
+ /**
9842
+ * @remarks
9843
+ * This parameter is required.
9844
+ *
9845
+ * @example
9846
+ * 1000000
9847
+ */
9848
+ appUid?: number;
9358
9849
  /**
9359
9850
  * @example
9360
9851
  * http://****.png
9361
9852
  */
9362
9853
  groupMemberAvatar?: string;
9854
+ /**
9855
+ * @example
9856
+ * abc
9857
+ */
9858
+ groupMemberAvatarMediaId?: string;
9363
9859
  /**
9364
9860
  * @example
9365
9861
  * 认真工作,快乐生活
@@ -9386,6 +9882,77 @@ export declare class QueryGroupMemberResponseBodyGroupMembers extends $tea.Model
9386
9882
  * 1
9387
9883
  */
9388
9884
  groupMemberType?: number;
9885
+ /**
9886
+ * @remarks
9887
+ * This parameter is required.
9888
+ *
9889
+ * @example
9890
+ * 2
9891
+ */
9892
+ groupMemberTypeV2?: number;
9893
+ static names(): {
9894
+ [key: string]: string;
9895
+ };
9896
+ static types(): {
9897
+ [key: string]: any;
9898
+ };
9899
+ constructor(map?: {
9900
+ [key: string]: any;
9901
+ });
9902
+ }
9903
+ export declare class QueryGroupMemberByAppUidsResponseBodyGroupMembers extends $tea.Model {
9904
+ /**
9905
+ * @remarks
9906
+ * This parameter is required.
9907
+ *
9908
+ * @example
9909
+ * 1000000
9910
+ */
9911
+ appUid?: number;
9912
+ /**
9913
+ * @example
9914
+ * http://****.png
9915
+ */
9916
+ groupMemberAvatar?: string;
9917
+ /**
9918
+ * @example
9919
+ * abc
9920
+ */
9921
+ groupMemberAvatarMediaId?: string;
9922
+ /**
9923
+ * @example
9924
+ * 认真工作,快乐生活
9925
+ */
9926
+ groupMemberDynamics?: string;
9927
+ /**
9928
+ * @example
9929
+ * 1107****2120
9930
+ */
9931
+ groupMemberId?: string;
9932
+ /**
9933
+ * @remarks
9934
+ * This parameter is required.
9935
+ *
9936
+ * @example
9937
+ * Foo
9938
+ */
9939
+ groupMemberName?: string;
9940
+ /**
9941
+ * @remarks
9942
+ * This parameter is required.
9943
+ *
9944
+ * @example
9945
+ * 1
9946
+ */
9947
+ groupMemberType?: number;
9948
+ /**
9949
+ * @remarks
9950
+ * This parameter is required.
9951
+ *
9952
+ * @example
9953
+ * 2
9954
+ */
9955
+ groupMemberTypeV2?: number;
9389
9956
  static names(): {
9390
9957
  [key: string]: string;
9391
9958
  };
@@ -10863,6 +11430,22 @@ export default class Client extends OpenApi {
10863
11430
  * @returns ListSceneGroupsByTemplateIdResponse
10864
11431
  */
10865
11432
  listSceneGroupsByTemplateId(templateId: string, request: ListSceneGroupsByTemplateIdRequest): Promise<ListSceneGroupsByTemplateIdResponse>;
11433
+ /**
11434
+ * 客联访客登录接口
11435
+ *
11436
+ * @param request - LoginForVisitorRequest
11437
+ * @param headers - LoginForVisitorHeaders
11438
+ * @param runtime - runtime options for this request RuntimeOptions
11439
+ * @returns LoginForVisitorResponse
11440
+ */
11441
+ loginForVisitorWithOptions(request: LoginForVisitorRequest, headers: LoginForVisitorHeaders, runtime: $Util.RuntimeOptions): Promise<LoginForVisitorResponse>;
11442
+ /**
11443
+ * 客联访客登录接口
11444
+ *
11445
+ * @param request - LoginForVisitorRequest
11446
+ * @returns LoginForVisitorResponse
11447
+ */
11448
+ loginForVisitor(request: LoginForVisitorRequest): Promise<LoginForVisitorResponse>;
10866
11449
  /**
10867
11450
  * 链接增强规则下线
10868
11451
  *
@@ -11023,6 +11606,22 @@ export default class Client extends OpenApi {
11023
11606
  * @returns PersonalSendCardMessageResponse
11024
11607
  */
11025
11608
  personalSendCardMessage(request: PersonalSendCardMessageRequest): Promise<PersonalSendCardMessageResponse>;
11609
+ /**
11610
+ * 根据IM会话Cid查询群信息
11611
+ *
11612
+ * @param request - QueryGroupInfoByAppCidsRequest
11613
+ * @param headers - QueryGroupInfoByAppCidsHeaders
11614
+ * @param runtime - runtime options for this request RuntimeOptions
11615
+ * @returns QueryGroupInfoByAppCidsResponse
11616
+ */
11617
+ queryGroupInfoByAppCidsWithOptions(request: QueryGroupInfoByAppCidsRequest, headers: QueryGroupInfoByAppCidsHeaders, runtime: $Util.RuntimeOptions): Promise<QueryGroupInfoByAppCidsResponse>;
11618
+ /**
11619
+ * 根据IM会话Cid查询群信息
11620
+ *
11621
+ * @param request - QueryGroupInfoByAppCidsRequest
11622
+ * @returns QueryGroupInfoByAppCidsResponse
11623
+ */
11624
+ queryGroupInfoByAppCids(request: QueryGroupInfoByAppCidsRequest): Promise<QueryGroupInfoByAppCidsResponse>;
11026
11625
  /**
11027
11626
  * 成员授权场景下查询群信息
11028
11627
  *
@@ -11039,6 +11638,22 @@ export default class Client extends OpenApi {
11039
11638
  * @returns QueryGroupInfoByMemberAuthResponse
11040
11639
  */
11041
11640
  queryGroupInfoByMemberAuth(request: QueryGroupInfoByMemberAuthRequest): Promise<QueryGroupInfoByMemberAuthResponse>;
11641
+ /**
11642
+ * 根据群Cid查询群信息
11643
+ *
11644
+ * @param request - QueryGroupInfoByOpenCidsRequest
11645
+ * @param headers - QueryGroupInfoByOpenCidsHeaders
11646
+ * @param runtime - runtime options for this request RuntimeOptions
11647
+ * @returns QueryGroupInfoByOpenCidsResponse
11648
+ */
11649
+ queryGroupInfoByOpenCidsWithOptions(request: QueryGroupInfoByOpenCidsRequest, headers: QueryGroupInfoByOpenCidsHeaders, runtime: $Util.RuntimeOptions): Promise<QueryGroupInfoByOpenCidsResponse>;
11650
+ /**
11651
+ * 根据群Cid查询群信息
11652
+ *
11653
+ * @param request - QueryGroupInfoByOpenCidsRequest
11654
+ * @returns QueryGroupInfoByOpenCidsResponse
11655
+ */
11656
+ queryGroupInfoByOpenCids(request: QueryGroupInfoByOpenCidsRequest): Promise<QueryGroupInfoByOpenCidsResponse>;
11042
11657
  /**
11043
11658
  * 查询群成员列表
11044
11659
  *
@@ -11055,6 +11670,22 @@ export default class Client extends OpenApi {
11055
11670
  * @returns QueryGroupMemberResponse
11056
11671
  */
11057
11672
  queryGroupMember(request: QueryGroupMemberRequest): Promise<QueryGroupMemberResponse>;
11673
+ /**
11674
+ * 根据appUid获取成员信息
11675
+ *
11676
+ * @param request - QueryGroupMemberByAppUidsRequest
11677
+ * @param headers - QueryGroupMemberByAppUidsHeaders
11678
+ * @param runtime - runtime options for this request RuntimeOptions
11679
+ * @returns QueryGroupMemberByAppUidsResponse
11680
+ */
11681
+ queryGroupMemberByAppUidsWithOptions(request: QueryGroupMemberByAppUidsRequest, headers: QueryGroupMemberByAppUidsHeaders, runtime: $Util.RuntimeOptions): Promise<QueryGroupMemberByAppUidsResponse>;
11682
+ /**
11683
+ * 根据appUid获取成员信息
11684
+ *
11685
+ * @param request - QueryGroupMemberByAppUidsRequest
11686
+ * @returns QueryGroupMemberByAppUidsResponse
11687
+ */
11688
+ queryGroupMemberByAppUids(request: QueryGroupMemberByAppUidsRequest): Promise<QueryGroupMemberByAppUidsResponse>;
11058
11689
  /**
11059
11690
  * 成员授权场景下查询群成员
11060
11691
  *