@funhub/platform 0.2.5 → 0.2.6

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/dist/types.d.mts CHANGED
@@ -1,5 +1,29 @@
1
1
 
2
2
  //#region types/generated/api-types.d.ts
3
+ /**
4
+ * google.protobuf.Any
5
+ */
6
+ type GoogleProtobufAny = {
7
+ type_url?: string;
8
+ value?: string;
9
+ };
10
+ /**
11
+ * The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
12
+ */
13
+ type Status = {
14
+ /**
15
+ * The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
16
+ */
17
+ code?: number;
18
+ /**
19
+ * A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
20
+ */
21
+ message?: string;
22
+ /**
23
+ * A list of messages that carry the error details. There is a common set of message types for APIs to use.
24
+ */
25
+ details?: GoogleProtobufAny[];
26
+ };
3
27
  /**
4
28
  * Api Response
5
29
  */
@@ -1406,6 +1430,11 @@ type ContentShowVideoInfo = {
1406
1430
  * 是否关注作者
1407
1431
  */
1408
1432
  is_followed?: boolean;
1433
+ /**
1434
+ * 是否广告组件
1435
+ */
1436
+ is_ad?: boolean;
1437
+ ad?: ContentFeedAdInfo;
1409
1438
  };
1410
1439
  /**
1411
1440
  * 标签对象
@@ -3127,6 +3156,18 @@ type UserGetUserInfoResponse = {
3127
3156
  * 用户状态
3128
3157
  */
3129
3158
  status?: number;
3159
+ /**
3160
+ * 用户类型
3161
+ */
3162
+ user_type?: number;
3163
+ /**
3164
+ * 是否会员
3165
+ */
3166
+ is_member?: number;
3167
+ /**
3168
+ * 是否官方
3169
+ */
3170
+ is_official?: number;
3130
3171
  };
3131
3172
  /**
3132
3173
  * 获取用户隐私设置信息响应
@@ -3777,6 +3818,464 @@ type UserRegisterByVerifyEmailCodeResponse = {
3777
3818
  */
3778
3819
  expire_time?: number;
3779
3820
  };
3821
+ type ContentGetSeoConfigResponse = {
3822
+ config?: ContentSeoConfig;
3823
+ common_config?: ContentSeoConfig;
3824
+ /**
3825
+ * 主配置来源:data、route、empty
3826
+ */
3827
+ source?: string;
3828
+ geo_config?: ContentGeoConfig;
3829
+ };
3830
+ /**
3831
+ * 发起支付响应
3832
+ */
3833
+ type CommerceCreatePaymentResponse = {
3834
+ /**
3835
+ * 支付平台订单号
3836
+ */
3837
+ oid?: string;
3838
+ /**
3839
+ * 支付链接或 SDK 参数或银行卡信息 JSON
3840
+ */
3841
+ pay_url?: string;
3842
+ /**
3843
+ * 返回模式:url/sdk/card
3844
+ */
3845
+ mode?: string;
3846
+ card_info?: CommercePaymentCardInfo;
3847
+ };
3848
+ /**
3849
+ * 获取支付方式响应
3850
+ */
3851
+ type CommerceGetPaymentMethodsResponse = {
3852
+ /**
3853
+ * 某个金额下可用的支付方式集合
3854
+ */
3855
+ methods?: CommercePaymentMethodGroup[];
3856
+ };
3857
+ /**
3858
+ * 订单结果
3859
+ */
3860
+ type CommerceOrderResult = {
3861
+ /**
3862
+ * 商户订单号
3863
+ */
3864
+ trade_no?: string;
3865
+ /**
3866
+ * 订单金额
3867
+ */
3868
+ money?: string;
3869
+ /**
3870
+ * 实际支付金额
3871
+ */
3872
+ pay_money?: string;
3873
+ /**
3874
+ * 支付时间
3875
+ */
3876
+ pay_time?: string;
3877
+ /**
3878
+ * 支付状态
3879
+ */
3880
+ pay_status?: string;
3881
+ /**
3882
+ * 回调状态
3883
+ */
3884
+ notify_status?: string;
3885
+ };
3886
+ /**
3887
+ * 银行卡收款信息
3888
+ */
3889
+ type CommercePaymentCardInfo = {
3890
+ /**
3891
+ * 收款金额
3892
+ */
3893
+ amount?: string;
3894
+ /**
3895
+ * 收款人
3896
+ */
3897
+ payee?: string;
3898
+ /**
3899
+ * 收款账号
3900
+ */
3901
+ account?: string;
3902
+ /**
3903
+ * 有效时间,单位:分钟
3904
+ */
3905
+ time?: number;
3906
+ };
3907
+ /**
3908
+ * 支付方式
3909
+ */
3910
+ type CommercePaymentMethod = {
3911
+ /**
3912
+ * 支付方式名称
3913
+ */
3914
+ name?: string;
3915
+ /**
3916
+ * 支付方式类型
3917
+ */
3918
+ type?: string;
3919
+ };
3920
+ /**
3921
+ * 某个金额下可用的支付方式集合
3922
+ */
3923
+ type CommercePaymentMethodGroup = {
3924
+ /**
3925
+ * 金额
3926
+ */
3927
+ money?: string;
3928
+ /**
3929
+ * 支付方式
3930
+ */
3931
+ types?: CommercePaymentMethod[];
3932
+ };
3933
+ /**
3934
+ * 玩家支付信息
3935
+ */
3936
+ type CommercePaymentPlayerInfo = {
3937
+ /**
3938
+ * 产品 APP 名称
3939
+ */
3940
+ app?: string;
3941
+ /**
3942
+ * 玩家 ID
3943
+ */
3944
+ player_id?: string;
3945
+ /**
3946
+ * 玩家 IP
3947
+ */
3948
+ player_ip?: string;
3949
+ /**
3950
+ * 玩家设备 ID
3951
+ */
3952
+ device_id?: string;
3953
+ /**
3954
+ * 玩家设备类型:ios/android/pc
3955
+ */
3956
+ device_type?: string;
3957
+ /**
3958
+ * 玩家姓名
3959
+ */
3960
+ name?: string;
3961
+ /**
3962
+ * 玩家手机号
3963
+ */
3964
+ tel?: string;
3965
+ /**
3966
+ * 玩家付款账号
3967
+ */
3968
+ pay_act?: string;
3969
+ };
3970
+ /**
3971
+ * 支付成功回调响应
3972
+ */
3973
+ type CommercePaymentSuccessCallbackResponse = {
3974
+ /**
3975
+ * 回调成功时返回 success
3976
+ */
3977
+ ack?: string;
3978
+ };
3979
+ /**
3980
+ * 查询订单结果响应
3981
+ */
3982
+ type CommerceQueryOrderResultResponse = {
3983
+ order?: CommerceOrderResult;
3984
+ };
3985
+ /**
3986
+ * 退款回调响应
3987
+ */
3988
+ type CommerceRefundCallbackResponse = {
3989
+ /**
3990
+ * 回调成功时返回 success
3991
+ */
3992
+ ack?: string;
3993
+ };
3994
+ type ContentSeoConfig = {
3995
+ /**
3996
+ * SEO标题
3997
+ */
3998
+ title?: string;
3999
+ /**
4000
+ * SEO描述
4001
+ */
4002
+ description?: string;
4003
+ /**
4004
+ * SEO关键词
4005
+ */
4006
+ keywords?: string;
4007
+ /**
4008
+ * 是否收录:1是 0否
4009
+ */
4010
+ is_indexed?: number;
4011
+ /**
4012
+ * 是否公共配置:1是 0否
4013
+ */
4014
+ is_common?: number;
4015
+ };
4016
+ /**
4017
+ * 批量删除收藏夹响应
4018
+ */
4019
+ type InteractionBatchDeleteFoldersResponse = {
4020
+ /**
4021
+ * 删除成功的收藏夹数量
4022
+ */
4023
+ deleted_count?: number;
4024
+ /**
4025
+ * 删除失败的收藏夹ID列表
4026
+ */
4027
+ failed_folder_ids?: string[];
4028
+ };
4029
+ /**
4030
+ * 广告场景上下文
4031
+ */
4032
+ type ContentAdSceneContext = {
4033
+ /**
4034
+ * 是否热启动
4035
+ */
4036
+ is_startup_hot?: boolean;
4037
+ /**
4038
+ * 距离上次退后台分钟数
4039
+ */
4040
+ background_duration_min?: number;
4041
+ };
4042
+ type ContentGeoConfig = {
4043
+ /**
4044
+ * GEO标题
4045
+ */
4046
+ title?: string;
4047
+ /**
4048
+ * GEO关键词列表
4049
+ */
4050
+ keywords?: string[];
4051
+ /**
4052
+ * GEO描述
4053
+ */
4054
+ description?: string;
4055
+ /**
4056
+ * 内容最后更新时间
4057
+ */
4058
+ freshness?: string;
4059
+ /**
4060
+ * 内容类型
4061
+ */
4062
+ content_type?: string;
4063
+ /**
4064
+ * FAQ 列表
4065
+ */
4066
+ faq?: ContentGeoFaq[];
4067
+ };
4068
+ type ContentGeoFaq = {
4069
+ /**
4070
+ * 问题
4071
+ */
4072
+ question?: string;
4073
+ /**
4074
+ * 回答
4075
+ */
4076
+ answer?: string;
4077
+ };
4078
+ /**
4079
+ * 广告匹配响应
4080
+ */
4081
+ type ContentMatchAdsResponse = {
4082
+ /**
4083
+ * 是否命中广告
4084
+ */
4085
+ hit?: boolean;
4086
+ /**
4087
+ * 本次返回的广告类型
4088
+ */
4089
+ ad_type?: string;
4090
+ /**
4091
+ * 广告匹配素材(精简字段)
4092
+ */
4093
+ materials?: ContentMatchAdMaterial[];
4094
+ settings?: ContentMatchAdSettings;
4095
+ };
4096
+ type CommunityBatchDeleteCollectionResponse = {
4097
+ /**
4098
+ * 删除成功的收藏夹数量
4099
+ */
4100
+ deleted_count?: number;
4101
+ /**
4102
+ * 删除失败的收藏夹ID列表
4103
+ */
4104
+ failed_folder_ids?: string[];
4105
+ };
4106
+ /**
4107
+ * 广告匹配素材(精简字段)
4108
+ */
4109
+ type ContentMatchAdMaterial = {
4110
+ /**
4111
+ * 广告业务编码
4112
+ */
4113
+ advertise_code?: string;
4114
+ /**
4115
+ * 广告名称
4116
+ */
4117
+ advertise_name?: string;
4118
+ /**
4119
+ * 跳转地址
4120
+ */
4121
+ advertise_url?: string;
4122
+ /**
4123
+ * 图片素材地址
4124
+ */
4125
+ advertise_icon?: string;
4126
+ /**
4127
+ * PC 端图片素材地址
4128
+ */
4129
+ pc_advertise_icon?: string;
4130
+ /**
4131
+ * 第三方广告类型枚举
4132
+ */
4133
+ advertise_type?: number;
4134
+ /**
4135
+ * 广告文案描述
4136
+ */
4137
+ advertise_desc?: string;
4138
+ /**
4139
+ * 投放开始时间
4140
+ */
4141
+ start_time_stamp?: number;
4142
+ /**
4143
+ * 投放结束时间
4144
+ */
4145
+ end_time_stamp?: number;
4146
+ /**
4147
+ * 扩展展示信息
4148
+ */
4149
+ ad_ext_data?: string;
4150
+ };
4151
+ /**
4152
+ * 信息流广告信息(仅在 ShowVideoInfo.is_ad=true 时返回)
4153
+ */
4154
+ type ContentFeedAdInfo = {
4155
+ /**
4156
+ * 广告业务编码
4157
+ */
4158
+ ad_code?: string;
4159
+ /**
4160
+ * 广告跳转地址
4161
+ */
4162
+ ad_advertise_url?: string;
4163
+ /**
4164
+ * 广告图片地址
4165
+ */
4166
+ ad_advertise_icon?: string;
4167
+ /**
4168
+ * 广告类型枚举
4169
+ */
4170
+ ad_advertise_type?: number;
4171
+ /**
4172
+ * 广告描述
4173
+ */
4174
+ ad_advertise_desc?: string;
4175
+ /**
4176
+ * 广告开始时间戳(毫秒)
4177
+ */
4178
+ ad_start_time?: number;
4179
+ /**
4180
+ * 广告结束时间戳(毫秒)
4181
+ */
4182
+ ad_end_time?: number;
4183
+ /**
4184
+ * 广告扩展数据
4185
+ */
4186
+ ad_ext_data?: string;
4187
+ };
4188
+ /**
4189
+ * 最热视频列表响应
4190
+ */
4191
+ type ContentGetMostPlayedVideoListResponse = {
4192
+ /**
4193
+ * 视频信息(用于首页列表)
4194
+ */
4195
+ videos?: ContentShowVideoInfo[];
4196
+ /**
4197
+ * 下一页游标
4198
+ */
4199
+ cursor?: string;
4200
+ };
4201
+ /**
4202
+ * 广告配置 settings
4203
+ */
4204
+ type ContentMatchAdSettings = {
4205
+ /**
4206
+ * 热启动间隔(分钟)
4207
+ */
4208
+ hot_start_interval_min?: number;
4209
+ /**
4210
+ * 跳过秒数
4211
+ */
4212
+ skip_seconds?: number;
4213
+ /**
4214
+ * 每日最大展示次数
4215
+ */
4216
+ daily_max_show?: number;
4217
+ /**
4218
+ * 触发视频进度(分钟)
4219
+ */
4220
+ trigger_video_progress_min?: number;
4221
+ /**
4222
+ * 返回广告数量
4223
+ */
4224
+ show_count?: number;
4225
+ /**
4226
+ * 信息流插入间隔
4227
+ */
4228
+ feed_insert_interval?: number;
4229
+ /**
4230
+ * 停留时长(秒)
4231
+ */
4232
+ stay_seconds?: number;
4233
+ /**
4234
+ * 配置宽度
4235
+ */
4236
+ advertise_width?: number;
4237
+ /**
4238
+ * 配置高度
4239
+ */
4240
+ advertise_height?: number;
4241
+ };
4242
+ /**
4243
+ * 获取访客权限配置响应
4244
+ */
4245
+ type UserGetVisitorPermissionConfigResponse = {
4246
+ /**
4247
+ * 权限配置
4248
+ */
4249
+ permission_config?: {
4250
+ [key: string]: string;
4251
+ };
4252
+ };
4253
+ /**
4254
+ * 将单个视频同步到 Elasticsearch
4255
+ */
4256
+ type InternalSyncVideoToESRequest = {
4257
+ /**
4258
+ * 视频/专辑 ID
4259
+ */
4260
+ video_id?: string;
4261
+ };
4262
+ /**
4263
+ * 同步单个视频到 Elasticsearch 响应
4264
+ */
4265
+ type InternalSyncVideoToESResponse = {
4266
+ /**
4267
+ * 响应码,0 表示成功
4268
+ */
4269
+ code?: number;
4270
+ /**
4271
+ * 响应消息
4272
+ */
4273
+ message?: string;
4274
+ /**
4275
+ * 响应数据
4276
+ */
4277
+ data?: unknown;
4278
+ };
3780
4279
  type PostApiCommunityPublishContentReqBody = {
3781
4280
  /**
3782
4281
  * 正文内容
@@ -4343,6 +4842,20 @@ type GetApiCommunityGetHotContentListRes = {
4343
4842
  message?: string;
4344
4843
  data: CommunityGetHotContentListResponse;
4345
4844
  };
4845
+ type PostApiCommunityBatchDeleteCollectionReqBody = {
4846
+ /**
4847
+ * 合集ID列表
4848
+ */
4849
+ collection_ids?: string[];
4850
+ };
4851
+ type PostApiCommunityBatchDeleteCollectionRes = {
4852
+ code?: ResultCode;
4853
+ /**
4854
+ * 响应消息
4855
+ */
4856
+ message?: string;
4857
+ data: CommunityBatchDeleteCollectionResponse;
4858
+ };
4346
4859
  type GetApiContentGetVideoDetailByApiQuery = {
4347
4860
  /**
4348
4861
  * 视频编号,必填
@@ -4497,9 +5010,9 @@ type PostApiContentGetNewstVideoListReqBody = {
4497
5010
  */
4498
5011
  tags?: string[];
4499
5012
  /**
4500
- * 分类ID筛选
5013
+ * 分类ID列表筛选(批量)
4501
5014
  */
4502
- cat_id?: string;
5015
+ cat_ids?: string[];
4503
5016
  };
4504
5017
  type PostApiContentGetNewstVideoListRes = {
4505
5018
  code?: ResultCode;
@@ -4523,9 +5036,9 @@ type PostApiContentGetPopularVideoListReqBody = {
4523
5036
  */
4524
5037
  tags?: string[];
4525
5038
  /**
4526
- * 分类ID筛选
5039
+ * 分类ID列表筛选(批量)
4527
5040
  */
4528
- cat_id?: string;
5041
+ cat_ids?: string[];
4529
5042
  };
4530
5043
  type PostApiContentGetPopularVideoListRes = {
4531
5044
  code?: ResultCode;
@@ -4575,9 +5088,9 @@ type GetApiContentGetGuessYouLikeVideosQuery = {
4575
5088
  */
4576
5089
  tags?: string[];
4577
5090
  /**
4578
- * 分类ID筛选
5091
+ * 分类ID列表筛选(批量)
4579
5092
  */
4580
- cat_id?: string;
5093
+ cat_ids?: string[];
4581
5094
  };
4582
5095
  type GetApiContentGetGuessYouLikeVideosRes = {
4583
5096
  code?: ResultCode;
@@ -4637,9 +5150,9 @@ type PostApiContentGetTopRatedVideoListReqBody = {
4637
5150
  */
4638
5151
  tags?: string[];
4639
5152
  /**
4640
- * 分类ID筛选
5153
+ * 分类ID列表筛选(批量)
4641
5154
  */
4642
- cat_id?: string;
5155
+ cat_ids?: string[];
4643
5156
  };
4644
5157
  type PostApiContentGetTopRatedVideoListRes = {
4645
5158
  code?: ResultCode;
@@ -4649,6 +5162,81 @@ type PostApiContentGetTopRatedVideoListRes = {
4649
5162
  message?: string;
4650
5163
  data: ContentGetTopRatedVideoListResponse;
4651
5164
  };
5165
+ type GetApiContentGetSeoConfigQuery = {
5166
+ /**
5167
+ * 数据ID
5168
+ */
5169
+ data_id?: string;
5170
+ /**
5171
+ * 数据类型
5172
+ */
5173
+ data_type?: number;
5174
+ /**
5175
+ * 页面URL
5176
+ */
5177
+ url?: string;
5178
+ };
5179
+ type GetApiContentGetSeoConfigRes = {
5180
+ code?: ResultCode;
5181
+ /**
5182
+ * 响应消息
5183
+ */
5184
+ message?: string;
5185
+ data: ContentGetSeoConfigResponse;
5186
+ };
5187
+ type PostApiContentMatchAdsReqBody = {
5188
+ /**
5189
+ * 广告类型:splash | popup | floating | icon | text | banner | preroll | blind | feed
5190
+ */
5191
+ ad_type?: string;
5192
+ /**
5193
+ * 登录用户 ID,已登录时优先传
5194
+ */
5195
+ user_id?: string;
5196
+ /**
5197
+ * 设备 ID,游客场景必传;已登录时用于兜底频控
5198
+ */
5199
+ device_id?: string;
5200
+ /**
5201
+ * 组件唯一标识(部分广告类型必填)
5202
+ */
5203
+ component_id?: string;
5204
+ scene_context?: ContentAdSceneContext;
5205
+ };
5206
+ type PostApiContentMatchAdsRes = {
5207
+ code?: ResultCode;
5208
+ /**
5209
+ * 响应消息
5210
+ */
5211
+ message?: string;
5212
+ data: ContentMatchAdsResponse;
5213
+ };
5214
+ type PostApiContentGetMostPlayedVideoListReqBody = {
5215
+ /**
5216
+ * 游标,首次为空或不传
5217
+ */
5218
+ cursor?: string;
5219
+ /**
5220
+ * 每页数量
5221
+ */
5222
+ page_size?: number;
5223
+ /**
5224
+ * 标签列表筛选
5225
+ */
5226
+ tags?: string[];
5227
+ /**
5228
+ * 分类ID列表筛选(批量)
5229
+ */
5230
+ cat_ids?: string[];
5231
+ };
5232
+ type PostApiContentGetMostPlayedVideoListRes = {
5233
+ code?: ResultCode;
5234
+ /**
5235
+ * 响应消息
5236
+ */
5237
+ message?: string;
5238
+ data: ContentGetMostPlayedVideoListResponse;
5239
+ };
4652
5240
  type GetApiContentProcessM3u8Query = {
4653
5241
  /**
4654
5242
  * m3u8地址
@@ -4999,6 +5587,30 @@ type PostApiInteractionBrowseReqBody = {
4999
5587
  * 浏览集数标识
5000
5588
  */
5001
5589
  browse_episode?: string;
5590
+ /**
5591
+ * 系列/专辑ID
5592
+ */
5593
+ series_id?: string;
5594
+ /**
5595
+ * 当前播放进度百分比(0-100)
5596
+ */
5597
+ progress?: number;
5598
+ /**
5599
+ * 是否完成观看
5600
+ */
5601
+ is_completed?: boolean;
5602
+ /**
5603
+ * 来源(如:feed)
5604
+ */
5605
+ source?: string;
5606
+ /**
5607
+ * 距离上次上报新增观看秒数
5608
+ */
5609
+ watch_seconds?: number;
5610
+ /**
5611
+ * 播放模式:normal/background/pip
5612
+ */
5613
+ play_mode?: string;
5002
5614
  };
5003
5615
  type PostApiInteractionBrowseRes = {
5004
5616
  code?: ResultCode;
@@ -5808,6 +6420,32 @@ type PostApiInteractionTrackEventsBatchRes = {
5808
6420
  */
5809
6421
  data: Record<string, any>;
5810
6422
  };
6423
+ type PostApiInteractionBatchDeleteFoldersReqBody = {
6424
+ /**
6425
+ * 应用ID
6426
+ */
6427
+ app_id?: number;
6428
+ /**
6429
+ * 用户ID
6430
+ */
6431
+ user_id?: string;
6432
+ /**
6433
+ * 收藏夹ID列表
6434
+ */
6435
+ folder_ids?: string[];
6436
+ /**
6437
+ * 是否同时删除收藏夹内的内容
6438
+ */
6439
+ delete_content?: boolean;
6440
+ };
6441
+ type PostApiInteractionBatchDeleteFoldersRes = {
6442
+ code?: ResultCode;
6443
+ /**
6444
+ * 响应消息
6445
+ */
6446
+ message?: string;
6447
+ data: InteractionBatchDeleteFoldersResponse;
6448
+ };
5811
6449
  type GetApiUserGetGuestIdentityQuery = {
5812
6450
  /**
5813
6451
  * 游客唯一标识
@@ -6220,5 +6858,158 @@ type PostApiUserRegisterByVerifyEmailCodeRes = {
6220
6858
  message?: string;
6221
6859
  data: UserRegisterByVerifyEmailCodeResponse;
6222
6860
  };
6861
+ type GetApiUserGetVisitorPermissionConfigQuery = {
6862
+ /**
6863
+ * User id
6864
+ */
6865
+ user_id?: string;
6866
+ };
6867
+ type GetApiUserGetVisitorPermissionConfigRes = {
6868
+ code?: ResultCode;
6869
+ /**
6870
+ * 响应消息
6871
+ */
6872
+ message?: string;
6873
+ data: UserGetVisitorPermissionConfigResponse;
6874
+ };
6875
+ type PostApiCommerceCreatePaymentReqBody = {
6876
+ /**
6877
+ * 支付类型:alipay/wechat/union/usdt/dyhbPay/digitalRmb
6878
+ */
6879
+ type?: string;
6880
+ /**
6881
+ * 订单金额
6882
+ */
6883
+ money?: string;
6884
+ /**
6885
+ * 商户订单号
6886
+ */
6887
+ trade_no?: string;
6888
+ info?: CommercePaymentPlayerInfo;
6889
+ /**
6890
+ * 支付模式:url/sdk/card
6891
+ */
6892
+ mode?: string;
6893
+ /**
6894
+ * 扩展参数
6895
+ */
6896
+ payload?: string;
6897
+ };
6898
+ type PostApiCommerceCreatePaymentRes = {
6899
+ code?: ResultCode;
6900
+ /**
6901
+ * 响应消息
6902
+ */
6903
+ message?: string;
6904
+ data: CommerceCreatePaymentResponse;
6905
+ };
6906
+ type GetApiCommerceQueryOrderResultQuery = {
6907
+ /**
6908
+ * 商户订单号
6909
+ */
6910
+ trade_no?: string;
6911
+ };
6912
+ type GetApiCommerceQueryOrderResultRes = {
6913
+ code?: ResultCode;
6914
+ /**
6915
+ * 响应消息
6916
+ */
6917
+ message?: string;
6918
+ data: CommerceQueryOrderResultResponse;
6919
+ };
6920
+ type PostApiCommerceGetPaymentMethodsReqBody = {
6921
+ /**
6922
+ * 金额数组
6923
+ */
6924
+ money?: string[];
6925
+ /**
6926
+ * 支付模式:url/sdk
6927
+ */
6928
+ mode?: string;
6929
+ /**
6930
+ * 扩展参数
6931
+ */
6932
+ payload?: string;
6933
+ };
6934
+ type PostApiCommerceGetPaymentMethodsRes = {
6935
+ code?: ResultCode;
6936
+ /**
6937
+ * 响应消息
6938
+ */
6939
+ message?: string;
6940
+ data: CommerceGetPaymentMethodsResponse;
6941
+ };
6942
+ type PostApiCommercePaymentSuccessCallbackReqBody = {
6943
+ /**
6944
+ * 固定值:200
6945
+ */
6946
+ code?: number;
6947
+ /**
6948
+ * 商户编号
6949
+ */
6950
+ merc_id?: string;
6951
+ /**
6952
+ * 平台订单号
6953
+ */
6954
+ oid?: string;
6955
+ /**
6956
+ * 实际到账金额
6957
+ */
6958
+ pay_money?: string;
6959
+ /**
6960
+ * 支付时间
6961
+ */
6962
+ pay_time?: string;
6963
+ /**
6964
+ * 商户订单号
6965
+ */
6966
+ trade_no?: string;
6967
+ /**
6968
+ * 签名
6969
+ */
6970
+ sign?: string;
6971
+ /**
6972
+ * 支付备注参数
6973
+ */
6974
+ payload?: string;
6975
+ };
6976
+ type PostApiCommercePaymentSuccessCallbackRes = {
6977
+ code?: ResultCode;
6978
+ /**
6979
+ * 响应消息
6980
+ */
6981
+ message?: string;
6982
+ data: CommercePaymentSuccessCallbackResponse;
6983
+ };
6984
+ type PostApiCommerceRefundCallbackReqBody = {
6985
+ /**
6986
+ * 固定值:200
6987
+ */
6988
+ code?: number;
6989
+ /**
6990
+ * 商户编号
6991
+ */
6992
+ merc_id?: string;
6993
+ /**
6994
+ * 平台订单号
6995
+ */
6996
+ oid?: string;
6997
+ /**
6998
+ * 商户订单号
6999
+ */
7000
+ trade_no?: string;
7001
+ /**
7002
+ * 签名
7003
+ */
7004
+ sign?: string;
7005
+ };
7006
+ type PostApiCommerceRefundCallbackRes = {
7007
+ code?: ResultCode;
7008
+ /**
7009
+ * 响应消息
7010
+ */
7011
+ message?: string;
7012
+ data: CommerceRefundCallbackResponse;
7013
+ };
6223
7014
  //#endregion
6224
- export { CommunityAddContentToCollectionResponse, CommunityCollectionData, CommunityCollectionDetail, CommunityCollectionInfo, CommunityCommentInfo, CommunityCommentListData, CommunityContentBrief, CommunityContentInfo, CommunityContentInteraction, CommunityContentListData, CommunityCreateCollectionResponse, CommunityCreateCommentResponse, CommunityDeleteCollectionResponse, CommunityDeleteCommentResponse, CommunityDeleteContentResponse, CommunityDislikeCommentResponse, CommunityFollowInfo, CommunityGetCollectionInfoResponse, CommunityGetCommentsResponse, CommunityGetCommentsResponseData, CommunityGetContentInfoResponse, CommunityGetContentListResponse, CommunityGetHotContentListResponse, CommunityGetSubscribedCollectionsResponse, CommunityGetUploadPresignedURLResponse, CommunityGetUserCollectionsResponse, CommunityHotContentInfo, CommunityLikeCommentResponse, CommunityMediaInfo, CommunityMediaTagInfo, CommunityMoveCollectionContentResponse, CommunityPublishContentResponse, CommunitySearchCurAccountFollowingUsersInfoResponse, CommunityShareContentResponse, CommunityShareData, CommunitySubscribeCollectionResponse, CommunityUpdateCollectionResponse, CommunityUpdateContentResponse, CommunityUploadMediaInfo, CommunityUploadMediaResponse, CommunityUserBrief, ContentAdvertiseDetail, ContentAppChannel, ContentAppChannelBlock, ContentAppChannelBlockBanner, ContentAppChannelBlockData, ContentAppComponentCommon, ContentBaseUserInfo, ContentBatchGetVideoDetailResponse, ContentBlockIconInfo, ContentContentInfo, ContentFloatingBallInfo, ContentGetAdvertiseByCodeResponse, ContentGetAppChannelBlockDataResponse, ContentGetAppChannelBlockResponse, ContentGetAppChannelsResponse, ContentGetAppComponentResponse, ContentGetGuessYouLikeVideosResponse, ContentGetHotVideoListResponse, ContentGetNewstVideoListResponse, ContentGetPopularVideoListResponse, ContentGetRecommendSearchListResponse, ContentGetRecommendVideoListResponse, ContentGetTopRatedVideoListResponse, ContentGetVideoDetailByApiResponse, ContentGetVideoDetailResponse, ContentHotVideoInfo, ContentListVisibleFloatingBallResponse, ContentMediaInfo, ContentProcessM3U8Response, ContentRecommendContentAuthor, ContentRecommendContentInfo, ContentRecommendContentInteraction, ContentRecommendContentList, ContentRecommendContentMedia, ContentRecommendInfo, ContentRecommendUserInfo, ContentRecommendUserList, ContentRecommendVideoInfo, ContentRecommendVideoList, ContentShowVideoInfo, ContentTag, ContentVideoDetail, ContentVideoEpisodeMedium, ContentVideoEpisodeProto, ContentVideoLink, ContentVideoStatic, GetApiCommunityGetCollectionInfoQuery, GetApiCommunityGetCollectionInfoRes, GetApiCommunityGetCommentsQuery, GetApiCommunityGetCommentsRes, GetApiCommunityGetContentInfoQuery, GetApiCommunityGetContentInfoRes, GetApiCommunityGetContentListQuery, GetApiCommunityGetContentListRes, GetApiCommunityGetHotContentListQuery, GetApiCommunityGetHotContentListRes, GetApiCommunityGetSubscribedCollectionsQuery, GetApiCommunityGetSubscribedCollectionsRes, GetApiCommunityGetUserCollectionsQuery, GetApiCommunityGetUserCollectionsRes, GetApiContentGetAdvertiseByCodeQuery, GetApiContentGetAdvertiseByCodeRes, GetApiContentGetAppChannelBlockDataQuery, GetApiContentGetAppChannelBlockDataRes, GetApiContentGetAppChannelBlockQuery, GetApiContentGetAppChannelBlockRes, GetApiContentGetAppChannelsQuery, GetApiContentGetAppChannelsRes, GetApiContentGetAppComponentRes, GetApiContentGetGuessYouLikeVideosQuery, GetApiContentGetGuessYouLikeVideosRes, GetApiContentGetHotVideoListQuery, GetApiContentGetHotVideoListRes, GetApiContentGetRecommendSearchListQuery, GetApiContentGetRecommendSearchListRes, GetApiContentGetRecommendVideoListQuery, GetApiContentGetRecommendVideoListRes, GetApiContentGetVideoDetailByApiQuery, GetApiContentGetVideoDetailByApiRes, GetApiContentGetVideoDetailQuery, GetApiContentGetVideoDetailRes, GetApiContentListVisibleFloatingBallQuery, GetApiContentListVisibleFloatingBallRes, GetApiContentProcessM3u8Query, GetApiContentProcessM3u8Res, GetApiInteractionCheckMutualFollowQuery, GetApiInteractionCheckMutualFollowRes, GetApiInteractionGetBrowseListQuery, GetApiInteractionGetBrowseListRes, GetApiInteractionGetContentDislikeListQuery, GetApiInteractionGetContentDislikeListRes, GetApiInteractionGetContentLikeListQuery, GetApiInteractionGetContentLikeListRes, GetApiInteractionGetDislikeListQuery, GetApiInteractionGetDislikeListRes, GetApiInteractionGetFolderQuery, GetApiInteractionGetFolderRes, GetApiInteractionGetFolderStatsQuery, GetApiInteractionGetFolderStatsRes, GetApiInteractionGetFollowStatsQuery, GetApiInteractionGetFollowStatsRes, GetApiInteractionGetFollowerListQuery, GetApiInteractionGetFollowerListRes, GetApiInteractionGetFollowingContentListQuery, GetApiInteractionGetFollowingContentListRes, GetApiInteractionGetFollowingListQuery, GetApiInteractionGetFollowingListRes, GetApiInteractionGetFollowingUserUpdatesQuery, GetApiInteractionGetFollowingUserUpdatesRes, GetApiInteractionGetLikeListQuery, GetApiInteractionGetLikeListRes, GetApiInteractionListCollectsQuery, GetApiInteractionListCollectsRes, GetApiInteractionListFoldersQuery, GetApiInteractionListFoldersRes, GetApiUserGetGuestIdentityQuery, GetApiUserGetGuestIdentityRes, GetApiUserGetUserEditInfoQuery, GetApiUserGetUserEditInfoRes, GetApiUserGetUserInfoQuery, GetApiUserGetUserInfoRes, GetApiUserGetUserPrivacySettingsQuery, GetApiUserGetUserPrivacySettingsRes, GetApiUserViewUserInfoQuery, GetApiUserViewUserInfoRes, InteractionAddCollectResponse, InteractionBatchClearBrowseResponse, InteractionBatchDeleteCollectsResponse, InteractionBatchGetCommentLikeStatusResponse, InteractionBatchGetFollowStatsResponse, InteractionBatchGetLikeStatusResponse, InteractionBatchQueryContentInteractionsResponse, InteractionBrowseItem, InteractionBrowseRecord, InteractionBrowseResponse, InteractionCancelDislikeResponse, InteractionCancelLikeResponse, InteractionCheckCollectResponse, InteractionCheckFollowResponse, InteractionCheckMutualFollowResponse, InteractionClearBrowseHistoryResponse, InteractionCollectInfo, InteractionCollectItem, InteractionContentInteraction, InteractionContentInteractionStatus, InteractionCreateFolderResponse, InteractionDeleteFolderResponse, InteractionDislikeResponse, InteractionEpisode, InteractionFolderInfo, InteractionFolderStats, InteractionFollowInfoItem, InteractionFollowResponse, InteractionFollowingContentItem, InteractionGetBrowseListResponse, InteractionGetContentDislikeListResponse, InteractionGetContentLikeListResponse, InteractionGetDislikeListResponse, InteractionGetFolderResponse, InteractionGetFolderStatsResponse, InteractionGetFollowStatsResponse, InteractionGetFollowerListResponse, InteractionGetFollowingContentListResponse, InteractionGetFollowingListResponse, InteractionGetFollowingUserUpdatesResponse, InteractionGetLikeListResponse, InteractionLikeInfo, InteractionLikeItem, InteractionLikeResponse, InteractionLikeStatusItem, InteractionListCollectsResponse, InteractionListFoldersResponse, InteractionMediaInfo, InteractionMoveCollectsResponse, InteractionPostInfo, InteractionRemoveCollectResponse, InteractionTrackEvent, InteractionUnfollowResponse, InteractionUnifiedBatchLikeDislikeResponse, InteractionUnifiedBatchLikeDislikeResult, InteractionUserBrief, InteractionVideoDetailNested, InteractionVideoInfo, InteractionVideoMedia, InteractionVideoTag, InternalReplayVideoDetailPrewarmData, InternalReplayVideoDetailPrewarmRequest, InternalReplayVideoDetailPrewarmResponse, PostApiCommunityAddContentToCollectionReqBody, PostApiCommunityAddContentToCollectionRes, PostApiCommunityCreateCollectionReqBody, PostApiCommunityCreateCollectionRes, PostApiCommunityCreateCommentReqBody, PostApiCommunityCreateCommentRes, PostApiCommunityDeleteCollectionReqBody, PostApiCommunityDeleteCollectionRes, PostApiCommunityDeleteCommentReqBody, PostApiCommunityDeleteCommentRes, PostApiCommunityDeleteContentReqBody, PostApiCommunityDeleteContentRes, PostApiCommunityDislikeCommentReqBody, PostApiCommunityDislikeCommentRes, PostApiCommunityGetUploadPresignedURLReqBody, PostApiCommunityGetUploadPresignedURLRes, PostApiCommunityLikeCommentReqBody, PostApiCommunityLikeCommentRes, PostApiCommunityMoveCollectionContentReqBody, PostApiCommunityMoveCollectionContentRes, PostApiCommunityPublishContentReqBody, PostApiCommunityPublishContentRes, PostApiCommunityRemoveContentFromCollectionReqBody, PostApiCommunityRemoveContentFromCollectionRes, PostApiCommunitySearchCurAccountFollowingUsersInfoReqBody, PostApiCommunitySearchCurAccountFollowingUsersInfoRes, PostApiCommunityShareContentReqBody, PostApiCommunityShareContentRes, PostApiCommunitySubscribeCollectionReqBody, PostApiCommunitySubscribeCollectionRes, PostApiCommunityUpdateCollectionReqBody, PostApiCommunityUpdateCollectionRes, PostApiCommunityUpdateContentReqBody, PostApiCommunityUpdateContentRes, PostApiCommunityUploadMediaReqBody, PostApiCommunityUploadMediaRes, PostApiContentBatchGetVideoDetailReqBody, PostApiContentBatchGetVideoDetailRes, PostApiContentGetNewstVideoListReqBody, PostApiContentGetNewstVideoListRes, PostApiContentGetPopularVideoListReqBody, PostApiContentGetPopularVideoListRes, PostApiContentGetTopRatedVideoListReqBody, PostApiContentGetTopRatedVideoListRes, PostApiInteractionAddCollectReqBody, PostApiInteractionAddCollectRes, PostApiInteractionBatchClearBrowseReqBody, PostApiInteractionBatchClearBrowseRes, PostApiInteractionBatchDeleteCollectsReqBody, PostApiInteractionBatchDeleteCollectsRes, PostApiInteractionBatchGetCommentLikeStatusReqBody, PostApiInteractionBatchGetCommentLikeStatusRes, PostApiInteractionBatchGetFollowStatsReqBody, PostApiInteractionBatchGetFollowStatsRes, PostApiInteractionBatchGetLikeStatusReqBody, PostApiInteractionBatchGetLikeStatusRes, PostApiInteractionBatchQueryContentInteractionsReqBody, PostApiInteractionBatchQueryContentInteractionsRes, PostApiInteractionBrowseReqBody, PostApiInteractionBrowseRes, PostApiInteractionCancelDislikeReqBody, PostApiInteractionCancelDislikeRes, PostApiInteractionCancelLikeReqBody, PostApiInteractionCancelLikeRes, PostApiInteractionCheckCollectReqBody, PostApiInteractionCheckCollectRes, PostApiInteractionCheckFollowReqBody, PostApiInteractionCheckFollowRes, PostApiInteractionClearBrowseHistoryReqBody, PostApiInteractionClearBrowseHistoryRes, PostApiInteractionCreateFolderReqBody, PostApiInteractionCreateFolderRes, PostApiInteractionDeleteBrowseRecordReqBody, PostApiInteractionDeleteBrowseRecordRes, PostApiInteractionDeleteFolderReqBody, PostApiInteractionDeleteFolderRes, PostApiInteractionDislikeCommentReqBody, PostApiInteractionDislikeCommentRes, PostApiInteractionDislikeReqBody, PostApiInteractionDislikeRes, PostApiInteractionFollowReqBody, PostApiInteractionFollowRes, PostApiInteractionLikeCommentReqBody, PostApiInteractionLikeCommentRes, PostApiInteractionLikeReqBody, PostApiInteractionLikeRes, PostApiInteractionMoveCollectsReqBody, PostApiInteractionMoveCollectsRes, PostApiInteractionRemoveCollectReqBody, PostApiInteractionRemoveCollectRes, PostApiInteractionTrackEventsBatchReqBody, PostApiInteractionTrackEventsBatchRes, PostApiInteractionUnfollowReqBody, PostApiInteractionUnfollowRes, PostApiInteractionUnifiedBatchLikeDislikeReqBody, PostApiInteractionUnifiedBatchLikeDislikeRes, PostApiInteractionUpdateFolderReqBody, PostApiInteractionUpdateFolderRes, PostApiInteractionUpdateFollowingContentUpdateTimeReqBody, PostApiInteractionUpdateFollowingContentUpdateTimeRes, PostApiUserEditUserInfoReqBody, PostApiUserEditUserInfoRes, PostApiUserLoginReqBody, PostApiUserLoginRes, PostApiUserRegisterByVerifyEmailCodeReqBody, PostApiUserRegisterByVerifyEmailCodeRes, PostApiUserRegisterReqBody, PostApiUserRegisterRes, PostApiUserResetForgetPasswordReqBody, PostApiUserResetForgetPasswordRes, PostApiUserResetPasswordReqBody, PostApiUserResetPasswordRes, PostApiUserSendEmailCodeReqBody, PostApiUserSendEmailCodeRes, PostApiUserSendForgetEmailCodeReqBody, PostApiUserSendForgetEmailCodeRes, PostApiUserSendResetPasswordEmailCodeReqBody, PostApiUserSendResetPasswordEmailCodeRes, PostApiUserUploadUserBgImageReqBody, PostApiUserUploadUserBgImageRes, PostApiUserUserFeedbackReqBody, PostApiUserUserFeedbackRes, PostApiUserUserPrivacySettingsReqBody, PostApiUserUserPrivacySettingsRes, PostApiUserVerifyEmailCodeReqBody, PostApiUserVerifyEmailCodeRes, PostApiUserVerifyForgetEmailCodeReqBody, PostApiUserVerifyForgetEmailCodeRes, PostApiUserVerifyResetPasswordEmailCodeReqBody, PostApiUserVerifyResetPasswordEmailCodeRes, Result, ResultCode, ResultGrpc, UserGetGuestIdentityResponse, UserGetUserEditInfoResponse, UserGetUserInfoResponse, UserGetUserPrivacySettingsResponse, UserLoginResponse, UserRegisterByVerifyEmailCodeResponse, UserRegisterResponse, UserViewUserInfoResponse };
7015
+ export { CommerceCreatePaymentResponse, CommerceGetPaymentMethodsResponse, CommerceOrderResult, CommercePaymentCardInfo, CommercePaymentMethod, CommercePaymentMethodGroup, CommercePaymentPlayerInfo, CommercePaymentSuccessCallbackResponse, CommerceQueryOrderResultResponse, CommerceRefundCallbackResponse, CommunityAddContentToCollectionResponse, CommunityBatchDeleteCollectionResponse, CommunityCollectionData, CommunityCollectionDetail, CommunityCollectionInfo, CommunityCommentInfo, CommunityCommentListData, CommunityContentBrief, CommunityContentInfo, CommunityContentInteraction, CommunityContentListData, CommunityCreateCollectionResponse, CommunityCreateCommentResponse, CommunityDeleteCollectionResponse, CommunityDeleteCommentResponse, CommunityDeleteContentResponse, CommunityDislikeCommentResponse, CommunityFollowInfo, CommunityGetCollectionInfoResponse, CommunityGetCommentsResponse, CommunityGetCommentsResponseData, CommunityGetContentInfoResponse, CommunityGetContentListResponse, CommunityGetHotContentListResponse, CommunityGetSubscribedCollectionsResponse, CommunityGetUploadPresignedURLResponse, CommunityGetUserCollectionsResponse, CommunityHotContentInfo, CommunityLikeCommentResponse, CommunityMediaInfo, CommunityMediaTagInfo, CommunityMoveCollectionContentResponse, CommunityPublishContentResponse, CommunitySearchCurAccountFollowingUsersInfoResponse, CommunityShareContentResponse, CommunityShareData, CommunitySubscribeCollectionResponse, CommunityUpdateCollectionResponse, CommunityUpdateContentResponse, CommunityUploadMediaInfo, CommunityUploadMediaResponse, CommunityUserBrief, ContentAdSceneContext, ContentAdvertiseDetail, ContentAppChannel, ContentAppChannelBlock, ContentAppChannelBlockBanner, ContentAppChannelBlockData, ContentAppComponentCommon, ContentBaseUserInfo, ContentBatchGetVideoDetailResponse, ContentBlockIconInfo, ContentContentInfo, ContentFeedAdInfo, ContentFloatingBallInfo, ContentGeoConfig, ContentGeoFaq, ContentGetAdvertiseByCodeResponse, ContentGetAppChannelBlockDataResponse, ContentGetAppChannelBlockResponse, ContentGetAppChannelsResponse, ContentGetAppComponentResponse, ContentGetGuessYouLikeVideosResponse, ContentGetHotVideoListResponse, ContentGetMostPlayedVideoListResponse, ContentGetNewstVideoListResponse, ContentGetPopularVideoListResponse, ContentGetRecommendSearchListResponse, ContentGetRecommendVideoListResponse, ContentGetSeoConfigResponse, ContentGetTopRatedVideoListResponse, ContentGetVideoDetailByApiResponse, ContentGetVideoDetailResponse, ContentHotVideoInfo, ContentListVisibleFloatingBallResponse, ContentMatchAdMaterial, ContentMatchAdSettings, ContentMatchAdsResponse, ContentMediaInfo, ContentProcessM3U8Response, ContentRecommendContentAuthor, ContentRecommendContentInfo, ContentRecommendContentInteraction, ContentRecommendContentList, ContentRecommendContentMedia, ContentRecommendInfo, ContentRecommendUserInfo, ContentRecommendUserList, ContentRecommendVideoInfo, ContentRecommendVideoList, ContentSeoConfig, ContentShowVideoInfo, ContentTag, ContentVideoDetail, ContentVideoEpisodeMedium, ContentVideoEpisodeProto, ContentVideoLink, ContentVideoStatic, GetApiCommerceQueryOrderResultQuery, GetApiCommerceQueryOrderResultRes, GetApiCommunityGetCollectionInfoQuery, GetApiCommunityGetCollectionInfoRes, GetApiCommunityGetCommentsQuery, GetApiCommunityGetCommentsRes, GetApiCommunityGetContentInfoQuery, GetApiCommunityGetContentInfoRes, GetApiCommunityGetContentListQuery, GetApiCommunityGetContentListRes, GetApiCommunityGetHotContentListQuery, GetApiCommunityGetHotContentListRes, GetApiCommunityGetSubscribedCollectionsQuery, GetApiCommunityGetSubscribedCollectionsRes, GetApiCommunityGetUserCollectionsQuery, GetApiCommunityGetUserCollectionsRes, GetApiContentGetAdvertiseByCodeQuery, GetApiContentGetAdvertiseByCodeRes, GetApiContentGetAppChannelBlockDataQuery, GetApiContentGetAppChannelBlockDataRes, GetApiContentGetAppChannelBlockQuery, GetApiContentGetAppChannelBlockRes, GetApiContentGetAppChannelsQuery, GetApiContentGetAppChannelsRes, GetApiContentGetAppComponentRes, GetApiContentGetGuessYouLikeVideosQuery, GetApiContentGetGuessYouLikeVideosRes, GetApiContentGetHotVideoListQuery, GetApiContentGetHotVideoListRes, GetApiContentGetRecommendSearchListQuery, GetApiContentGetRecommendSearchListRes, GetApiContentGetRecommendVideoListQuery, GetApiContentGetRecommendVideoListRes, GetApiContentGetSeoConfigQuery, GetApiContentGetSeoConfigRes, GetApiContentGetVideoDetailByApiQuery, GetApiContentGetVideoDetailByApiRes, GetApiContentGetVideoDetailQuery, GetApiContentGetVideoDetailRes, GetApiContentListVisibleFloatingBallQuery, GetApiContentListVisibleFloatingBallRes, GetApiContentProcessM3u8Query, GetApiContentProcessM3u8Res, GetApiInteractionCheckMutualFollowQuery, GetApiInteractionCheckMutualFollowRes, GetApiInteractionGetBrowseListQuery, GetApiInteractionGetBrowseListRes, GetApiInteractionGetContentDislikeListQuery, GetApiInteractionGetContentDislikeListRes, GetApiInteractionGetContentLikeListQuery, GetApiInteractionGetContentLikeListRes, GetApiInteractionGetDislikeListQuery, GetApiInteractionGetDislikeListRes, GetApiInteractionGetFolderQuery, GetApiInteractionGetFolderRes, GetApiInteractionGetFolderStatsQuery, GetApiInteractionGetFolderStatsRes, GetApiInteractionGetFollowStatsQuery, GetApiInteractionGetFollowStatsRes, GetApiInteractionGetFollowerListQuery, GetApiInteractionGetFollowerListRes, GetApiInteractionGetFollowingContentListQuery, GetApiInteractionGetFollowingContentListRes, GetApiInteractionGetFollowingListQuery, GetApiInteractionGetFollowingListRes, GetApiInteractionGetFollowingUserUpdatesQuery, GetApiInteractionGetFollowingUserUpdatesRes, GetApiInteractionGetLikeListQuery, GetApiInteractionGetLikeListRes, GetApiInteractionListCollectsQuery, GetApiInteractionListCollectsRes, GetApiInteractionListFoldersQuery, GetApiInteractionListFoldersRes, GetApiUserGetGuestIdentityQuery, GetApiUserGetGuestIdentityRes, GetApiUserGetUserEditInfoQuery, GetApiUserGetUserEditInfoRes, GetApiUserGetUserInfoQuery, GetApiUserGetUserInfoRes, GetApiUserGetUserPrivacySettingsQuery, GetApiUserGetUserPrivacySettingsRes, GetApiUserGetVisitorPermissionConfigQuery, GetApiUserGetVisitorPermissionConfigRes, GetApiUserViewUserInfoQuery, GetApiUserViewUserInfoRes, GoogleProtobufAny, InteractionAddCollectResponse, InteractionBatchClearBrowseResponse, InteractionBatchDeleteCollectsResponse, InteractionBatchDeleteFoldersResponse, InteractionBatchGetCommentLikeStatusResponse, InteractionBatchGetFollowStatsResponse, InteractionBatchGetLikeStatusResponse, InteractionBatchQueryContentInteractionsResponse, InteractionBrowseItem, InteractionBrowseRecord, InteractionBrowseResponse, InteractionCancelDislikeResponse, InteractionCancelLikeResponse, InteractionCheckCollectResponse, InteractionCheckFollowResponse, InteractionCheckMutualFollowResponse, InteractionClearBrowseHistoryResponse, InteractionCollectInfo, InteractionCollectItem, InteractionContentInteraction, InteractionContentInteractionStatus, InteractionCreateFolderResponse, InteractionDeleteFolderResponse, InteractionDislikeResponse, InteractionEpisode, InteractionFolderInfo, InteractionFolderStats, InteractionFollowInfoItem, InteractionFollowResponse, InteractionFollowingContentItem, InteractionGetBrowseListResponse, InteractionGetContentDislikeListResponse, InteractionGetContentLikeListResponse, InteractionGetDislikeListResponse, InteractionGetFolderResponse, InteractionGetFolderStatsResponse, InteractionGetFollowStatsResponse, InteractionGetFollowerListResponse, InteractionGetFollowingContentListResponse, InteractionGetFollowingListResponse, InteractionGetFollowingUserUpdatesResponse, InteractionGetLikeListResponse, InteractionLikeInfo, InteractionLikeItem, InteractionLikeResponse, InteractionLikeStatusItem, InteractionListCollectsResponse, InteractionListFoldersResponse, InteractionMediaInfo, InteractionMoveCollectsResponse, InteractionPostInfo, InteractionRemoveCollectResponse, InteractionTrackEvent, InteractionUnfollowResponse, InteractionUnifiedBatchLikeDislikeResponse, InteractionUnifiedBatchLikeDislikeResult, InteractionUserBrief, InteractionVideoDetailNested, InteractionVideoInfo, InteractionVideoMedia, InteractionVideoTag, InternalReplayVideoDetailPrewarmData, InternalReplayVideoDetailPrewarmRequest, InternalReplayVideoDetailPrewarmResponse, InternalSyncVideoToESRequest, InternalSyncVideoToESResponse, PostApiCommerceCreatePaymentReqBody, PostApiCommerceCreatePaymentRes, PostApiCommerceGetPaymentMethodsReqBody, PostApiCommerceGetPaymentMethodsRes, PostApiCommercePaymentSuccessCallbackReqBody, PostApiCommercePaymentSuccessCallbackRes, PostApiCommerceRefundCallbackReqBody, PostApiCommerceRefundCallbackRes, PostApiCommunityAddContentToCollectionReqBody, PostApiCommunityAddContentToCollectionRes, PostApiCommunityBatchDeleteCollectionReqBody, PostApiCommunityBatchDeleteCollectionRes, PostApiCommunityCreateCollectionReqBody, PostApiCommunityCreateCollectionRes, PostApiCommunityCreateCommentReqBody, PostApiCommunityCreateCommentRes, PostApiCommunityDeleteCollectionReqBody, PostApiCommunityDeleteCollectionRes, PostApiCommunityDeleteCommentReqBody, PostApiCommunityDeleteCommentRes, PostApiCommunityDeleteContentReqBody, PostApiCommunityDeleteContentRes, PostApiCommunityDislikeCommentReqBody, PostApiCommunityDislikeCommentRes, PostApiCommunityGetUploadPresignedURLReqBody, PostApiCommunityGetUploadPresignedURLRes, PostApiCommunityLikeCommentReqBody, PostApiCommunityLikeCommentRes, PostApiCommunityMoveCollectionContentReqBody, PostApiCommunityMoveCollectionContentRes, PostApiCommunityPublishContentReqBody, PostApiCommunityPublishContentRes, PostApiCommunityRemoveContentFromCollectionReqBody, PostApiCommunityRemoveContentFromCollectionRes, PostApiCommunitySearchCurAccountFollowingUsersInfoReqBody, PostApiCommunitySearchCurAccountFollowingUsersInfoRes, PostApiCommunityShareContentReqBody, PostApiCommunityShareContentRes, PostApiCommunitySubscribeCollectionReqBody, PostApiCommunitySubscribeCollectionRes, PostApiCommunityUpdateCollectionReqBody, PostApiCommunityUpdateCollectionRes, PostApiCommunityUpdateContentReqBody, PostApiCommunityUpdateContentRes, PostApiCommunityUploadMediaReqBody, PostApiCommunityUploadMediaRes, PostApiContentBatchGetVideoDetailReqBody, PostApiContentBatchGetVideoDetailRes, PostApiContentGetMostPlayedVideoListReqBody, PostApiContentGetMostPlayedVideoListRes, PostApiContentGetNewstVideoListReqBody, PostApiContentGetNewstVideoListRes, PostApiContentGetPopularVideoListReqBody, PostApiContentGetPopularVideoListRes, PostApiContentGetTopRatedVideoListReqBody, PostApiContentGetTopRatedVideoListRes, PostApiContentMatchAdsReqBody, PostApiContentMatchAdsRes, PostApiInteractionAddCollectReqBody, PostApiInteractionAddCollectRes, PostApiInteractionBatchClearBrowseReqBody, PostApiInteractionBatchClearBrowseRes, PostApiInteractionBatchDeleteCollectsReqBody, PostApiInteractionBatchDeleteCollectsRes, PostApiInteractionBatchDeleteFoldersReqBody, PostApiInteractionBatchDeleteFoldersRes, PostApiInteractionBatchGetCommentLikeStatusReqBody, PostApiInteractionBatchGetCommentLikeStatusRes, PostApiInteractionBatchGetFollowStatsReqBody, PostApiInteractionBatchGetFollowStatsRes, PostApiInteractionBatchGetLikeStatusReqBody, PostApiInteractionBatchGetLikeStatusRes, PostApiInteractionBatchQueryContentInteractionsReqBody, PostApiInteractionBatchQueryContentInteractionsRes, PostApiInteractionBrowseReqBody, PostApiInteractionBrowseRes, PostApiInteractionCancelDislikeReqBody, PostApiInteractionCancelDislikeRes, PostApiInteractionCancelLikeReqBody, PostApiInteractionCancelLikeRes, PostApiInteractionCheckCollectReqBody, PostApiInteractionCheckCollectRes, PostApiInteractionCheckFollowReqBody, PostApiInteractionCheckFollowRes, PostApiInteractionClearBrowseHistoryReqBody, PostApiInteractionClearBrowseHistoryRes, PostApiInteractionCreateFolderReqBody, PostApiInteractionCreateFolderRes, PostApiInteractionDeleteBrowseRecordReqBody, PostApiInteractionDeleteBrowseRecordRes, PostApiInteractionDeleteFolderReqBody, PostApiInteractionDeleteFolderRes, PostApiInteractionDislikeCommentReqBody, PostApiInteractionDislikeCommentRes, PostApiInteractionDislikeReqBody, PostApiInteractionDislikeRes, PostApiInteractionFollowReqBody, PostApiInteractionFollowRes, PostApiInteractionLikeCommentReqBody, PostApiInteractionLikeCommentRes, PostApiInteractionLikeReqBody, PostApiInteractionLikeRes, PostApiInteractionMoveCollectsReqBody, PostApiInteractionMoveCollectsRes, PostApiInteractionRemoveCollectReqBody, PostApiInteractionRemoveCollectRes, PostApiInteractionTrackEventsBatchReqBody, PostApiInteractionTrackEventsBatchRes, PostApiInteractionUnfollowReqBody, PostApiInteractionUnfollowRes, PostApiInteractionUnifiedBatchLikeDislikeReqBody, PostApiInteractionUnifiedBatchLikeDislikeRes, PostApiInteractionUpdateFolderReqBody, PostApiInteractionUpdateFolderRes, PostApiInteractionUpdateFollowingContentUpdateTimeReqBody, PostApiInteractionUpdateFollowingContentUpdateTimeRes, PostApiUserEditUserInfoReqBody, PostApiUserEditUserInfoRes, PostApiUserLoginReqBody, PostApiUserLoginRes, PostApiUserRegisterByVerifyEmailCodeReqBody, PostApiUserRegisterByVerifyEmailCodeRes, PostApiUserRegisterReqBody, PostApiUserRegisterRes, PostApiUserResetForgetPasswordReqBody, PostApiUserResetForgetPasswordRes, PostApiUserResetPasswordReqBody, PostApiUserResetPasswordRes, PostApiUserSendEmailCodeReqBody, PostApiUserSendEmailCodeRes, PostApiUserSendForgetEmailCodeReqBody, PostApiUserSendForgetEmailCodeRes, PostApiUserSendResetPasswordEmailCodeReqBody, PostApiUserSendResetPasswordEmailCodeRes, PostApiUserUploadUserBgImageReqBody, PostApiUserUploadUserBgImageRes, PostApiUserUserFeedbackReqBody, PostApiUserUserFeedbackRes, PostApiUserUserPrivacySettingsReqBody, PostApiUserUserPrivacySettingsRes, PostApiUserVerifyEmailCodeReqBody, PostApiUserVerifyEmailCodeRes, PostApiUserVerifyForgetEmailCodeReqBody, PostApiUserVerifyForgetEmailCodeRes, PostApiUserVerifyResetPasswordEmailCodeReqBody, PostApiUserVerifyResetPasswordEmailCodeRes, Result, ResultCode, ResultGrpc, Status, UserGetGuestIdentityResponse, UserGetUserEditInfoResponse, UserGetUserInfoResponse, UserGetUserPrivacySettingsResponse, UserGetVisitorPermissionConfigResponse, UserLoginResponse, UserRegisterByVerifyEmailCodeResponse, UserRegisterResponse, UserViewUserInfoResponse };