@dan-uni/dan-any 0.0.2

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.
@@ -0,0 +1,3426 @@
1
+ import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
2
+ import type { Message } from "@bufbuild/protobuf";
3
+ /**
4
+ * Describes the file bili/dm.proto.
5
+ */
6
+ export declare const file_bili_dm: GenFile;
7
+ /**
8
+ * @generated from message bilibili.community.service.dm.v1.Avatar
9
+ */
10
+ export type Avatar = Message<"bilibili.community.service.dm.v1.Avatar"> & {
11
+ /**
12
+ * @generated from field: string id = 1;
13
+ */
14
+ id: string;
15
+ /**
16
+ * @generated from field: string url = 2;
17
+ */
18
+ url: string;
19
+ /**
20
+ * @generated from field: bilibili.community.service.dm.v1.AvatarType avatar_type = 3;
21
+ */
22
+ avatarType: AvatarType;
23
+ };
24
+ /**
25
+ * Describes the message bilibili.community.service.dm.v1.Avatar.
26
+ * Use `create(AvatarSchema)` to create a new message.
27
+ */
28
+ export declare const AvatarSchema: GenMessage<Avatar>;
29
+ /**
30
+ * @generated from message bilibili.community.service.dm.v1.Bubble
31
+ */
32
+ export type Bubble = Message<"bilibili.community.service.dm.v1.Bubble"> & {
33
+ /**
34
+ * @generated from field: string text = 1;
35
+ */
36
+ text: string;
37
+ /**
38
+ * @generated from field: string url = 2;
39
+ */
40
+ url: string;
41
+ };
42
+ /**
43
+ * Describes the message bilibili.community.service.dm.v1.Bubble.
44
+ * Use `create(BubbleSchema)` to create a new message.
45
+ */
46
+ export declare const BubbleSchema: GenMessage<Bubble>;
47
+ /**
48
+ * @generated from message bilibili.community.service.dm.v1.BubbleV2
49
+ */
50
+ export type BubbleV2 = Message<"bilibili.community.service.dm.v1.BubbleV2"> & {
51
+ /**
52
+ * @generated from field: string text = 1;
53
+ */
54
+ text: string;
55
+ /**
56
+ * @generated from field: string url = 2;
57
+ */
58
+ url: string;
59
+ /**
60
+ * @generated from field: bilibili.community.service.dm.v1.BubbleType bubble_type = 3;
61
+ */
62
+ bubbleType: BubbleType;
63
+ /**
64
+ * @generated from field: bool exposure_once = 4;
65
+ */
66
+ exposureOnce: boolean;
67
+ /**
68
+ * @generated from field: bilibili.community.service.dm.v1.ExposureType exposure_type = 5;
69
+ */
70
+ exposureType: ExposureType;
71
+ };
72
+ /**
73
+ * Describes the message bilibili.community.service.dm.v1.BubbleV2.
74
+ * Use `create(BubbleV2Schema)` to create a new message.
75
+ */
76
+ export declare const BubbleV2Schema: GenMessage<BubbleV2>;
77
+ /**
78
+ * @generated from message bilibili.community.service.dm.v1.Button
79
+ */
80
+ export type Button = Message<"bilibili.community.service.dm.v1.Button"> & {
81
+ /**
82
+ *
83
+ *
84
+ * @generated from field: string text = 1;
85
+ */
86
+ text: string;
87
+ /**
88
+ *
89
+ *
90
+ * @generated from field: bilibili.community.service.dm.v1.ToastFunctionType action = 2;
91
+ */
92
+ action: ToastFunctionType;
93
+ };
94
+ /**
95
+ * Describes the message bilibili.community.service.dm.v1.Button.
96
+ * Use `create(ButtonSchema)` to create a new message.
97
+ */
98
+ export declare const ButtonSchema: GenMessage<Button>;
99
+ /**
100
+ * @generated from message bilibili.community.service.dm.v1.BuzzwordConfig
101
+ */
102
+ export type BuzzwordConfig = Message<"bilibili.community.service.dm.v1.BuzzwordConfig"> & {
103
+ /**
104
+ * @generated from field: repeated bilibili.community.service.dm.v1.BuzzwordShowConfig keywords = 1;
105
+ */
106
+ keywords: BuzzwordShowConfig[];
107
+ };
108
+ /**
109
+ * Describes the message bilibili.community.service.dm.v1.BuzzwordConfig.
110
+ * Use `create(BuzzwordConfigSchema)` to create a new message.
111
+ */
112
+ export declare const BuzzwordConfigSchema: GenMessage<BuzzwordConfig>;
113
+ /**
114
+ * @generated from message bilibili.community.service.dm.v1.BuzzwordShowConfig
115
+ */
116
+ export type BuzzwordShowConfig = Message<"bilibili.community.service.dm.v1.BuzzwordShowConfig"> & {
117
+ /**
118
+ * @generated from field: string name = 1;
119
+ */
120
+ name: string;
121
+ /**
122
+ * @generated from field: string schema = 2;
123
+ */
124
+ schema: string;
125
+ /**
126
+ * @generated from field: int32 source = 3;
127
+ */
128
+ source: number;
129
+ /**
130
+ * @generated from field: int64 id = 4;
131
+ */
132
+ id: bigint;
133
+ /**
134
+ * @generated from field: int64 buzzword_id = 5;
135
+ */
136
+ buzzwordId: bigint;
137
+ /**
138
+ * @generated from field: int32 schema_type = 6;
139
+ */
140
+ schemaType: number;
141
+ };
142
+ /**
143
+ * Describes the message bilibili.community.service.dm.v1.BuzzwordShowConfig.
144
+ * Use `create(BuzzwordShowConfigSchema)` to create a new message.
145
+ */
146
+ export declare const BuzzwordShowConfigSchema: GenMessage<BuzzwordShowConfig>;
147
+ /**
148
+ * @generated from message bilibili.community.service.dm.v1.CheckBox
149
+ */
150
+ export type CheckBox = Message<"bilibili.community.service.dm.v1.CheckBox"> & {
151
+ /**
152
+ * @generated from field: string text = 1;
153
+ */
154
+ text: string;
155
+ /**
156
+ * @generated from field: bilibili.community.service.dm.v1.CheckboxType type = 2;
157
+ */
158
+ type: CheckboxType;
159
+ /**
160
+ * @generated from field: bool default_value = 3;
161
+ */
162
+ defaultValue: boolean;
163
+ /**
164
+ * @generated from field: bool show = 4;
165
+ */
166
+ show: boolean;
167
+ };
168
+ /**
169
+ * Describes the message bilibili.community.service.dm.v1.CheckBox.
170
+ * Use `create(CheckBoxSchema)` to create a new message.
171
+ */
172
+ export declare const CheckBoxSchema: GenMessage<CheckBox>;
173
+ /**
174
+ * @generated from message bilibili.community.service.dm.v1.CheckBoxV2
175
+ */
176
+ export type CheckBoxV2 = Message<"bilibili.community.service.dm.v1.CheckBoxV2"> & {
177
+ /**
178
+ * @generated from field: string text = 1;
179
+ */
180
+ text: string;
181
+ /**
182
+ * @generated from field: bilibili.community.service.dm.v1.CheckboxType type = 2;
183
+ */
184
+ type: CheckboxType;
185
+ /**
186
+ * @generated from field: bool default_value = 3;
187
+ */
188
+ defaultValue: boolean;
189
+ };
190
+ /**
191
+ * Describes the message bilibili.community.service.dm.v1.CheckBoxV2.
192
+ * Use `create(CheckBoxV2Schema)` to create a new message.
193
+ */
194
+ export declare const CheckBoxV2Schema: GenMessage<CheckBoxV2>;
195
+ /**
196
+ * @generated from message bilibili.community.service.dm.v1.ClickButton
197
+ */
198
+ export type ClickButton = Message<"bilibili.community.service.dm.v1.ClickButton"> & {
199
+ /**
200
+ * @generated from field: repeated string portrait_text = 1;
201
+ */
202
+ portraitText: string[];
203
+ /**
204
+ * @generated from field: repeated string landscape_text = 2;
205
+ */
206
+ landscapeText: string[];
207
+ /**
208
+ * @generated from field: repeated string portrait_text_focus = 3;
209
+ */
210
+ portraitTextFocus: string[];
211
+ /**
212
+ * @generated from field: repeated string landscape_text_focus = 4;
213
+ */
214
+ landscapeTextFocus: string[];
215
+ /**
216
+ * @generated from field: bilibili.community.service.dm.v1.RenderType render_type = 5;
217
+ */
218
+ renderType: RenderType;
219
+ /**
220
+ * @generated from field: bool show = 6;
221
+ */
222
+ show: boolean;
223
+ /**
224
+ * @generated from field: bilibili.community.service.dm.v1.Bubble bubble = 7;
225
+ */
226
+ bubble?: Bubble;
227
+ };
228
+ /**
229
+ * Describes the message bilibili.community.service.dm.v1.ClickButton.
230
+ * Use `create(ClickButtonSchema)` to create a new message.
231
+ */
232
+ export declare const ClickButtonSchema: GenMessage<ClickButton>;
233
+ /**
234
+ * @generated from message bilibili.community.service.dm.v1.ClickButtonV2
235
+ */
236
+ export type ClickButtonV2 = Message<"bilibili.community.service.dm.v1.ClickButtonV2"> & {
237
+ /**
238
+ * @generated from field: repeated string portrait_text = 1;
239
+ */
240
+ portraitText: string[];
241
+ /**
242
+ * @generated from field: repeated string landscape_text = 2;
243
+ */
244
+ landscapeText: string[];
245
+ /**
246
+ * @generated from field: repeated string portrait_text_focus = 3;
247
+ */
248
+ portraitTextFocus: string[];
249
+ /**
250
+ * @generated from field: repeated string landscape_text_focus = 4;
251
+ */
252
+ landscapeTextFocus: string[];
253
+ /**
254
+ * @generated from field: bilibili.community.service.dm.v1.RenderType render_type = 5;
255
+ */
256
+ renderType: RenderType;
257
+ /**
258
+ * @generated from field: bool text_input_post = 6;
259
+ */
260
+ textInputPost: boolean;
261
+ /**
262
+ * @generated from field: bool exposure_once = 7;
263
+ */
264
+ exposureOnce: boolean;
265
+ /**
266
+ * @generated from field: bilibili.community.service.dm.v1.ExposureType exposure_type = 8;
267
+ */
268
+ exposureType: ExposureType;
269
+ };
270
+ /**
271
+ * Describes the message bilibili.community.service.dm.v1.ClickButtonV2.
272
+ * Use `create(ClickButtonV2Schema)` to create a new message.
273
+ */
274
+ export declare const ClickButtonV2Schema: GenMessage<ClickButtonV2>;
275
+ /**
276
+ *
277
+ *
278
+ * @generated from message bilibili.community.service.dm.v1.Command
279
+ */
280
+ export type Command = Message<"bilibili.community.service.dm.v1.Command"> & {
281
+ /**
282
+ *
283
+ *
284
+ * @generated from field: repeated bilibili.community.service.dm.v1.CommandDm command_dms = 1;
285
+ */
286
+ commandDms: CommandDm[];
287
+ };
288
+ /**
289
+ * Describes the message bilibili.community.service.dm.v1.Command.
290
+ * Use `create(CommandSchema)` to create a new message.
291
+ */
292
+ export declare const CommandSchema: GenMessage<Command>;
293
+ /**
294
+ * 互动弹幕条目信息
295
+ *
296
+ * @generated from message bilibili.community.service.dm.v1.CommandDm
297
+ */
298
+ export type CommandDm = Message<"bilibili.community.service.dm.v1.CommandDm"> & {
299
+ /**
300
+ * 弹幕id
301
+ *
302
+ * @generated from field: int64 id = 1;
303
+ */
304
+ id: bigint;
305
+ /**
306
+ * 对象视频cid
307
+ *
308
+ * @generated from field: int64 oid = 2;
309
+ */
310
+ oid: bigint;
311
+ /**
312
+ * 发送者mid
313
+ *
314
+ * @generated from field: int64 mid = 3;
315
+ */
316
+ mid: bigint;
317
+ /**
318
+ * 互动弹幕指令
319
+ *
320
+ * @generated from field: string command = 4;
321
+ */
322
+ command: string;
323
+ /**
324
+ * 互动弹幕正文
325
+ *
326
+ * @generated from field: string content = 5;
327
+ */
328
+ content: string;
329
+ /**
330
+ * 出现时间
331
+ *
332
+ * @generated from field: int32 progress = 6;
333
+ */
334
+ progress: number;
335
+ /**
336
+ * 创建时间
337
+ *
338
+ * @generated from field: string ctime = 7;
339
+ */
340
+ ctime: string;
341
+ /**
342
+ * 发布时间
343
+ *
344
+ * @generated from field: string mtime = 8;
345
+ */
346
+ mtime: string;
347
+ /**
348
+ * 扩展json数据
349
+ *
350
+ * @generated from field: string extra = 9;
351
+ */
352
+ extra: string;
353
+ /**
354
+ * 弹幕id str类型
355
+ *
356
+ * @generated from field: string idStr = 10;
357
+ */
358
+ idStr: string;
359
+ /**
360
+ *
361
+ *
362
+ * @generated from field: int32 type = 11;
363
+ */
364
+ type: number;
365
+ /**
366
+ *
367
+ *
368
+ * @generated from field: bool auto_create = 12;
369
+ */
370
+ autoCreate: boolean;
371
+ /**
372
+ *
373
+ *
374
+ * @generated from field: int32 count_down = 13;
375
+ */
376
+ countDown: number;
377
+ /**
378
+ *
379
+ *
380
+ * @generated from field: int32 attr = 14;
381
+ */
382
+ attr: number;
383
+ };
384
+ /**
385
+ * Describes the message bilibili.community.service.dm.v1.CommandDm.
386
+ * Use `create(CommandDmSchema)` to create a new message.
387
+ */
388
+ export declare const CommandDmSchema: GenMessage<CommandDm>;
389
+ /**
390
+ * 弹幕ai云屏蔽列表
391
+ *
392
+ * @generated from message bilibili.community.service.dm.v1.DanmakuAIFlag
393
+ */
394
+ export type DanmakuAIFlag = Message<"bilibili.community.service.dm.v1.DanmakuAIFlag"> & {
395
+ /**
396
+ * 弹幕ai云屏蔽条目
397
+ *
398
+ * @generated from field: repeated bilibili.community.service.dm.v1.DanmakuFlag dm_flags = 1;
399
+ */
400
+ dmFlags: DanmakuFlag[];
401
+ };
402
+ /**
403
+ * Describes the message bilibili.community.service.dm.v1.DanmakuAIFlag.
404
+ * Use `create(DanmakuAIFlagSchema)` to create a new message.
405
+ */
406
+ export declare const DanmakuAIFlagSchema: GenMessage<DanmakuAIFlag>;
407
+ /**
408
+ * 弹幕条目
409
+ *
410
+ * @generated from message bilibili.community.service.dm.v1.DanmakuElem
411
+ */
412
+ export type DanmakuElem = Message<"bilibili.community.service.dm.v1.DanmakuElem"> & {
413
+ /**
414
+ * 弹幕dmid
415
+ *
416
+ * @generated from field: int64 id = 1;
417
+ */
418
+ id: bigint;
419
+ /**
420
+ * 弹幕出现位置(单位ms)
421
+ *
422
+ * @generated from field: int32 progress = 2;
423
+ */
424
+ progress: number;
425
+ /**
426
+ * 弹幕类型 1 2 3:普通弹幕 4:底部弹幕 5:顶部弹幕 6:逆向弹幕 7:高级弹幕 8:代码弹幕 9:BAS弹幕(pool必须为2)
427
+ *
428
+ * @generated from field: int32 mode = 3;
429
+ */
430
+ mode: number;
431
+ /**
432
+ * 弹幕字号
433
+ *
434
+ * @generated from field: int32 fontsize = 4;
435
+ */
436
+ fontsize: number;
437
+ /**
438
+ * 弹幕颜色
439
+ *
440
+ * @generated from field: bilibili.community.service.dm.v1.DmColorfulType color = 5;
441
+ */
442
+ color: DmColorfulType;
443
+ /**
444
+ * 发送者mid hash
445
+ *
446
+ * @generated from field: string mid_hash = 6;
447
+ */
448
+ midHash: string;
449
+ /**
450
+ * 弹幕正文
451
+ *
452
+ * @generated from field: string content = 7;
453
+ */
454
+ content: string;
455
+ /**
456
+ * 发送时间
457
+ *
458
+ * @generated from field: int64 ctime = 8;
459
+ */
460
+ ctime: bigint;
461
+ /**
462
+ * 权重 用于屏蔽等级 区间:[1,10]
463
+ *
464
+ * @generated from field: int32 weight = 9;
465
+ */
466
+ weight: number;
467
+ /**
468
+ * 动作
469
+ *
470
+ * @generated from field: string action = 10;
471
+ */
472
+ action: string;
473
+ /**
474
+ * 弹幕池 0:普通池 1:字幕池 2:特殊池(代码/BAS弹幕)
475
+ *
476
+ * @generated from field: int32 pool = 11;
477
+ */
478
+ pool: number;
479
+ /**
480
+ * 弹幕dmid str
481
+ *
482
+ * @generated from field: string id_str = 12;
483
+ */
484
+ idStr: string;
485
+ /**
486
+ * 弹幕属性位(bin求AND)
487
+ * bit0:保护 bit1:直播 bit2:高赞
488
+ *
489
+ * @generated from field: int32 attr = 13;
490
+ */
491
+ attr: number;
492
+ /**
493
+ * @generated from field: string animation = 22;
494
+ */
495
+ animation: string;
496
+ /**
497
+ * @generated from field: string extra = 23;
498
+ */
499
+ extra: string;
500
+ /**
501
+ * 大会员专属颜色
502
+ *
503
+ * @generated from field: bilibili.community.service.dm.v1.DmColorfulType colorful = 24;
504
+ */
505
+ colorful: DmColorfulType;
506
+ /**
507
+ *
508
+ *
509
+ * @generated from field: int32 type = 25;
510
+ */
511
+ type: number;
512
+ /**
513
+ *
514
+ *
515
+ * @generated from field: int64 oid = 26;
516
+ */
517
+ oid: bigint;
518
+ };
519
+ /**
520
+ * Describes the message bilibili.community.service.dm.v1.DanmakuElem.
521
+ * Use `create(DanmakuElemSchema)` to create a new message.
522
+ */
523
+ export declare const DanmakuElemSchema: GenMessage<DanmakuElem>;
524
+ /**
525
+ * 弹幕ai云屏蔽条目
526
+ *
527
+ * @generated from message bilibili.community.service.dm.v1.DanmakuFlag
528
+ */
529
+ export type DanmakuFlag = Message<"bilibili.community.service.dm.v1.DanmakuFlag"> & {
530
+ /**
531
+ * 弹幕dmid
532
+ *
533
+ * @generated from field: int64 dmid = 1;
534
+ */
535
+ dmid: bigint;
536
+ /**
537
+ * 评分
538
+ *
539
+ * @generated from field: int32 flag = 2;
540
+ */
541
+ flag: number;
542
+ };
543
+ /**
544
+ * Describes the message bilibili.community.service.dm.v1.DanmakuFlag.
545
+ * Use `create(DanmakuFlagSchema)` to create a new message.
546
+ */
547
+ export declare const DanmakuFlagSchema: GenMessage<DanmakuFlag>;
548
+ /**
549
+ * 云屏蔽配置信息
550
+ *
551
+ * @generated from message bilibili.community.service.dm.v1.DanmakuFlagConfig
552
+ */
553
+ export type DanmakuFlagConfig = Message<"bilibili.community.service.dm.v1.DanmakuFlagConfig"> & {
554
+ /**
555
+ * 云屏蔽等级
556
+ *
557
+ * @generated from field: int32 rec_flag = 1;
558
+ */
559
+ recFlag: number;
560
+ /**
561
+ * 云屏蔽文案
562
+ *
563
+ * @generated from field: string rec_text = 2;
564
+ */
565
+ recText: string;
566
+ /**
567
+ * 云屏蔽开关
568
+ *
569
+ * @generated from field: int32 rec_switch = 3;
570
+ */
571
+ recSwitch: number;
572
+ };
573
+ /**
574
+ * Describes the message bilibili.community.service.dm.v1.DanmakuFlagConfig.
575
+ * Use `create(DanmakuFlagConfigSchema)` to create a new message.
576
+ */
577
+ export declare const DanmakuFlagConfigSchema: GenMessage<DanmakuFlagConfig>;
578
+ /**
579
+ * 弹幕默认配置
580
+ *
581
+ * @generated from message bilibili.community.service.dm.v1.DanmuDefaultPlayerConfig
582
+ */
583
+ export type DanmuDefaultPlayerConfig = Message<"bilibili.community.service.dm.v1.DanmuDefaultPlayerConfig"> & {
584
+ /**
585
+ * 是否使用推荐弹幕设置
586
+ *
587
+ * @generated from field: bool player_danmaku_use_default_config = 1;
588
+ */
589
+ playerDanmakuUseDefaultConfig: boolean;
590
+ /**
591
+ * 是否开启智能云屏蔽
592
+ *
593
+ * @generated from field: bool player_danmaku_ai_recommended_switch = 4;
594
+ */
595
+ playerDanmakuAiRecommendedSwitch: boolean;
596
+ /**
597
+ * 智能云屏蔽等级
598
+ *
599
+ * @generated from field: int32 player_danmaku_ai_recommended_level = 5;
600
+ */
601
+ playerDanmakuAiRecommendedLevel: number;
602
+ /**
603
+ * 是否屏蔽顶端弹幕
604
+ *
605
+ * @generated from field: bool player_danmaku_blocktop = 6;
606
+ */
607
+ playerDanmakuBlocktop: boolean;
608
+ /**
609
+ * 是否屏蔽滚动弹幕
610
+ *
611
+ * @generated from field: bool player_danmaku_blockscroll = 7;
612
+ */
613
+ playerDanmakuBlockscroll: boolean;
614
+ /**
615
+ * 是否屏蔽底端弹幕
616
+ *
617
+ * @generated from field: bool player_danmaku_blockbottom = 8;
618
+ */
619
+ playerDanmakuBlockbottom: boolean;
620
+ /**
621
+ * 是否屏蔽彩色弹幕
622
+ *
623
+ * @generated from field: bool player_danmaku_blockcolorful = 9;
624
+ */
625
+ playerDanmakuBlockcolorful: boolean;
626
+ /**
627
+ * 是否屏蔽重复弹幕
628
+ *
629
+ * @generated from field: bool player_danmaku_blockrepeat = 10;
630
+ */
631
+ playerDanmakuBlockrepeat: boolean;
632
+ /**
633
+ * 是否屏蔽高级弹幕
634
+ *
635
+ * @generated from field: bool player_danmaku_blockspecial = 11;
636
+ */
637
+ playerDanmakuBlockspecial: boolean;
638
+ /**
639
+ * 弹幕不透明度
640
+ *
641
+ * @generated from field: float player_danmaku_opacity = 12;
642
+ */
643
+ playerDanmakuOpacity: number;
644
+ /**
645
+ * 弹幕缩放比例
646
+ *
647
+ * @generated from field: float player_danmaku_scalingfactor = 13;
648
+ */
649
+ playerDanmakuScalingfactor: number;
650
+ /**
651
+ * 弹幕显示区域
652
+ *
653
+ * @generated from field: float player_danmaku_domain = 14;
654
+ */
655
+ playerDanmakuDomain: number;
656
+ /**
657
+ * 弹幕速度
658
+ *
659
+ * @generated from field: int32 player_danmaku_speed = 15;
660
+ */
661
+ playerDanmakuSpeed: number;
662
+ /**
663
+ * 是否开启弹幕
664
+ *
665
+ * @generated from field: bool inline_player_danmaku_switch = 16;
666
+ */
667
+ inlinePlayerDanmakuSwitch: boolean;
668
+ /**
669
+ * @generated from field: int32 player_danmaku_senior_mode_switch = 17;
670
+ */
671
+ playerDanmakuSeniorModeSwitch: number;
672
+ /**
673
+ * @generated from field: int32 player_danmaku_ai_recommended_level_v2 = 18;
674
+ */
675
+ playerDanmakuAiRecommendedLevelV2: number;
676
+ /**
677
+ * @generated from field: map<int32, int32> player_danmaku_ai_recommended_level_v2_map = 19;
678
+ */
679
+ playerDanmakuAiRecommendedLevelV2Map: {
680
+ [key: number]: number;
681
+ };
682
+ /**
683
+ *
684
+ *
685
+ * @generated from field: bool player_danmaku_enable_herd_dm = 20;
686
+ */
687
+ playerDanmakuEnableHerdDm: boolean;
688
+ };
689
+ /**
690
+ * Describes the message bilibili.community.service.dm.v1.DanmuDefaultPlayerConfig.
691
+ * Use `create(DanmuDefaultPlayerConfigSchema)` to create a new message.
692
+ */
693
+ export declare const DanmuDefaultPlayerConfigSchema: GenMessage<DanmuDefaultPlayerConfig>;
694
+ /**
695
+ * 弹幕配置
696
+ *
697
+ * @generated from message bilibili.community.service.dm.v1.DanmuPlayerConfig
698
+ */
699
+ export type DanmuPlayerConfig = Message<"bilibili.community.service.dm.v1.DanmuPlayerConfig"> & {
700
+ /**
701
+ * 是否开启弹幕
702
+ *
703
+ * @generated from field: bool player_danmaku_switch = 1;
704
+ */
705
+ playerDanmakuSwitch: boolean;
706
+ /**
707
+ * 是否记录弹幕开关设置
708
+ *
709
+ * @generated from field: bool player_danmaku_switch_save = 2;
710
+ */
711
+ playerDanmakuSwitchSave: boolean;
712
+ /**
713
+ * 是否使用推荐弹幕设置
714
+ *
715
+ * @generated from field: bool player_danmaku_use_default_config = 3;
716
+ */
717
+ playerDanmakuUseDefaultConfig: boolean;
718
+ /**
719
+ * 是否开启智能云屏蔽
720
+ *
721
+ * @generated from field: bool player_danmaku_ai_recommended_switch = 4;
722
+ */
723
+ playerDanmakuAiRecommendedSwitch: boolean;
724
+ /**
725
+ * 智能云屏蔽等级
726
+ *
727
+ * @generated from field: int32 player_danmaku_ai_recommended_level = 5;
728
+ */
729
+ playerDanmakuAiRecommendedLevel: number;
730
+ /**
731
+ * 是否屏蔽顶端弹幕
732
+ *
733
+ * @generated from field: bool player_danmaku_blocktop = 6;
734
+ */
735
+ playerDanmakuBlocktop: boolean;
736
+ /**
737
+ * 是否屏蔽滚动弹幕
738
+ *
739
+ * @generated from field: bool player_danmaku_blockscroll = 7;
740
+ */
741
+ playerDanmakuBlockscroll: boolean;
742
+ /**
743
+ * 是否屏蔽底端弹幕
744
+ *
745
+ * @generated from field: bool player_danmaku_blockbottom = 8;
746
+ */
747
+ playerDanmakuBlockbottom: boolean;
748
+ /**
749
+ * 是否屏蔽彩色弹幕
750
+ *
751
+ * @generated from field: bool player_danmaku_blockcolorful = 9;
752
+ */
753
+ playerDanmakuBlockcolorful: boolean;
754
+ /**
755
+ * 是否屏蔽重复弹幕
756
+ *
757
+ * @generated from field: bool player_danmaku_blockrepeat = 10;
758
+ */
759
+ playerDanmakuBlockrepeat: boolean;
760
+ /**
761
+ * 是否屏蔽高级弹幕
762
+ *
763
+ * @generated from field: bool player_danmaku_blockspecial = 11;
764
+ */
765
+ playerDanmakuBlockspecial: boolean;
766
+ /**
767
+ * 弹幕不透明度
768
+ *
769
+ * @generated from field: float player_danmaku_opacity = 12;
770
+ */
771
+ playerDanmakuOpacity: number;
772
+ /**
773
+ * 弹幕缩放比例
774
+ *
775
+ * @generated from field: float player_danmaku_scalingfactor = 13;
776
+ */
777
+ playerDanmakuScalingfactor: number;
778
+ /**
779
+ * 弹幕显示区域
780
+ *
781
+ * @generated from field: float player_danmaku_domain = 14;
782
+ */
783
+ playerDanmakuDomain: number;
784
+ /**
785
+ * 弹幕速度
786
+ *
787
+ * @generated from field: int32 player_danmaku_speed = 15;
788
+ */
789
+ playerDanmakuSpeed: number;
790
+ /**
791
+ * 是否开启屏蔽列表
792
+ *
793
+ * @generated from field: bool player_danmaku_enableblocklist = 16;
794
+ */
795
+ playerDanmakuEnableblocklist: boolean;
796
+ /**
797
+ * 是否开启弹幕
798
+ *
799
+ * @generated from field: bool inline_player_danmaku_switch = 17;
800
+ */
801
+ inlinePlayerDanmakuSwitch: boolean;
802
+ /**
803
+ * @generated from field: int32 inline_player_danmaku_config = 18;
804
+ */
805
+ inlinePlayerDanmakuConfig: number;
806
+ /**
807
+ * @generated from field: int32 player_danmaku_ios_switch_save = 19;
808
+ */
809
+ playerDanmakuIosSwitchSave: number;
810
+ /**
811
+ * @generated from field: int32 player_danmaku_senior_mode_switch = 20;
812
+ */
813
+ playerDanmakuSeniorModeSwitch: number;
814
+ /**
815
+ * @generated from field: int32 player_danmaku_ai_recommended_level_v2 = 21;
816
+ */
817
+ playerDanmakuAiRecommendedLevelV2: number;
818
+ /**
819
+ * @generated from field: map<int32, int32> player_danmaku_ai_recommended_level_v2_map = 22;
820
+ */
821
+ playerDanmakuAiRecommendedLevelV2Map: {
822
+ [key: number]: number;
823
+ };
824
+ /**
825
+ *
826
+ *
827
+ * @generated from field: bool player_danmaku_enable_herd_dm = 23;
828
+ */
829
+ playerDanmakuEnableHerdDm: boolean;
830
+ /**
831
+ *
832
+ *
833
+ * @generated from field: bool player_danmaku_blocktop_bottom = 24;
834
+ */
835
+ playerDanmakuBlocktopBottom: boolean;
836
+ /**
837
+ *
838
+ *
839
+ * @generated from field: int32 player_danmaku_domain_v2 = 25;
840
+ */
841
+ playerDanmakuDomainV2: number;
842
+ /**
843
+ *
844
+ *
845
+ * @generated from field: int32 player_danmaku_density = 26;
846
+ */
847
+ playerDanmakuDensity: number;
848
+ /**
849
+ *
850
+ *
851
+ * @generated from field: bool player_danmaku_subtitle_proof = 27;
852
+ */
853
+ playerDanmakuSubtitleProof: boolean;
854
+ /**
855
+ *
856
+ *
857
+ * @generated from field: bool player_danmaku_people_proof = 28;
858
+ */
859
+ playerDanmakuPeopleProof: boolean;
860
+ };
861
+ /**
862
+ * Describes the message bilibili.community.service.dm.v1.DanmuPlayerConfig.
863
+ * Use `create(DanmuPlayerConfigSchema)` to create a new message.
864
+ */
865
+ export declare const DanmuPlayerConfigSchema: GenMessage<DanmuPlayerConfig>;
866
+ /**
867
+ * @generated from message bilibili.community.service.dm.v1.DanmuPlayerConfigPanel
868
+ */
869
+ export type DanmuPlayerConfigPanel = Message<"bilibili.community.service.dm.v1.DanmuPlayerConfigPanel"> & {
870
+ /**
871
+ * @generated from field: string selection_text = 1;
872
+ */
873
+ selectionText: string;
874
+ };
875
+ /**
876
+ * Describes the message bilibili.community.service.dm.v1.DanmuPlayerConfigPanel.
877
+ * Use `create(DanmuPlayerConfigPanelSchema)` to create a new message.
878
+ */
879
+ export declare const DanmuPlayerConfigPanelSchema: GenMessage<DanmuPlayerConfigPanel>;
880
+ /**
881
+ * 弹幕显示区域自动配置
882
+ *
883
+ * @generated from message bilibili.community.service.dm.v1.DanmuPlayerDynamicConfig
884
+ */
885
+ export type DanmuPlayerDynamicConfig = Message<"bilibili.community.service.dm.v1.DanmuPlayerDynamicConfig"> & {
886
+ /**
887
+ * 时间
888
+ *
889
+ * @generated from field: int32 progress = 1;
890
+ */
891
+ progress: number;
892
+ /**
893
+ * 弹幕显示区域
894
+ *
895
+ * @generated from field: float player_danmaku_domain = 14;
896
+ */
897
+ playerDanmakuDomain: number;
898
+ };
899
+ /**
900
+ * Describes the message bilibili.community.service.dm.v1.DanmuPlayerDynamicConfig.
901
+ * Use `create(DanmuPlayerDynamicConfigSchema)` to create a new message.
902
+ */
903
+ export declare const DanmuPlayerDynamicConfigSchema: GenMessage<DanmuPlayerDynamicConfig>;
904
+ /**
905
+ * 弹幕配置信息
906
+ *
907
+ * @generated from message bilibili.community.service.dm.v1.DanmuPlayerViewConfig
908
+ */
909
+ export type DanmuPlayerViewConfig = Message<"bilibili.community.service.dm.v1.DanmuPlayerViewConfig"> & {
910
+ /**
911
+ * 弹幕默认配置
912
+ *
913
+ * @generated from field: bilibili.community.service.dm.v1.DanmuDefaultPlayerConfig danmuku_default_player_config = 1;
914
+ */
915
+ danmukuDefaultPlayerConfig?: DanmuDefaultPlayerConfig;
916
+ /**
917
+ * 弹幕用户配置
918
+ *
919
+ * @generated from field: bilibili.community.service.dm.v1.DanmuPlayerConfig danmuku_player_config = 2;
920
+ */
921
+ danmukuPlayerConfig?: DanmuPlayerConfig;
922
+ /**
923
+ * 弹幕显示区域自动配置列表
924
+ *
925
+ * @generated from field: repeated bilibili.community.service.dm.v1.DanmuPlayerDynamicConfig danmuku_player_dynamic_config = 3;
926
+ */
927
+ danmukuPlayerDynamicConfig: DanmuPlayerDynamicConfig[];
928
+ /**
929
+ * @generated from field: bilibili.community.service.dm.v1.DanmuPlayerConfigPanel danmuku_player_config_panel = 4;
930
+ */
931
+ danmukuPlayerConfigPanel?: DanmuPlayerConfigPanel;
932
+ };
933
+ /**
934
+ * Describes the message bilibili.community.service.dm.v1.DanmuPlayerViewConfig.
935
+ * Use `create(DanmuPlayerViewConfigSchema)` to create a new message.
936
+ */
937
+ export declare const DanmuPlayerViewConfigSchema: GenMessage<DanmuPlayerViewConfig>;
938
+ /**
939
+ * web端用户弹幕配置
940
+ *
941
+ * @generated from message bilibili.community.service.dm.v1.DanmuWebPlayerConfig
942
+ */
943
+ export type DanmuWebPlayerConfig = Message<"bilibili.community.service.dm.v1.DanmuWebPlayerConfig"> & {
944
+ /**
945
+ * 是否开启弹幕
946
+ *
947
+ * @generated from field: bool dm_switch = 1;
948
+ */
949
+ dmSwitch: boolean;
950
+ /**
951
+ * 是否开启智能云屏蔽
952
+ *
953
+ * @generated from field: bool ai_switch = 2;
954
+ */
955
+ aiSwitch: boolean;
956
+ /**
957
+ * 智能云屏蔽等级
958
+ *
959
+ * @generated from field: int32 ai_level = 3;
960
+ */
961
+ aiLevel: number;
962
+ /**
963
+ * 是否屏蔽顶端弹幕
964
+ *
965
+ * @generated from field: bool blocktop = 4;
966
+ */
967
+ blocktop: boolean;
968
+ /**
969
+ * 是否屏蔽滚动弹幕
970
+ *
971
+ * @generated from field: bool blockscroll = 5;
972
+ */
973
+ blockscroll: boolean;
974
+ /**
975
+ * 是否屏蔽底端弹幕
976
+ *
977
+ * @generated from field: bool blockbottom = 6;
978
+ */
979
+ blockbottom: boolean;
980
+ /**
981
+ * 是否屏蔽彩色弹幕
982
+ *
983
+ * @generated from field: bool blockcolor = 7;
984
+ */
985
+ blockcolor: boolean;
986
+ /**
987
+ * 是否屏蔽重复弹幕
988
+ *
989
+ * @generated from field: bool blockspecial = 8;
990
+ */
991
+ blockspecial: boolean;
992
+ /**
993
+ *
994
+ *
995
+ * @generated from field: bool preventshade = 9;
996
+ */
997
+ preventshade: boolean;
998
+ /**
999
+ *
1000
+ *
1001
+ * @generated from field: bool dmask = 10;
1002
+ */
1003
+ dmask: boolean;
1004
+ /**
1005
+ *
1006
+ *
1007
+ * @generated from field: float opacity = 11;
1008
+ */
1009
+ opacity: number;
1010
+ /**
1011
+ *
1012
+ *
1013
+ * @generated from field: int32 dmarea = 12;
1014
+ */
1015
+ dmarea: number;
1016
+ /**
1017
+ *
1018
+ *
1019
+ * @generated from field: float speedplus = 13;
1020
+ */
1021
+ speedplus: number;
1022
+ /**
1023
+ * 弹幕字号
1024
+ *
1025
+ * @generated from field: float fontsize = 14;
1026
+ */
1027
+ fontsize: number;
1028
+ /**
1029
+ *
1030
+ *
1031
+ * @generated from field: bool screensync = 15;
1032
+ */
1033
+ screensync: boolean;
1034
+ /**
1035
+ *
1036
+ *
1037
+ * @generated from field: bool speedsync = 16;
1038
+ */
1039
+ speedsync: boolean;
1040
+ /**
1041
+ *
1042
+ *
1043
+ * @generated from field: string fontfamily = 17;
1044
+ */
1045
+ fontfamily: string;
1046
+ /**
1047
+ * 是否使用加粗
1048
+ *
1049
+ * @generated from field: bool bold = 18;
1050
+ */
1051
+ bold: boolean;
1052
+ /**
1053
+ *
1054
+ *
1055
+ * @generated from field: int32 fontborder = 19;
1056
+ */
1057
+ fontborder: number;
1058
+ /**
1059
+ * 弹幕渲染类型
1060
+ *
1061
+ * @generated from field: string draw_type = 20;
1062
+ */
1063
+ drawType: string;
1064
+ /**
1065
+ * @generated from field: int32 senior_mode_switch = 21;
1066
+ */
1067
+ seniorModeSwitch: number;
1068
+ /**
1069
+ * @generated from field: int32 ai_level_v2 = 22;
1070
+ */
1071
+ aiLevelV2: number;
1072
+ /**
1073
+ * @generated from field: map<int32, int32> ai_level_v2_map = 23;
1074
+ */
1075
+ aiLevelV2Map: {
1076
+ [key: number]: number;
1077
+ };
1078
+ /**
1079
+ *
1080
+ *
1081
+ * @generated from field: bool blocktop_bottom = 24;
1082
+ */
1083
+ blocktopBottom: boolean;
1084
+ /**
1085
+ *
1086
+ *
1087
+ * @generated from field: int32 dm_area_v2 = 25;
1088
+ */
1089
+ dmAreaV2: number;
1090
+ /**
1091
+ *
1092
+ *
1093
+ * @generated from field: int32 dm_density = 26;
1094
+ */
1095
+ dmDensity: number;
1096
+ };
1097
+ /**
1098
+ * Describes the message bilibili.community.service.dm.v1.DanmuWebPlayerConfig.
1099
+ * Use `create(DanmuWebPlayerConfigSchema)` to create a new message.
1100
+ */
1101
+ export declare const DanmuWebPlayerConfigSchema: GenMessage<DanmuWebPlayerConfig>;
1102
+ /**
1103
+ * @generated from message bilibili.community.service.dm.v1.DmColorful
1104
+ */
1105
+ export type DmColorful = Message<"bilibili.community.service.dm.v1.DmColorful"> & {
1106
+ /**
1107
+ * 颜色类型
1108
+ *
1109
+ * @generated from field: bilibili.community.service.dm.v1.DmColorfulType type = 1;
1110
+ */
1111
+ type: DmColorfulType;
1112
+ /**
1113
+ * @generated from field: string src = 2;
1114
+ */
1115
+ src: string;
1116
+ };
1117
+ /**
1118
+ * Describes the message bilibili.community.service.dm.v1.DmColorful.
1119
+ * Use `create(DmColorfulSchema)` to create a new message.
1120
+ */
1121
+ export declare const DmColorfulSchema: GenMessage<DmColorful>;
1122
+ /**
1123
+ * @generated from message bilibili.community.service.dm.v1.DmExpoReportReq
1124
+ */
1125
+ export type DmExpoReportReq = Message<"bilibili.community.service.dm.v1.DmExpoReportReq"> & {
1126
+ /**
1127
+ * @generated from field: string session_id = 1;
1128
+ */
1129
+ sessionId: string;
1130
+ /**
1131
+ * @generated from field: int64 oid = 2;
1132
+ */
1133
+ oid: bigint;
1134
+ /**
1135
+ *
1136
+ *
1137
+ * @generated from field: bytes dmids = 3;
1138
+ */
1139
+ dmids: Uint8Array;
1140
+ /**
1141
+ * @generated from field: string spmid = 4;
1142
+ */
1143
+ spmid: string;
1144
+ };
1145
+ /**
1146
+ * Describes the message bilibili.community.service.dm.v1.DmExpoReportReq.
1147
+ * Use `create(DmExpoReportReqSchema)` to create a new message.
1148
+ */
1149
+ export declare const DmExpoReportReqSchema: GenMessage<DmExpoReportReq>;
1150
+ /**
1151
+ *
1152
+ *
1153
+ * @generated from message bilibili.community.service.dm.v1.DmExpoReportRes
1154
+ */
1155
+ export type DmExpoReportRes = Message<"bilibili.community.service.dm.v1.DmExpoReportRes"> & {};
1156
+ /**
1157
+ * Describes the message bilibili.community.service.dm.v1.DmExpoReportRes.
1158
+ * Use `create(DmExpoReportResSchema)` to create a new message.
1159
+ */
1160
+ export declare const DmExpoReportResSchema: GenMessage<DmExpoReportRes>;
1161
+ /**
1162
+ *
1163
+ *
1164
+ * @generated from message bilibili.community.service.dm.v1.DmHerdView
1165
+ */
1166
+ export type DmHerdView = Message<"bilibili.community.service.dm.v1.DmHerdView"> & {
1167
+ /**
1168
+ *
1169
+ *
1170
+ * @generated from field: int32 display_herd_dm_num = 1;
1171
+ */
1172
+ displayHerdDmNum: number;
1173
+ /**
1174
+ *
1175
+ *
1176
+ * @generated from field: repeated bilibili.community.service.dm.v1.ViewHerdDmElem herd_dms = 2;
1177
+ */
1178
+ herdDms: ViewHerdDmElem[];
1179
+ };
1180
+ /**
1181
+ * Describes the message bilibili.community.service.dm.v1.DmHerdView.
1182
+ * Use `create(DmHerdViewSchema)` to create a new message.
1183
+ */
1184
+ export declare const DmHerdViewSchema: GenMessage<DmHerdView>;
1185
+ /**
1186
+ *
1187
+ *
1188
+ * @generated from message bilibili.community.service.dm.v1.DmMaskWall
1189
+ */
1190
+ export type DmMaskWall = Message<"bilibili.community.service.dm.v1.DmMaskWall"> & {
1191
+ /**
1192
+ *
1193
+ *
1194
+ * @generated from field: int64 start = 1;
1195
+ */
1196
+ start: bigint;
1197
+ /**
1198
+ *
1199
+ *
1200
+ * @generated from field: int64 end = 2;
1201
+ */
1202
+ end: bigint;
1203
+ /**
1204
+ *
1205
+ *
1206
+ * @generated from field: string content = 3;
1207
+ */
1208
+ content: string;
1209
+ /**
1210
+ *
1211
+ *
1212
+ * @generated from field: bilibili.community.service.dm.v1.DmMaskWallContentType content_type = 4;
1213
+ */
1214
+ contentType: DmMaskWallContentType;
1215
+ /**
1216
+ *
1217
+ *
1218
+ * @generated from field: bilibili.community.service.dm.v1.DmMaskWallBizType biz_type = 5;
1219
+ */
1220
+ bizType: DmMaskWallBizType;
1221
+ /**
1222
+ *
1223
+ *
1224
+ * @generated from field: repeated bilibili.community.service.dm.v1.DmMaskWallContent contents = 6;
1225
+ */
1226
+ contents: DmMaskWallContent[];
1227
+ };
1228
+ /**
1229
+ * Describes the message bilibili.community.service.dm.v1.DmMaskWall.
1230
+ * Use `create(DmMaskWallSchema)` to create a new message.
1231
+ */
1232
+ export declare const DmMaskWallSchema: GenMessage<DmMaskWall>;
1233
+ /**
1234
+ *
1235
+ *
1236
+ * @generated from message bilibili.community.service.dm.v1.DmMaskWallContent
1237
+ */
1238
+ export type DmMaskWallContent = Message<"bilibili.community.service.dm.v1.DmMaskWallContent"> & {
1239
+ /**
1240
+ *
1241
+ *
1242
+ * @generated from field: bilibili.community.service.dm.v1.DmMaskWallContentType type = 1;
1243
+ */
1244
+ type: DmMaskWallContentType;
1245
+ /**
1246
+ *
1247
+ *
1248
+ * @generated from field: string content = 2;
1249
+ */
1250
+ content: string;
1251
+ };
1252
+ /**
1253
+ * Describes the message bilibili.community.service.dm.v1.DmMaskWallContent.
1254
+ * Use `create(DmMaskWallContentSchema)` to create a new message.
1255
+ */
1256
+ export declare const DmMaskWallContentSchema: GenMessage<DmMaskWallContent>;
1257
+ /**
1258
+ * 修改弹幕配置-请求
1259
+ *
1260
+ * @generated from message bilibili.community.service.dm.v1.DmPlayerConfigReq
1261
+ */
1262
+ export type DmPlayerConfigReq = Message<"bilibili.community.service.dm.v1.DmPlayerConfigReq"> & {
1263
+ /**
1264
+ * @generated from field: int64 ts = 1;
1265
+ */
1266
+ ts: bigint;
1267
+ /**
1268
+ * 是否开启弹幕
1269
+ *
1270
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuSwitch switch = 2;
1271
+ */
1272
+ switch?: PlayerDanmakuSwitch;
1273
+ /**
1274
+ * 是否记录弹幕开关设置
1275
+ *
1276
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuSwitchSave switch_save = 3;
1277
+ */
1278
+ switchSave?: PlayerDanmakuSwitchSave;
1279
+ /**
1280
+ * 是否使用推荐弹幕设置
1281
+ *
1282
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuUseDefaultConfig use_default_config = 4;
1283
+ */
1284
+ useDefaultConfig?: PlayerDanmakuUseDefaultConfig;
1285
+ /**
1286
+ * 是否开启智能云屏蔽
1287
+ *
1288
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedSwitch ai_recommended_switch = 5;
1289
+ */
1290
+ aiRecommendedSwitch?: PlayerDanmakuAiRecommendedSwitch;
1291
+ /**
1292
+ * 智能云屏蔽等级
1293
+ *
1294
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedLevel ai_recommended_level = 6;
1295
+ */
1296
+ aiRecommendedLevel?: PlayerDanmakuAiRecommendedLevel;
1297
+ /**
1298
+ * 是否屏蔽顶端弹幕
1299
+ *
1300
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuBlocktop blocktop = 7;
1301
+ */
1302
+ blocktop?: PlayerDanmakuBlocktop;
1303
+ /**
1304
+ * 是否屏蔽滚动弹幕
1305
+ *
1306
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuBlockscroll blockscroll = 8;
1307
+ */
1308
+ blockscroll?: PlayerDanmakuBlockscroll;
1309
+ /**
1310
+ * 是否屏蔽底端弹幕
1311
+ *
1312
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuBlockbottom blockbottom = 9;
1313
+ */
1314
+ blockbottom?: PlayerDanmakuBlockbottom;
1315
+ /**
1316
+ * 是否屏蔽彩色弹幕
1317
+ *
1318
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuBlockcolorful blockcolorful = 10;
1319
+ */
1320
+ blockcolorful?: PlayerDanmakuBlockcolorful;
1321
+ /**
1322
+ * 是否屏蔽重复弹幕
1323
+ *
1324
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuBlockrepeat blockrepeat = 11;
1325
+ */
1326
+ blockrepeat?: PlayerDanmakuBlockrepeat;
1327
+ /**
1328
+ * 是否屏蔽高级弹幕
1329
+ *
1330
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuBlockspecial blockspecial = 12;
1331
+ */
1332
+ blockspecial?: PlayerDanmakuBlockspecial;
1333
+ /**
1334
+ * 弹幕不透明度
1335
+ *
1336
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuOpacity opacity = 13;
1337
+ */
1338
+ opacity?: PlayerDanmakuOpacity;
1339
+ /**
1340
+ * 弹幕缩放比例
1341
+ *
1342
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuScalingfactor scalingfactor = 14;
1343
+ */
1344
+ scalingfactor?: PlayerDanmakuScalingfactor;
1345
+ /**
1346
+ * 弹幕显示区域
1347
+ *
1348
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuDomain domain = 15;
1349
+ */
1350
+ domain?: PlayerDanmakuDomain;
1351
+ /**
1352
+ * 弹幕速度
1353
+ *
1354
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuSpeed speed = 16;
1355
+ */
1356
+ speed?: PlayerDanmakuSpeed;
1357
+ /**
1358
+ * 是否开启屏蔽列表
1359
+ *
1360
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuEnableblocklist enableblocklist = 17;
1361
+ */
1362
+ enableblocklist?: PlayerDanmakuEnableblocklist;
1363
+ /**
1364
+ * 是否开启弹幕
1365
+ *
1366
+ * @generated from field: bilibili.community.service.dm.v1.InlinePlayerDanmakuSwitch inlinePlayerDanmakuSwitch = 18;
1367
+ */
1368
+ inlinePlayerDanmakuSwitch?: InlinePlayerDanmakuSwitch;
1369
+ /**
1370
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuSeniorModeSwitch senior_mode_switch = 19;
1371
+ */
1372
+ seniorModeSwitch?: PlayerDanmakuSeniorModeSwitch;
1373
+ /**
1374
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedLevelV2 ai_recommended_level_v2 = 20;
1375
+ */
1376
+ aiRecommendedLevelV2?: PlayerDanmakuAiRecommendedLevelV2;
1377
+ /**
1378
+ *
1379
+ *
1380
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuEnableHerdDm enable_herd_dm = 21;
1381
+ */
1382
+ enableHerdDm?: PlayerDanmakuEnableHerdDm;
1383
+ /**
1384
+ *
1385
+ *
1386
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuBlocktopBottom blocktop_bottom = 22;
1387
+ */
1388
+ blocktopBottom?: PlayerDanmakuBlocktopBottom;
1389
+ /**
1390
+ *
1391
+ *
1392
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuDomainV2 domain_v2 = 23;
1393
+ */
1394
+ domainV2?: PlayerDanmakuDomainV2;
1395
+ /**
1396
+ *
1397
+ *
1398
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuDensity density = 24;
1399
+ */
1400
+ density?: PlayerDanmakuDensity;
1401
+ /**
1402
+ *
1403
+ *
1404
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuSubtitleProof subtitle_proof = 25;
1405
+ */
1406
+ subtitleProof?: PlayerDanmakuSubtitleProof;
1407
+ /**
1408
+ *
1409
+ *
1410
+ * @generated from field: bilibili.community.service.dm.v1.PlayerDanmakuPeopleProof people_proof = 26;
1411
+ */
1412
+ peopleProof?: PlayerDanmakuPeopleProof;
1413
+ };
1414
+ /**
1415
+ * Describes the message bilibili.community.service.dm.v1.DmPlayerConfigReq.
1416
+ * Use `create(DmPlayerConfigReqSchema)` to create a new message.
1417
+ */
1418
+ export declare const DmPlayerConfigReqSchema: GenMessage<DmPlayerConfigReq>;
1419
+ /**
1420
+ * @generated from message bilibili.community.service.dm.v1.DmSegConfig
1421
+ */
1422
+ export type DmSegConfig = Message<"bilibili.community.service.dm.v1.DmSegConfig"> & {
1423
+ /**
1424
+ * @generated from field: int64 page_size = 1;
1425
+ */
1426
+ pageSize: bigint;
1427
+ /**
1428
+ * @generated from field: int64 total = 2;
1429
+ */
1430
+ total: bigint;
1431
+ };
1432
+ /**
1433
+ * Describes the message bilibili.community.service.dm.v1.DmSegConfig.
1434
+ * Use `create(DmSegConfigSchema)` to create a new message.
1435
+ */
1436
+ export declare const DmSegConfigSchema: GenMessage<DmSegConfig>;
1437
+ /**
1438
+ * 获取弹幕-响应
1439
+ *
1440
+ * @generated from message bilibili.community.service.dm.v1.DmSegMobileReply
1441
+ */
1442
+ export type DmSegMobileReply = Message<"bilibili.community.service.dm.v1.DmSegMobileReply"> & {
1443
+ /**
1444
+ * 弹幕列表
1445
+ *
1446
+ * @generated from field: repeated bilibili.community.service.dm.v1.DanmakuElem elems = 1;
1447
+ */
1448
+ elems: DanmakuElem[];
1449
+ /**
1450
+ * 是否已关闭弹幕
1451
+ * 0:未关闭 1:已关闭
1452
+ *
1453
+ * @generated from field: int32 state = 2;
1454
+ */
1455
+ state: number;
1456
+ /**
1457
+ * 弹幕云屏蔽ai评分值
1458
+ *
1459
+ * @generated from field: bilibili.community.service.dm.v1.DanmakuAIFlag ai_flag = 3;
1460
+ */
1461
+ aiFlag?: DanmakuAIFlag;
1462
+ /**
1463
+ *
1464
+ *
1465
+ * @generated from field: repeated int64 segment_rules = 4;
1466
+ */
1467
+ segmentRules: bigint[];
1468
+ /**
1469
+ * @generated from field: repeated bilibili.community.service.dm.v1.DmColorful colorful_src = 5;
1470
+ */
1471
+ colorfulSrc: DmColorful[];
1472
+ /**
1473
+ *
1474
+ *
1475
+ * @generated from field: string context_src = 6;
1476
+ */
1477
+ contextSrc: string;
1478
+ };
1479
+ /**
1480
+ * Describes the message bilibili.community.service.dm.v1.DmSegMobileReply.
1481
+ * Use `create(DmSegMobileReplySchema)` to create a new message.
1482
+ */
1483
+ export declare const DmSegMobileReplySchema: GenMessage<DmSegMobileReply>;
1484
+ /**
1485
+ * 获取弹幕-请求
1486
+ *
1487
+ * @generated from message bilibili.community.service.dm.v1.DmSegMobileReq
1488
+ */
1489
+ export type DmSegMobileReq = Message<"bilibili.community.service.dm.v1.DmSegMobileReq"> & {
1490
+ /**
1491
+ * 稿件avid/漫画epid
1492
+ *
1493
+ * @generated from field: int64 pid = 1;
1494
+ */
1495
+ pid: bigint;
1496
+ /**
1497
+ * 视频cid/漫画cid
1498
+ *
1499
+ * @generated from field: int64 oid = 2;
1500
+ */
1501
+ oid: bigint;
1502
+ /**
1503
+ * 弹幕类型
1504
+ * 1:视频 2:漫画
1505
+ *
1506
+ * @generated from field: int32 type = 3;
1507
+ */
1508
+ type: number;
1509
+ /**
1510
+ * 分段(6min)
1511
+ *
1512
+ * @generated from field: int64 segment_index = 4;
1513
+ */
1514
+ segmentIndex: bigint;
1515
+ /**
1516
+ * 是否青少年模式
1517
+ *
1518
+ * @generated from field: int32 teenagers_mode = 5;
1519
+ */
1520
+ teenagersMode: number;
1521
+ /**
1522
+ * @generated from field: int64 ps = 6;
1523
+ */
1524
+ ps: bigint;
1525
+ /**
1526
+ * @generated from field: int64 pe = 7;
1527
+ */
1528
+ pe: bigint;
1529
+ /**
1530
+ * @generated from field: int32 pull_mode = 8;
1531
+ */
1532
+ pullMode: number;
1533
+ /**
1534
+ * @generated from field: int32 from_scene = 9;
1535
+ */
1536
+ fromScene: number;
1537
+ /**
1538
+ *
1539
+ *
1540
+ * @generated from field: string spmid = 10;
1541
+ */
1542
+ spmid: string;
1543
+ /**
1544
+ *
1545
+ *
1546
+ * @generated from field: string context_ext = 11;
1547
+ */
1548
+ contextExt: string;
1549
+ };
1550
+ /**
1551
+ * Describes the message bilibili.community.service.dm.v1.DmSegMobileReq.
1552
+ * Use `create(DmSegMobileReqSchema)` to create a new message.
1553
+ */
1554
+ export declare const DmSegMobileReqSchema: GenMessage<DmSegMobileReq>;
1555
+ /**
1556
+ * ott弹幕列表-响应
1557
+ *
1558
+ * @generated from message bilibili.community.service.dm.v1.DmSegOttReply
1559
+ */
1560
+ export type DmSegOttReply = Message<"bilibili.community.service.dm.v1.DmSegOttReply"> & {
1561
+ /**
1562
+ * 是否已关闭弹幕
1563
+ * 0:未关闭 1:已关闭
1564
+ *
1565
+ * @generated from field: repeated bilibili.community.service.dm.v1.DanmakuElem elems = 1;
1566
+ */
1567
+ elems: DanmakuElem[];
1568
+ /**
1569
+ * 弹幕列表
1570
+ *
1571
+ * @generated from field: int32 state = 2;
1572
+ */
1573
+ state: number;
1574
+ };
1575
+ /**
1576
+ * Describes the message bilibili.community.service.dm.v1.DmSegOttReply.
1577
+ * Use `create(DmSegOttReplySchema)` to create a new message.
1578
+ */
1579
+ export declare const DmSegOttReplySchema: GenMessage<DmSegOttReply>;
1580
+ /**
1581
+ * ott弹幕列表-请求
1582
+ *
1583
+ * @generated from message bilibili.community.service.dm.v1.DmSegOttReq
1584
+ */
1585
+ export type DmSegOttReq = Message<"bilibili.community.service.dm.v1.DmSegOttReq"> & {
1586
+ /**
1587
+ * 稿件avid/漫画epid
1588
+ *
1589
+ * @generated from field: int64 pid = 1;
1590
+ */
1591
+ pid: bigint;
1592
+ /**
1593
+ * 视频cid/漫画cid
1594
+ *
1595
+ * @generated from field: int64 oid = 2;
1596
+ */
1597
+ oid: bigint;
1598
+ /**
1599
+ * 弹幕类型
1600
+ * 1:视频 2:漫画
1601
+ *
1602
+ * @generated from field: int32 type = 3;
1603
+ */
1604
+ type: number;
1605
+ /**
1606
+ * 分段(6min)
1607
+ *
1608
+ * @generated from field: int64 segment_index = 4;
1609
+ */
1610
+ segmentIndex: bigint;
1611
+ };
1612
+ /**
1613
+ * Describes the message bilibili.community.service.dm.v1.DmSegOttReq.
1614
+ * Use `create(DmSegOttReqSchema)` to create a new message.
1615
+ */
1616
+ export declare const DmSegOttReqSchema: GenMessage<DmSegOttReq>;
1617
+ /**
1618
+ * 弹幕SDK-响应
1619
+ *
1620
+ * @generated from message bilibili.community.service.dm.v1.DmSegSDKReply
1621
+ */
1622
+ export type DmSegSDKReply = Message<"bilibili.community.service.dm.v1.DmSegSDKReply"> & {
1623
+ /**
1624
+ * 是否已关闭弹幕
1625
+ * 0:未关闭 1:已关闭
1626
+ *
1627
+ * @generated from field: bool closed = 1;
1628
+ */
1629
+ closed: boolean;
1630
+ /**
1631
+ * 弹幕列表
1632
+ *
1633
+ * @generated from field: repeated bilibili.community.service.dm.v1.DanmakuElem elems = 2;
1634
+ */
1635
+ elems: DanmakuElem[];
1636
+ };
1637
+ /**
1638
+ * Describes the message bilibili.community.service.dm.v1.DmSegSDKReply.
1639
+ * Use `create(DmSegSDKReplySchema)` to create a new message.
1640
+ */
1641
+ export declare const DmSegSDKReplySchema: GenMessage<DmSegSDKReply>;
1642
+ /**
1643
+ * 弹幕SDK-请求
1644
+ *
1645
+ * @generated from message bilibili.community.service.dm.v1.DmSegSDKReq
1646
+ */
1647
+ export type DmSegSDKReq = Message<"bilibili.community.service.dm.v1.DmSegSDKReq"> & {
1648
+ /**
1649
+ * 稿件avid/漫画epid
1650
+ *
1651
+ * @generated from field: int64 pid = 1;
1652
+ */
1653
+ pid: bigint;
1654
+ /**
1655
+ * 视频cid/漫画cid
1656
+ *
1657
+ * @generated from field: int64 oid = 2;
1658
+ */
1659
+ oid: bigint;
1660
+ /**
1661
+ * 弹幕类型
1662
+ * 1:视频 2:漫画
1663
+ *
1664
+ * @generated from field: int32 type = 3;
1665
+ */
1666
+ type: number;
1667
+ /**
1668
+ * 分段(6min)
1669
+ *
1670
+ * @generated from field: int64 segment_index = 4;
1671
+ */
1672
+ segmentIndex: bigint;
1673
+ };
1674
+ /**
1675
+ * Describes the message bilibili.community.service.dm.v1.DmSegSDKReq.
1676
+ * Use `create(DmSegSDKReqSchema)` to create a new message.
1677
+ */
1678
+ export declare const DmSegSDKReqSchema: GenMessage<DmSegSDKReq>;
1679
+ /**
1680
+ *
1681
+ *
1682
+ * @generated from message bilibili.community.service.dm.v1.DmSubView
1683
+ */
1684
+ export type DmSubView = Message<"bilibili.community.service.dm.v1.DmSubView"> & {
1685
+ /**
1686
+ *
1687
+ *
1688
+ * @generated from field: int32 type = 1;
1689
+ */
1690
+ type: number;
1691
+ /**
1692
+ *
1693
+ *
1694
+ * @generated from field: int64 oid = 2;
1695
+ */
1696
+ oid: bigint;
1697
+ /**
1698
+ *
1699
+ *
1700
+ * @generated from field: int64 pid = 3;
1701
+ */
1702
+ pid: bigint;
1703
+ /**
1704
+ *
1705
+ *
1706
+ * @generated from field: repeated bilibili.community.service.dm.v1.PostPanelV2 post_panel2 = 4;
1707
+ */
1708
+ postPanel2: PostPanelV2[];
1709
+ };
1710
+ /**
1711
+ * Describes the message bilibili.community.service.dm.v1.DmSubView.
1712
+ * Use `create(DmSubViewSchema)` to create a new message.
1713
+ */
1714
+ export declare const DmSubViewSchema: GenMessage<DmSubView>;
1715
+ /**
1716
+ * 客户端弹幕元数据-响应
1717
+ *
1718
+ * @generated from message bilibili.community.service.dm.v1.DmViewReply
1719
+ */
1720
+ export type DmViewReply = Message<"bilibili.community.service.dm.v1.DmViewReply"> & {
1721
+ /**
1722
+ * 是否已关闭弹幕
1723
+ * 0:未关闭 1:已关闭
1724
+ *
1725
+ * @generated from field: bool closed = 1;
1726
+ */
1727
+ closed: boolean;
1728
+ /**
1729
+ * 智能防挡弹幕蒙版信息
1730
+ *
1731
+ * @generated from field: bilibili.community.service.dm.v1.VideoMask mask = 2;
1732
+ */
1733
+ mask?: VideoMask;
1734
+ /**
1735
+ * 视频字幕
1736
+ *
1737
+ * @generated from field: bilibili.community.service.dm.v1.VideoSubtitle subtitle = 3;
1738
+ */
1739
+ subtitle?: VideoSubtitle;
1740
+ /**
1741
+ * 高级弹幕专包url(bfs)
1742
+ *
1743
+ * @generated from field: repeated string special_dms = 4;
1744
+ */
1745
+ specialDms: string[];
1746
+ /**
1747
+ * 云屏蔽配置信息
1748
+ *
1749
+ * @generated from field: bilibili.community.service.dm.v1.DanmakuFlagConfig ai_flag = 5;
1750
+ */
1751
+ aiFlag?: DanmakuFlagConfig;
1752
+ /**
1753
+ * 弹幕配置信息
1754
+ *
1755
+ * @generated from field: bilibili.community.service.dm.v1.DanmuPlayerViewConfig player_config = 6;
1756
+ */
1757
+ playerConfig?: DanmuPlayerViewConfig;
1758
+ /**
1759
+ * 弹幕发送框样式
1760
+ *
1761
+ * @generated from field: int32 send_box_style = 7;
1762
+ */
1763
+ sendBoxStyle: number;
1764
+ /**
1765
+ * 是否允许
1766
+ *
1767
+ * @generated from field: bool allow = 8;
1768
+ */
1769
+ allow: boolean;
1770
+ /**
1771
+ * check box 是否展示
1772
+ *
1773
+ * @generated from field: bool check_box = 9;
1774
+ */
1775
+ checkBox: boolean;
1776
+ /**
1777
+ * check box 展示文本
1778
+ *
1779
+ * @generated from field: string check_box_show_msg = 10;
1780
+ */
1781
+ checkBoxShowMsg: string;
1782
+ /**
1783
+ * 展示文案
1784
+ *
1785
+ * @generated from field: string text_placeholder = 11;
1786
+ */
1787
+ textPlaceholder: string;
1788
+ /**
1789
+ * 弹幕输入框文案
1790
+ *
1791
+ * @generated from field: string input_placeholder = 12;
1792
+ */
1793
+ inputPlaceholder: string;
1794
+ /**
1795
+ * 用户举报弹幕 cid维度屏蔽的正则规则
1796
+ *
1797
+ * @generated from field: repeated string report_filter_content = 13;
1798
+ */
1799
+ reportFilterContent: string[];
1800
+ /**
1801
+ * @generated from field: bilibili.community.service.dm.v1.ExpoReport expo_report = 14;
1802
+ */
1803
+ expoReport?: ExpoReport;
1804
+ /**
1805
+ * @generated from field: bilibili.community.service.dm.v1.BuzzwordConfig buzzword_config = 15;
1806
+ */
1807
+ buzzwordConfig?: BuzzwordConfig;
1808
+ /**
1809
+ * @generated from field: repeated bilibili.community.service.dm.v1.Expressions expressions = 16;
1810
+ */
1811
+ expressions: Expressions[];
1812
+ /**
1813
+ * @generated from field: repeated bilibili.community.service.dm.v1.PostPanel post_panel = 17;
1814
+ */
1815
+ postPanel: PostPanel[];
1816
+ /**
1817
+ * @generated from field: repeated string activity_meta = 18;
1818
+ */
1819
+ activityMeta: string[];
1820
+ /**
1821
+ * @generated from field: repeated bilibili.community.service.dm.v1.PostPanelV2 post_panel2 = 19;
1822
+ */
1823
+ postPanel2: PostPanelV2[];
1824
+ /**
1825
+ *
1826
+ *
1827
+ * @generated from field: repeated bilibili.community.service.dm.v1.DmMaskWall dm_mask_wall = 20;
1828
+ */
1829
+ dmMaskWall: DmMaskWall[];
1830
+ /**
1831
+ *
1832
+ *
1833
+ * @generated from field: bilibili.community.service.dm.v1.DmHerdView dm_herd = 21;
1834
+ */
1835
+ dmHerd?: DmHerdView;
1836
+ /**
1837
+ *
1838
+ *
1839
+ * @generated from field: bilibili.community.service.dm.v1.Command command = 22;
1840
+ */
1841
+ command?: Command;
1842
+ /**
1843
+ *
1844
+ *
1845
+ * @generated from field: string kv = 23;
1846
+ */
1847
+ kv: string;
1848
+ /**
1849
+ *
1850
+ *
1851
+ * @generated from field: repeated bilibili.community.service.dm.v1.DmSubView sub_views = 24;
1852
+ */
1853
+ subViews: DmSubView[];
1854
+ /**
1855
+ *
1856
+ *
1857
+ * @generated from field: bilibili.community.service.dm.v1.QoeInfo qoe = 25;
1858
+ */
1859
+ qoe?: QoeInfo;
1860
+ };
1861
+ /**
1862
+ * Describes the message bilibili.community.service.dm.v1.DmViewReply.
1863
+ * Use `create(DmViewReplySchema)` to create a new message.
1864
+ */
1865
+ export declare const DmViewReplySchema: GenMessage<DmViewReply>;
1866
+ /**
1867
+ * 客户端弹幕元数据-请求
1868
+ *
1869
+ * @generated from message bilibili.community.service.dm.v1.DmViewReq
1870
+ */
1871
+ export type DmViewReq = Message<"bilibili.community.service.dm.v1.DmViewReq"> & {
1872
+ /**
1873
+ * 稿件avid/漫画epid
1874
+ *
1875
+ * @generated from field: int64 pid = 1;
1876
+ */
1877
+ pid: bigint;
1878
+ /**
1879
+ * 视频cid/漫画cid
1880
+ *
1881
+ * @generated from field: int64 oid = 2;
1882
+ */
1883
+ oid: bigint;
1884
+ /**
1885
+ * 弹幕类型
1886
+ * 1:视频 2:漫画
1887
+ *
1888
+ * @generated from field: int32 type = 3;
1889
+ */
1890
+ type: number;
1891
+ /**
1892
+ * 页面spm
1893
+ *
1894
+ * @generated from field: string spmid = 4;
1895
+ */
1896
+ spmid: string;
1897
+ /**
1898
+ * 是否冷启
1899
+ *
1900
+ * @generated from field: int32 is_hard_boot = 5;
1901
+ */
1902
+ isHardBoot: number;
1903
+ /**
1904
+ *
1905
+ *
1906
+ * @generated from field: string context_ext = 6;
1907
+ */
1908
+ contextExt: string;
1909
+ };
1910
+ /**
1911
+ * Describes the message bilibili.community.service.dm.v1.DmViewReq.
1912
+ * Use `create(DmViewReqSchema)` to create a new message.
1913
+ */
1914
+ export declare const DmViewReqSchema: GenMessage<DmViewReq>;
1915
+ /**
1916
+ * web端弹幕元数据-响应
1917
+ * https://api.bilibili.com/x/v2/dm/web/view
1918
+ *
1919
+ * @generated from message bilibili.community.service.dm.v1.DmWebViewReply
1920
+ */
1921
+ export type DmWebViewReply = Message<"bilibili.community.service.dm.v1.DmWebViewReply"> & {
1922
+ /**
1923
+ * 是否已关闭弹幕
1924
+ * 0:未关闭 1:已关闭
1925
+ *
1926
+ * @generated from field: int32 state = 1;
1927
+ */
1928
+ state: number;
1929
+ /**
1930
+ * @generated from field: string text = 2;
1931
+ */
1932
+ text: string;
1933
+ /**
1934
+ * @generated from field: string text_side = 3;
1935
+ */
1936
+ textSide: string;
1937
+ /**
1938
+ * 分段弹幕配置
1939
+ *
1940
+ * @generated from field: bilibili.community.service.dm.v1.DmSegConfig dm_sge = 4;
1941
+ */
1942
+ dmSge?: DmSegConfig;
1943
+ /**
1944
+ * 云屏蔽配置信息
1945
+ *
1946
+ * @generated from field: bilibili.community.service.dm.v1.DanmakuFlagConfig flag = 5;
1947
+ */
1948
+ flag?: DanmakuFlagConfig;
1949
+ /**
1950
+ * 高级弹幕专包url(bfs)
1951
+ *
1952
+ * @generated from field: repeated string special_dms = 6;
1953
+ */
1954
+ specialDms: string[];
1955
+ /**
1956
+ * check box 是否展示
1957
+ *
1958
+ * @generated from field: bool check_box = 7;
1959
+ */
1960
+ checkBox: boolean;
1961
+ /**
1962
+ * 弹幕数
1963
+ *
1964
+ * @generated from field: int64 count = 8;
1965
+ */
1966
+ count: bigint;
1967
+ /**
1968
+ * 互动弹幕
1969
+ *
1970
+ * @generated from field: repeated bilibili.community.service.dm.v1.CommandDm command_dms = 9;
1971
+ */
1972
+ commandDms: CommandDm[];
1973
+ /**
1974
+ * 用户弹幕配置
1975
+ *
1976
+ * @generated from field: bilibili.community.service.dm.v1.DanmuWebPlayerConfig player_config = 10;
1977
+ */
1978
+ playerConfig?: DanmuWebPlayerConfig;
1979
+ /**
1980
+ * 用户举报弹幕 cid维度屏蔽
1981
+ *
1982
+ * @generated from field: repeated string report_filter_content = 11;
1983
+ */
1984
+ reportFilterContent: string[];
1985
+ /**
1986
+ * @generated from field: repeated bilibili.community.service.dm.v1.Expressions expressions = 12;
1987
+ */
1988
+ expressions: Expressions[];
1989
+ /**
1990
+ * @generated from field: repeated bilibili.community.service.dm.v1.PostPanel post_panel = 13;
1991
+ */
1992
+ postPanel: PostPanel[];
1993
+ /**
1994
+ * @generated from field: repeated string activity_meta = 14;
1995
+ */
1996
+ activityMeta: string[];
1997
+ /**
1998
+ *
1999
+ *
2000
+ * @generated from field: repeated bilibili.community.service.dm.v1.PostPanelV2 post_panel2 = 15;
2001
+ */
2002
+ postPanel2: PostPanelV2[];
2003
+ /**
2004
+ *
2005
+ *
2006
+ * @generated from field: repeated bilibili.community.service.dm.v1.DmSubView sub_views = 16;
2007
+ */
2008
+ subViews: DmSubView[];
2009
+ /**
2010
+ *
2011
+ *
2012
+ * @generated from field: bilibili.community.service.dm.v1.QoeInfo qoe = 17;
2013
+ */
2014
+ qoe?: QoeInfo;
2015
+ };
2016
+ /**
2017
+ * Describes the message bilibili.community.service.dm.v1.DmWebViewReply.
2018
+ * Use `create(DmWebViewReplySchema)` to create a new message.
2019
+ */
2020
+ export declare const DmWebViewReplySchema: GenMessage<DmWebViewReply>;
2021
+ /**
2022
+ * @generated from message bilibili.community.service.dm.v1.ExpoReport
2023
+ */
2024
+ export type ExpoReport = Message<"bilibili.community.service.dm.v1.ExpoReport"> & {
2025
+ /**
2026
+ * @generated from field: bool should_report_at_end = 1;
2027
+ */
2028
+ shouldReportAtEnd: boolean;
2029
+ };
2030
+ /**
2031
+ * Describes the message bilibili.community.service.dm.v1.ExpoReport.
2032
+ * Use `create(ExpoReportSchema)` to create a new message.
2033
+ */
2034
+ export declare const ExpoReportSchema: GenMessage<ExpoReport>;
2035
+ /**
2036
+ * @generated from message bilibili.community.service.dm.v1.Expression
2037
+ */
2038
+ export type Expression = Message<"bilibili.community.service.dm.v1.Expression"> & {
2039
+ /**
2040
+ * @generated from field: repeated string keyword = 1;
2041
+ */
2042
+ keyword: string[];
2043
+ /**
2044
+ * @generated from field: string url = 2;
2045
+ */
2046
+ url: string;
2047
+ /**
2048
+ * @generated from field: repeated bilibili.community.service.dm.v1.Period period = 3;
2049
+ */
2050
+ period: Period[];
2051
+ };
2052
+ /**
2053
+ * Describes the message bilibili.community.service.dm.v1.Expression.
2054
+ * Use `create(ExpressionSchema)` to create a new message.
2055
+ */
2056
+ export declare const ExpressionSchema: GenMessage<Expression>;
2057
+ /**
2058
+ * @generated from message bilibili.community.service.dm.v1.Expressions
2059
+ */
2060
+ export type Expressions = Message<"bilibili.community.service.dm.v1.Expressions"> & {
2061
+ /**
2062
+ * @generated from field: repeated bilibili.community.service.dm.v1.Expression data = 1;
2063
+ */
2064
+ data: Expression[];
2065
+ };
2066
+ /**
2067
+ * Describes the message bilibili.community.service.dm.v1.Expressions.
2068
+ * Use `create(ExpressionsSchema)` to create a new message.
2069
+ */
2070
+ export declare const ExpressionsSchema: GenMessage<Expressions>;
2071
+ /**
2072
+ * 是否开启弹幕
2073
+ *
2074
+ * @generated from message bilibili.community.service.dm.v1.InlinePlayerDanmakuSwitch
2075
+ */
2076
+ export type InlinePlayerDanmakuSwitch = Message<"bilibili.community.service.dm.v1.InlinePlayerDanmakuSwitch"> & {
2077
+ /**
2078
+ * @generated from field: bool value = 1;
2079
+ */
2080
+ value: boolean;
2081
+ };
2082
+ /**
2083
+ * Describes the message bilibili.community.service.dm.v1.InlinePlayerDanmakuSwitch.
2084
+ * Use `create(InlinePlayerDanmakuSwitchSchema)` to create a new message.
2085
+ */
2086
+ export declare const InlinePlayerDanmakuSwitchSchema: GenMessage<InlinePlayerDanmakuSwitch>;
2087
+ /**
2088
+ * @generated from message bilibili.community.service.dm.v1.Label
2089
+ */
2090
+ export type Label = Message<"bilibili.community.service.dm.v1.Label"> & {
2091
+ /**
2092
+ * @generated from field: string title = 1;
2093
+ */
2094
+ title: string;
2095
+ /**
2096
+ * @generated from field: repeated string content = 2;
2097
+ */
2098
+ content: string[];
2099
+ };
2100
+ /**
2101
+ * Describes the message bilibili.community.service.dm.v1.Label.
2102
+ * Use `create(LabelSchema)` to create a new message.
2103
+ */
2104
+ export declare const LabelSchema: GenMessage<Label>;
2105
+ /**
2106
+ * @generated from message bilibili.community.service.dm.v1.LabelV2
2107
+ */
2108
+ export type LabelV2 = Message<"bilibili.community.service.dm.v1.LabelV2"> & {
2109
+ /**
2110
+ * @generated from field: string title = 1;
2111
+ */
2112
+ title: string;
2113
+ /**
2114
+ * @generated from field: repeated string content = 2;
2115
+ */
2116
+ content: string[];
2117
+ /**
2118
+ * @generated from field: bool exposure_once = 3;
2119
+ */
2120
+ exposureOnce: boolean;
2121
+ /**
2122
+ * @generated from field: bilibili.community.service.dm.v1.ExposureType exposure_type = 4;
2123
+ */
2124
+ exposureType: ExposureType;
2125
+ };
2126
+ /**
2127
+ * Describes the message bilibili.community.service.dm.v1.LabelV2.
2128
+ * Use `create(LabelV2Schema)` to create a new message.
2129
+ */
2130
+ export declare const LabelV2Schema: GenMessage<LabelV2>;
2131
+ /**
2132
+ * @generated from message bilibili.community.service.dm.v1.Period
2133
+ */
2134
+ export type Period = Message<"bilibili.community.service.dm.v1.Period"> & {
2135
+ /**
2136
+ * @generated from field: int64 start = 1;
2137
+ */
2138
+ start: bigint;
2139
+ /**
2140
+ * @generated from field: int64 end = 2;
2141
+ */
2142
+ end: bigint;
2143
+ };
2144
+ /**
2145
+ * Describes the message bilibili.community.service.dm.v1.Period.
2146
+ * Use `create(PeriodSchema)` to create a new message.
2147
+ */
2148
+ export declare const PeriodSchema: GenMessage<Period>;
2149
+ /**
2150
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedLevel
2151
+ */
2152
+ export type PlayerDanmakuAiRecommendedLevel = Message<"bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedLevel"> & {
2153
+ /**
2154
+ * @generated from field: int32 value = 1;
2155
+ */
2156
+ value: number;
2157
+ };
2158
+ /**
2159
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedLevel.
2160
+ * Use `create(PlayerDanmakuAiRecommendedLevelSchema)` to create a new message.
2161
+ */
2162
+ export declare const PlayerDanmakuAiRecommendedLevelSchema: GenMessage<PlayerDanmakuAiRecommendedLevel>;
2163
+ /**
2164
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedLevelV2
2165
+ */
2166
+ export type PlayerDanmakuAiRecommendedLevelV2 = Message<"bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedLevelV2"> & {
2167
+ /**
2168
+ * @generated from field: int32 value = 1;
2169
+ */
2170
+ value: number;
2171
+ };
2172
+ /**
2173
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedLevelV2.
2174
+ * Use `create(PlayerDanmakuAiRecommendedLevelV2Schema)` to create a new message.
2175
+ */
2176
+ export declare const PlayerDanmakuAiRecommendedLevelV2Schema: GenMessage<PlayerDanmakuAiRecommendedLevelV2>;
2177
+ /**
2178
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedSwitch
2179
+ */
2180
+ export type PlayerDanmakuAiRecommendedSwitch = Message<"bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedSwitch"> & {
2181
+ /**
2182
+ * @generated from field: bool value = 1;
2183
+ */
2184
+ value: boolean;
2185
+ };
2186
+ /**
2187
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuAiRecommendedSwitch.
2188
+ * Use `create(PlayerDanmakuAiRecommendedSwitchSchema)` to create a new message.
2189
+ */
2190
+ export declare const PlayerDanmakuAiRecommendedSwitchSchema: GenMessage<PlayerDanmakuAiRecommendedSwitch>;
2191
+ /**
2192
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuBlockbottom
2193
+ */
2194
+ export type PlayerDanmakuBlockbottom = Message<"bilibili.community.service.dm.v1.PlayerDanmakuBlockbottom"> & {
2195
+ /**
2196
+ * @generated from field: bool value = 1;
2197
+ */
2198
+ value: boolean;
2199
+ };
2200
+ /**
2201
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuBlockbottom.
2202
+ * Use `create(PlayerDanmakuBlockbottomSchema)` to create a new message.
2203
+ */
2204
+ export declare const PlayerDanmakuBlockbottomSchema: GenMessage<PlayerDanmakuBlockbottom>;
2205
+ /**
2206
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuBlockcolorful
2207
+ */
2208
+ export type PlayerDanmakuBlockcolorful = Message<"bilibili.community.service.dm.v1.PlayerDanmakuBlockcolorful"> & {
2209
+ /**
2210
+ * @generated from field: bool value = 1;
2211
+ */
2212
+ value: boolean;
2213
+ };
2214
+ /**
2215
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuBlockcolorful.
2216
+ * Use `create(PlayerDanmakuBlockcolorfulSchema)` to create a new message.
2217
+ */
2218
+ export declare const PlayerDanmakuBlockcolorfulSchema: GenMessage<PlayerDanmakuBlockcolorful>;
2219
+ /**
2220
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuBlockrepeat
2221
+ */
2222
+ export type PlayerDanmakuBlockrepeat = Message<"bilibili.community.service.dm.v1.PlayerDanmakuBlockrepeat"> & {
2223
+ /**
2224
+ * @generated from field: bool value = 1;
2225
+ */
2226
+ value: boolean;
2227
+ };
2228
+ /**
2229
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuBlockrepeat.
2230
+ * Use `create(PlayerDanmakuBlockrepeatSchema)` to create a new message.
2231
+ */
2232
+ export declare const PlayerDanmakuBlockrepeatSchema: GenMessage<PlayerDanmakuBlockrepeat>;
2233
+ /**
2234
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuBlockscroll
2235
+ */
2236
+ export type PlayerDanmakuBlockscroll = Message<"bilibili.community.service.dm.v1.PlayerDanmakuBlockscroll"> & {
2237
+ /**
2238
+ * @generated from field: bool value = 1;
2239
+ */
2240
+ value: boolean;
2241
+ };
2242
+ /**
2243
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuBlockscroll.
2244
+ * Use `create(PlayerDanmakuBlockscrollSchema)` to create a new message.
2245
+ */
2246
+ export declare const PlayerDanmakuBlockscrollSchema: GenMessage<PlayerDanmakuBlockscroll>;
2247
+ /**
2248
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuBlockspecial
2249
+ */
2250
+ export type PlayerDanmakuBlockspecial = Message<"bilibili.community.service.dm.v1.PlayerDanmakuBlockspecial"> & {
2251
+ /**
2252
+ * @generated from field: bool value = 1;
2253
+ */
2254
+ value: boolean;
2255
+ };
2256
+ /**
2257
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuBlockspecial.
2258
+ * Use `create(PlayerDanmakuBlockspecialSchema)` to create a new message.
2259
+ */
2260
+ export declare const PlayerDanmakuBlockspecialSchema: GenMessage<PlayerDanmakuBlockspecial>;
2261
+ /**
2262
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuBlocktop
2263
+ */
2264
+ export type PlayerDanmakuBlocktop = Message<"bilibili.community.service.dm.v1.PlayerDanmakuBlocktop"> & {
2265
+ /**
2266
+ * @generated from field: bool value = 1;
2267
+ */
2268
+ value: boolean;
2269
+ };
2270
+ /**
2271
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuBlocktop.
2272
+ * Use `create(PlayerDanmakuBlocktopSchema)` to create a new message.
2273
+ */
2274
+ export declare const PlayerDanmakuBlocktopSchema: GenMessage<PlayerDanmakuBlocktop>;
2275
+ /**
2276
+ *
2277
+ *
2278
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuBlocktopBottom
2279
+ */
2280
+ export type PlayerDanmakuBlocktopBottom = Message<"bilibili.community.service.dm.v1.PlayerDanmakuBlocktopBottom"> & {
2281
+ /**
2282
+ *
2283
+ *
2284
+ * @generated from field: bool value = 1;
2285
+ */
2286
+ value: boolean;
2287
+ };
2288
+ /**
2289
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuBlocktopBottom.
2290
+ * Use `create(PlayerDanmakuBlocktopBottomSchema)` to create a new message.
2291
+ */
2292
+ export declare const PlayerDanmakuBlocktopBottomSchema: GenMessage<PlayerDanmakuBlocktopBottom>;
2293
+ /**
2294
+ *
2295
+ *
2296
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuDensity
2297
+ */
2298
+ export type PlayerDanmakuDensity = Message<"bilibili.community.service.dm.v1.PlayerDanmakuDensity"> & {
2299
+ /**
2300
+ *
2301
+ *
2302
+ * @generated from field: int32 value = 1;
2303
+ */
2304
+ value: number;
2305
+ };
2306
+ /**
2307
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuDensity.
2308
+ * Use `create(PlayerDanmakuDensitySchema)` to create a new message.
2309
+ */
2310
+ export declare const PlayerDanmakuDensitySchema: GenMessage<PlayerDanmakuDensity>;
2311
+ /**
2312
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuDomain
2313
+ */
2314
+ export type PlayerDanmakuDomain = Message<"bilibili.community.service.dm.v1.PlayerDanmakuDomain"> & {
2315
+ /**
2316
+ * @generated from field: float value = 1;
2317
+ */
2318
+ value: number;
2319
+ };
2320
+ /**
2321
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuDomain.
2322
+ * Use `create(PlayerDanmakuDomainSchema)` to create a new message.
2323
+ */
2324
+ export declare const PlayerDanmakuDomainSchema: GenMessage<PlayerDanmakuDomain>;
2325
+ /**
2326
+ *
2327
+ *
2328
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuDomainV2
2329
+ */
2330
+ export type PlayerDanmakuDomainV2 = Message<"bilibili.community.service.dm.v1.PlayerDanmakuDomainV2"> & {
2331
+ /**
2332
+ *
2333
+ *
2334
+ * @generated from field: int32 value = 1;
2335
+ */
2336
+ value: number;
2337
+ };
2338
+ /**
2339
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuDomainV2.
2340
+ * Use `create(PlayerDanmakuDomainV2Schema)` to create a new message.
2341
+ */
2342
+ export declare const PlayerDanmakuDomainV2Schema: GenMessage<PlayerDanmakuDomainV2>;
2343
+ /**
2344
+ *
2345
+ *
2346
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuEnableHerdDm
2347
+ */
2348
+ export type PlayerDanmakuEnableHerdDm = Message<"bilibili.community.service.dm.v1.PlayerDanmakuEnableHerdDm"> & {
2349
+ /**
2350
+ *
2351
+ *
2352
+ * @generated from field: bool value = 1;
2353
+ */
2354
+ value: boolean;
2355
+ };
2356
+ /**
2357
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuEnableHerdDm.
2358
+ * Use `create(PlayerDanmakuEnableHerdDmSchema)` to create a new message.
2359
+ */
2360
+ export declare const PlayerDanmakuEnableHerdDmSchema: GenMessage<PlayerDanmakuEnableHerdDm>;
2361
+ /**
2362
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuEnableblocklist
2363
+ */
2364
+ export type PlayerDanmakuEnableblocklist = Message<"bilibili.community.service.dm.v1.PlayerDanmakuEnableblocklist"> & {
2365
+ /**
2366
+ * @generated from field: bool value = 1;
2367
+ */
2368
+ value: boolean;
2369
+ };
2370
+ /**
2371
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuEnableblocklist.
2372
+ * Use `create(PlayerDanmakuEnableblocklistSchema)` to create a new message.
2373
+ */
2374
+ export declare const PlayerDanmakuEnableblocklistSchema: GenMessage<PlayerDanmakuEnableblocklist>;
2375
+ /**
2376
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuOpacity
2377
+ */
2378
+ export type PlayerDanmakuOpacity = Message<"bilibili.community.service.dm.v1.PlayerDanmakuOpacity"> & {
2379
+ /**
2380
+ * @generated from field: float value = 1;
2381
+ */
2382
+ value: number;
2383
+ };
2384
+ /**
2385
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuOpacity.
2386
+ * Use `create(PlayerDanmakuOpacitySchema)` to create a new message.
2387
+ */
2388
+ export declare const PlayerDanmakuOpacitySchema: GenMessage<PlayerDanmakuOpacity>;
2389
+ /**
2390
+ *
2391
+ *
2392
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuPeopleProof
2393
+ */
2394
+ export type PlayerDanmakuPeopleProof = Message<"bilibili.community.service.dm.v1.PlayerDanmakuPeopleProof"> & {
2395
+ /**
2396
+ *
2397
+ *
2398
+ * @generated from field: bool value = 1;
2399
+ */
2400
+ value: boolean;
2401
+ };
2402
+ /**
2403
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuPeopleProof.
2404
+ * Use `create(PlayerDanmakuPeopleProofSchema)` to create a new message.
2405
+ */
2406
+ export declare const PlayerDanmakuPeopleProofSchema: GenMessage<PlayerDanmakuPeopleProof>;
2407
+ /**
2408
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuScalingfactor
2409
+ */
2410
+ export type PlayerDanmakuScalingfactor = Message<"bilibili.community.service.dm.v1.PlayerDanmakuScalingfactor"> & {
2411
+ /**
2412
+ * @generated from field: float value = 1;
2413
+ */
2414
+ value: number;
2415
+ };
2416
+ /**
2417
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuScalingfactor.
2418
+ * Use `create(PlayerDanmakuScalingfactorSchema)` to create a new message.
2419
+ */
2420
+ export declare const PlayerDanmakuScalingfactorSchema: GenMessage<PlayerDanmakuScalingfactor>;
2421
+ /**
2422
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuSeniorModeSwitch
2423
+ */
2424
+ export type PlayerDanmakuSeniorModeSwitch = Message<"bilibili.community.service.dm.v1.PlayerDanmakuSeniorModeSwitch"> & {
2425
+ /**
2426
+ * @generated from field: int32 value = 1;
2427
+ */
2428
+ value: number;
2429
+ };
2430
+ /**
2431
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuSeniorModeSwitch.
2432
+ * Use `create(PlayerDanmakuSeniorModeSwitchSchema)` to create a new message.
2433
+ */
2434
+ export declare const PlayerDanmakuSeniorModeSwitchSchema: GenMessage<PlayerDanmakuSeniorModeSwitch>;
2435
+ /**
2436
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuSpeed
2437
+ */
2438
+ export type PlayerDanmakuSpeed = Message<"bilibili.community.service.dm.v1.PlayerDanmakuSpeed"> & {
2439
+ /**
2440
+ * @generated from field: int32 value = 1;
2441
+ */
2442
+ value: number;
2443
+ };
2444
+ /**
2445
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuSpeed.
2446
+ * Use `create(PlayerDanmakuSpeedSchema)` to create a new message.
2447
+ */
2448
+ export declare const PlayerDanmakuSpeedSchema: GenMessage<PlayerDanmakuSpeed>;
2449
+ /**
2450
+ *
2451
+ *
2452
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuSubtitleProof
2453
+ */
2454
+ export type PlayerDanmakuSubtitleProof = Message<"bilibili.community.service.dm.v1.PlayerDanmakuSubtitleProof"> & {
2455
+ /**
2456
+ *
2457
+ *
2458
+ * @generated from field: bool value = 1;
2459
+ */
2460
+ value: boolean;
2461
+ };
2462
+ /**
2463
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuSubtitleProof.
2464
+ * Use `create(PlayerDanmakuSubtitleProofSchema)` to create a new message.
2465
+ */
2466
+ export declare const PlayerDanmakuSubtitleProofSchema: GenMessage<PlayerDanmakuSubtitleProof>;
2467
+ /**
2468
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuSwitch
2469
+ */
2470
+ export type PlayerDanmakuSwitch = Message<"bilibili.community.service.dm.v1.PlayerDanmakuSwitch"> & {
2471
+ /**
2472
+ * @generated from field: bool value = 1;
2473
+ */
2474
+ value: boolean;
2475
+ /**
2476
+ * @generated from field: bool can_ignore = 2;
2477
+ */
2478
+ canIgnore: boolean;
2479
+ };
2480
+ /**
2481
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuSwitch.
2482
+ * Use `create(PlayerDanmakuSwitchSchema)` to create a new message.
2483
+ */
2484
+ export declare const PlayerDanmakuSwitchSchema: GenMessage<PlayerDanmakuSwitch>;
2485
+ /**
2486
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuSwitchSave
2487
+ */
2488
+ export type PlayerDanmakuSwitchSave = Message<"bilibili.community.service.dm.v1.PlayerDanmakuSwitchSave"> & {
2489
+ /**
2490
+ * @generated from field: bool value = 1;
2491
+ */
2492
+ value: boolean;
2493
+ };
2494
+ /**
2495
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuSwitchSave.
2496
+ * Use `create(PlayerDanmakuSwitchSaveSchema)` to create a new message.
2497
+ */
2498
+ export declare const PlayerDanmakuSwitchSaveSchema: GenMessage<PlayerDanmakuSwitchSave>;
2499
+ /**
2500
+ * @generated from message bilibili.community.service.dm.v1.PlayerDanmakuUseDefaultConfig
2501
+ */
2502
+ export type PlayerDanmakuUseDefaultConfig = Message<"bilibili.community.service.dm.v1.PlayerDanmakuUseDefaultConfig"> & {
2503
+ /**
2504
+ * @generated from field: bool value = 1;
2505
+ */
2506
+ value: boolean;
2507
+ };
2508
+ /**
2509
+ * Describes the message bilibili.community.service.dm.v1.PlayerDanmakuUseDefaultConfig.
2510
+ * Use `create(PlayerDanmakuUseDefaultConfigSchema)` to create a new message.
2511
+ */
2512
+ export declare const PlayerDanmakuUseDefaultConfigSchema: GenMessage<PlayerDanmakuUseDefaultConfig>;
2513
+ /**
2514
+ * @generated from message bilibili.community.service.dm.v1.PostPanel
2515
+ */
2516
+ export type PostPanel = Message<"bilibili.community.service.dm.v1.PostPanel"> & {
2517
+ /**
2518
+ * @generated from field: int64 start = 1;
2519
+ */
2520
+ start: bigint;
2521
+ /**
2522
+ * @generated from field: int64 end = 2;
2523
+ */
2524
+ end: bigint;
2525
+ /**
2526
+ * @generated from field: int64 priority = 3;
2527
+ */
2528
+ priority: bigint;
2529
+ /**
2530
+ * @generated from field: int64 biz_id = 4;
2531
+ */
2532
+ bizId: bigint;
2533
+ /**
2534
+ * @generated from field: bilibili.community.service.dm.v1.PostPanelBizType biz_type = 5;
2535
+ */
2536
+ bizType: PostPanelBizType;
2537
+ /**
2538
+ * @generated from field: bilibili.community.service.dm.v1.ClickButton click_button = 6;
2539
+ */
2540
+ clickButton?: ClickButton;
2541
+ /**
2542
+ * @generated from field: bilibili.community.service.dm.v1.TextInput text_input = 7;
2543
+ */
2544
+ textInput?: TextInput;
2545
+ /**
2546
+ * @generated from field: bilibili.community.service.dm.v1.CheckBox check_box = 8;
2547
+ */
2548
+ checkBox?: CheckBox;
2549
+ /**
2550
+ * @generated from field: bilibili.community.service.dm.v1.Toast toast = 9;
2551
+ */
2552
+ toast?: Toast;
2553
+ };
2554
+ /**
2555
+ * Describes the message bilibili.community.service.dm.v1.PostPanel.
2556
+ * Use `create(PostPanelSchema)` to create a new message.
2557
+ */
2558
+ export declare const PostPanelSchema: GenMessage<PostPanel>;
2559
+ /**
2560
+ * @generated from message bilibili.community.service.dm.v1.PostPanelV2
2561
+ */
2562
+ export type PostPanelV2 = Message<"bilibili.community.service.dm.v1.PostPanelV2"> & {
2563
+ /**
2564
+ * @generated from field: int64 start = 1;
2565
+ */
2566
+ start: bigint;
2567
+ /**
2568
+ * @generated from field: int64 end = 2;
2569
+ */
2570
+ end: bigint;
2571
+ /**
2572
+ * @generated from field: bilibili.community.service.dm.v1.PostPanelBizType biz_type = 3;
2573
+ */
2574
+ bizType: PostPanelBizType;
2575
+ /**
2576
+ * @generated from field: bilibili.community.service.dm.v1.ClickButtonV2 click_button = 4;
2577
+ */
2578
+ clickButton?: ClickButtonV2;
2579
+ /**
2580
+ * @generated from field: bilibili.community.service.dm.v1.TextInputV2 text_input = 5;
2581
+ */
2582
+ textInput?: TextInputV2;
2583
+ /**
2584
+ * @generated from field: bilibili.community.service.dm.v1.CheckBoxV2 check_box = 6;
2585
+ */
2586
+ checkBox?: CheckBoxV2;
2587
+ /**
2588
+ * @generated from field: bilibili.community.service.dm.v1.ToastV2 toast = 7;
2589
+ */
2590
+ toast?: ToastV2;
2591
+ /**
2592
+ * @generated from field: bilibili.community.service.dm.v1.BubbleV2 bubble = 8;
2593
+ */
2594
+ bubble?: BubbleV2;
2595
+ /**
2596
+ * @generated from field: bilibili.community.service.dm.v1.LabelV2 label = 9;
2597
+ */
2598
+ label?: LabelV2;
2599
+ /**
2600
+ * @generated from field: bilibili.community.service.dm.v1.PostStatus post_status = 10;
2601
+ */
2602
+ postStatus: PostStatus;
2603
+ };
2604
+ /**
2605
+ * Describes the message bilibili.community.service.dm.v1.PostPanelV2.
2606
+ * Use `create(PostPanelV2Schema)` to create a new message.
2607
+ */
2608
+ export declare const PostPanelV2Schema: GenMessage<PostPanelV2>;
2609
+ /**
2610
+ *
2611
+ *
2612
+ * @generated from message bilibili.community.service.dm.v1.QoeInfo
2613
+ */
2614
+ export type QoeInfo = Message<"bilibili.community.service.dm.v1.QoeInfo"> & {
2615
+ /**
2616
+ *
2617
+ *
2618
+ * @generated from field: string info = 1;
2619
+ */
2620
+ info: string;
2621
+ };
2622
+ /**
2623
+ * Describes the message bilibili.community.service.dm.v1.QoeInfo.
2624
+ * Use `create(QoeInfoSchema)` to create a new message.
2625
+ */
2626
+ export declare const QoeInfoSchema: GenMessage<QoeInfo>;
2627
+ /**
2628
+ * 修改弹幕配置-响应
2629
+ *
2630
+ * @generated from message bilibili.community.service.dm.v1.Response
2631
+ */
2632
+ export type Response = Message<"bilibili.community.service.dm.v1.Response"> & {
2633
+ /**
2634
+ * @generated from field: int32 code = 1;
2635
+ */
2636
+ code: number;
2637
+ /**
2638
+ * @generated from field: string message = 2;
2639
+ */
2640
+ message: string;
2641
+ };
2642
+ /**
2643
+ * Describes the message bilibili.community.service.dm.v1.Response.
2644
+ * Use `create(ResponseSchema)` to create a new message.
2645
+ */
2646
+ export declare const ResponseSchema: GenMessage<Response>;
2647
+ /**
2648
+ * 单个字幕信息
2649
+ *
2650
+ * @generated from message bilibili.community.service.dm.v1.SubtitleItem
2651
+ */
2652
+ export type SubtitleItem = Message<"bilibili.community.service.dm.v1.SubtitleItem"> & {
2653
+ /**
2654
+ * 字幕id
2655
+ *
2656
+ * @generated from field: int64 id = 1;
2657
+ */
2658
+ id: bigint;
2659
+ /**
2660
+ * 字幕id str
2661
+ *
2662
+ * @generated from field: string id_str = 2;
2663
+ */
2664
+ idStr: string;
2665
+ /**
2666
+ * 字幕语言代码
2667
+ *
2668
+ * @generated from field: string lan = 3;
2669
+ */
2670
+ lan: string;
2671
+ /**
2672
+ * 字幕语言
2673
+ *
2674
+ * @generated from field: string lan_doc = 4;
2675
+ */
2676
+ lanDoc: string;
2677
+ /**
2678
+ * 字幕文件url
2679
+ *
2680
+ * @generated from field: string subtitle_url = 5;
2681
+ */
2682
+ subtitleUrl: string;
2683
+ /**
2684
+ * 字幕作者信息
2685
+ *
2686
+ * @generated from field: bilibili.community.service.dm.v1.UserInfo author = 6;
2687
+ */
2688
+ author?: UserInfo;
2689
+ /**
2690
+ * 字幕类型
2691
+ *
2692
+ * @generated from field: bilibili.community.service.dm.v1.SubtitleType type = 7;
2693
+ */
2694
+ type: SubtitleType;
2695
+ /**
2696
+ * @generated from field: string lan_doc_brief = 8;
2697
+ */
2698
+ lanDocBrief: string;
2699
+ /**
2700
+ * @generated from field: bilibili.community.service.dm.v1.SubtitleAiType ai_type = 9;
2701
+ */
2702
+ aiType: SubtitleAiType;
2703
+ /**
2704
+ * @generated from field: bilibili.community.service.dm.v1.SubtitleAiStatus ai_status = 10;
2705
+ */
2706
+ aiStatus: SubtitleAiStatus;
2707
+ };
2708
+ /**
2709
+ * Describes the message bilibili.community.service.dm.v1.SubtitleItem.
2710
+ * Use `create(SubtitleItemSchema)` to create a new message.
2711
+ */
2712
+ export declare const SubtitleItemSchema: GenMessage<SubtitleItem>;
2713
+ /**
2714
+ * @generated from message bilibili.community.service.dm.v1.TextInput
2715
+ */
2716
+ export type TextInput = Message<"bilibili.community.service.dm.v1.TextInput"> & {
2717
+ /**
2718
+ * @generated from field: repeated string portrait_placeholder = 1;
2719
+ */
2720
+ portraitPlaceholder: string[];
2721
+ /**
2722
+ * @generated from field: repeated string landscape_placeholder = 2;
2723
+ */
2724
+ landscapePlaceholder: string[];
2725
+ /**
2726
+ * @generated from field: bilibili.community.service.dm.v1.RenderType render_type = 3;
2727
+ */
2728
+ renderType: RenderType;
2729
+ /**
2730
+ * @generated from field: bool placeholder_post = 4;
2731
+ */
2732
+ placeholderPost: boolean;
2733
+ /**
2734
+ * @generated from field: bool show = 5;
2735
+ */
2736
+ show: boolean;
2737
+ /**
2738
+ * @generated from field: repeated bilibili.community.service.dm.v1.Avatar avatar = 6;
2739
+ */
2740
+ avatar: Avatar[];
2741
+ /**
2742
+ * @generated from field: bilibili.community.service.dm.v1.PostStatus post_status = 7;
2743
+ */
2744
+ postStatus: PostStatus;
2745
+ /**
2746
+ * @generated from field: bilibili.community.service.dm.v1.Label label = 8;
2747
+ */
2748
+ label?: Label;
2749
+ };
2750
+ /**
2751
+ * Describes the message bilibili.community.service.dm.v1.TextInput.
2752
+ * Use `create(TextInputSchema)` to create a new message.
2753
+ */
2754
+ export declare const TextInputSchema: GenMessage<TextInput>;
2755
+ /**
2756
+ * @generated from message bilibili.community.service.dm.v1.TextInputV2
2757
+ */
2758
+ export type TextInputV2 = Message<"bilibili.community.service.dm.v1.TextInputV2"> & {
2759
+ /**
2760
+ * @generated from field: repeated string portrait_placeholder = 1;
2761
+ */
2762
+ portraitPlaceholder: string[];
2763
+ /**
2764
+ * @generated from field: repeated string landscape_placeholder = 2;
2765
+ */
2766
+ landscapePlaceholder: string[];
2767
+ /**
2768
+ * @generated from field: bilibili.community.service.dm.v1.RenderType render_type = 3;
2769
+ */
2770
+ renderType: RenderType;
2771
+ /**
2772
+ * @generated from field: bool placeholder_post = 4;
2773
+ */
2774
+ placeholderPost: boolean;
2775
+ /**
2776
+ * @generated from field: repeated bilibili.community.service.dm.v1.Avatar avatar = 5;
2777
+ */
2778
+ avatar: Avatar[];
2779
+ /**
2780
+ * @generated from field: int32 text_input_limit = 6;
2781
+ */
2782
+ textInputLimit: number;
2783
+ };
2784
+ /**
2785
+ * Describes the message bilibili.community.service.dm.v1.TextInputV2.
2786
+ * Use `create(TextInputV2Schema)` to create a new message.
2787
+ */
2788
+ export declare const TextInputV2Schema: GenMessage<TextInputV2>;
2789
+ /**
2790
+ * @generated from message bilibili.community.service.dm.v1.Toast
2791
+ */
2792
+ export type Toast = Message<"bilibili.community.service.dm.v1.Toast"> & {
2793
+ /**
2794
+ * @generated from field: string text = 1;
2795
+ */
2796
+ text: string;
2797
+ /**
2798
+ * @generated from field: int32 duration = 2;
2799
+ */
2800
+ duration: number;
2801
+ /**
2802
+ * @generated from field: bool show = 3;
2803
+ */
2804
+ show: boolean;
2805
+ /**
2806
+ * @generated from field: bilibili.community.service.dm.v1.Button button = 4;
2807
+ */
2808
+ button?: Button;
2809
+ };
2810
+ /**
2811
+ * Describes the message bilibili.community.service.dm.v1.Toast.
2812
+ * Use `create(ToastSchema)` to create a new message.
2813
+ */
2814
+ export declare const ToastSchema: GenMessage<Toast>;
2815
+ /**
2816
+ * @generated from message bilibili.community.service.dm.v1.ToastButtonV2
2817
+ */
2818
+ export type ToastButtonV2 = Message<"bilibili.community.service.dm.v1.ToastButtonV2"> & {
2819
+ /**
2820
+ * @generated from field: string text = 1;
2821
+ */
2822
+ text: string;
2823
+ /**
2824
+ * @generated from field: bilibili.community.service.dm.v1.ToastFunctionType action = 2;
2825
+ */
2826
+ action: ToastFunctionType;
2827
+ };
2828
+ /**
2829
+ * Describes the message bilibili.community.service.dm.v1.ToastButtonV2.
2830
+ * Use `create(ToastButtonV2Schema)` to create a new message.
2831
+ */
2832
+ export declare const ToastButtonV2Schema: GenMessage<ToastButtonV2>;
2833
+ /**
2834
+ * @generated from message bilibili.community.service.dm.v1.ToastV2
2835
+ */
2836
+ export type ToastV2 = Message<"bilibili.community.service.dm.v1.ToastV2"> & {
2837
+ /**
2838
+ * @generated from field: string text = 1;
2839
+ */
2840
+ text: string;
2841
+ /**
2842
+ * @generated from field: int32 duration = 2;
2843
+ */
2844
+ duration: number;
2845
+ /**
2846
+ * @generated from field: bilibili.community.service.dm.v1.ToastButtonV2 toast_button_v2 = 3;
2847
+ */
2848
+ toastButtonV2?: ToastButtonV2;
2849
+ };
2850
+ /**
2851
+ * Describes the message bilibili.community.service.dm.v1.ToastV2.
2852
+ * Use `create(ToastV2Schema)` to create a new message.
2853
+ */
2854
+ export declare const ToastV2Schema: GenMessage<ToastV2>;
2855
+ /**
2856
+ * 字幕作者信息
2857
+ *
2858
+ * @generated from message bilibili.community.service.dm.v1.UserInfo
2859
+ */
2860
+ export type UserInfo = Message<"bilibili.community.service.dm.v1.UserInfo"> & {
2861
+ /**
2862
+ * 用户mid
2863
+ *
2864
+ * @generated from field: int64 mid = 1;
2865
+ */
2866
+ mid: bigint;
2867
+ /**
2868
+ * 用户昵称
2869
+ *
2870
+ * @generated from field: string name = 2;
2871
+ */
2872
+ name: string;
2873
+ /**
2874
+ * 用户性别
2875
+ *
2876
+ * @generated from field: string sex = 3;
2877
+ */
2878
+ sex: string;
2879
+ /**
2880
+ * 用户头像url
2881
+ *
2882
+ * @generated from field: string face = 4;
2883
+ */
2884
+ face: string;
2885
+ /**
2886
+ * 用户签名
2887
+ *
2888
+ * @generated from field: string sign = 5;
2889
+ */
2890
+ sign: string;
2891
+ /**
2892
+ * 用户等级
2893
+ *
2894
+ * @generated from field: int32 rank = 6;
2895
+ */
2896
+ rank: number;
2897
+ };
2898
+ /**
2899
+ * Describes the message bilibili.community.service.dm.v1.UserInfo.
2900
+ * Use `create(UserInfoSchema)` to create a new message.
2901
+ */
2902
+ export declare const UserInfoSchema: GenMessage<UserInfo>;
2903
+ /**
2904
+ * 智能防挡弹幕蒙版信息
2905
+ *
2906
+ * @generated from message bilibili.community.service.dm.v1.VideoMask
2907
+ */
2908
+ export type VideoMask = Message<"bilibili.community.service.dm.v1.VideoMask"> & {
2909
+ /**
2910
+ * 视频cid
2911
+ *
2912
+ * @generated from field: int64 cid = 1;
2913
+ */
2914
+ cid: bigint;
2915
+ /**
2916
+ * 平台
2917
+ * 0:web端 1:客户端
2918
+ *
2919
+ * @generated from field: int32 plat = 2;
2920
+ */
2921
+ plat: number;
2922
+ /**
2923
+ * 帧率
2924
+ *
2925
+ * @generated from field: int32 fps = 3;
2926
+ */
2927
+ fps: number;
2928
+ /**
2929
+ * 间隔时间
2930
+ *
2931
+ * @generated from field: int64 time = 4;
2932
+ */
2933
+ time: bigint;
2934
+ /**
2935
+ * 蒙版url
2936
+ *
2937
+ * @generated from field: string mask_url = 5;
2938
+ */
2939
+ maskUrl: string;
2940
+ };
2941
+ /**
2942
+ * Describes the message bilibili.community.service.dm.v1.VideoMask.
2943
+ * Use `create(VideoMaskSchema)` to create a new message.
2944
+ */
2945
+ export declare const VideoMaskSchema: GenMessage<VideoMask>;
2946
+ /**
2947
+ * 视频字幕信息
2948
+ *
2949
+ * @generated from message bilibili.community.service.dm.v1.VideoSubtitle
2950
+ */
2951
+ export type VideoSubtitle = Message<"bilibili.community.service.dm.v1.VideoSubtitle"> & {
2952
+ /**
2953
+ * 视频原语言代码
2954
+ *
2955
+ * @generated from field: string lan = 1;
2956
+ */
2957
+ lan: string;
2958
+ /**
2959
+ * 视频原语言
2960
+ *
2961
+ * @generated from field: string lan_doc = 2;
2962
+ */
2963
+ lanDoc: string;
2964
+ /**
2965
+ * 视频字幕列表
2966
+ *
2967
+ * @generated from field: repeated bilibili.community.service.dm.v1.SubtitleItem subtitles = 3;
2968
+ */
2969
+ subtitles: SubtitleItem[];
2970
+ };
2971
+ /**
2972
+ * Describes the message bilibili.community.service.dm.v1.VideoSubtitle.
2973
+ * Use `create(VideoSubtitleSchema)` to create a new message.
2974
+ */
2975
+ export declare const VideoSubtitleSchema: GenMessage<VideoSubtitle>;
2976
+ /**
2977
+ *
2978
+ *
2979
+ * @generated from message bilibili.community.service.dm.v1.ViewHerdDmElem
2980
+ */
2981
+ export type ViewHerdDmElem = Message<"bilibili.community.service.dm.v1.ViewHerdDmElem"> & {
2982
+ /**
2983
+ *
2984
+ *
2985
+ * @generated from field: string herd_msg = 1;
2986
+ */
2987
+ herdMsg: string;
2988
+ /**
2989
+ *
2990
+ *
2991
+ * @generated from field: int32 herd_start_cnt = 2;
2992
+ */
2993
+ herdStartCnt: number;
2994
+ /**
2995
+ *
2996
+ *
2997
+ * @generated from field: int32 herd_end_cnt = 3;
2998
+ */
2999
+ herdEndCnt: number;
3000
+ /**
3001
+ *
3002
+ *
3003
+ * @generated from field: string regex_rule = 4;
3004
+ */
3005
+ regexRule: string;
3006
+ /**
3007
+ *
3008
+ *
3009
+ * @generated from field: int32 start_progress = 5;
3010
+ */
3011
+ startProgress: number;
3012
+ /**
3013
+ *
3014
+ *
3015
+ * @generated from field: int32 end_progress = 6;
3016
+ */
3017
+ endProgress: number;
3018
+ };
3019
+ /**
3020
+ * Describes the message bilibili.community.service.dm.v1.ViewHerdDmElem.
3021
+ * Use `create(ViewHerdDmElemSchema)` to create a new message.
3022
+ */
3023
+ export declare const ViewHerdDmElemSchema: GenMessage<ViewHerdDmElem>;
3024
+ /**
3025
+ * @generated from enum bilibili.community.service.dm.v1.AvatarType
3026
+ */
3027
+ export declare enum AvatarType {
3028
+ /**
3029
+ * @generated from enum value: AvatarTypeNone = 0;
3030
+ */
3031
+ AvatarTypeNone = 0,
3032
+ /**
3033
+ * @generated from enum value: AvatarTypeNFT = 1;
3034
+ */
3035
+ AvatarTypeNFT = 1
3036
+ }
3037
+ /**
3038
+ * Describes the enum bilibili.community.service.dm.v1.AvatarType.
3039
+ */
3040
+ export declare const AvatarTypeSchema: GenEnum<AvatarType>;
3041
+ /**
3042
+ * @generated from enum bilibili.community.service.dm.v1.BubbleType
3043
+ */
3044
+ export declare enum BubbleType {
3045
+ /**
3046
+ * @generated from enum value: BubbleTypeNone = 0;
3047
+ */
3048
+ BubbleTypeNone = 0,
3049
+ /**
3050
+ * @generated from enum value: BubbleTypeClickButton = 1;
3051
+ */
3052
+ BubbleTypeClickButton = 1,
3053
+ /**
3054
+ * @generated from enum value: BubbleTypeDmSettingPanel = 2;
3055
+ */
3056
+ BubbleTypeDmSettingPanel = 2
3057
+ }
3058
+ /**
3059
+ * Describes the enum bilibili.community.service.dm.v1.BubbleType.
3060
+ */
3061
+ export declare const BubbleTypeSchema: GenEnum<BubbleType>;
3062
+ /**
3063
+ * @generated from enum bilibili.community.service.dm.v1.CheckboxType
3064
+ */
3065
+ export declare enum CheckboxType {
3066
+ /**
3067
+ * @generated from enum value: CheckboxTypeNone = 0;
3068
+ */
3069
+ CheckboxTypeNone = 0,
3070
+ /**
3071
+ * @generated from enum value: CheckboxTypeEncourage = 1;
3072
+ */
3073
+ CheckboxTypeEncourage = 1,
3074
+ /**
3075
+ * @generated from enum value: CheckboxTypeColorDM = 2;
3076
+ */
3077
+ CheckboxTypeColorDM = 2
3078
+ }
3079
+ /**
3080
+ * Describes the enum bilibili.community.service.dm.v1.CheckboxType.
3081
+ */
3082
+ export declare const CheckboxTypeSchema: GenEnum<CheckboxType>;
3083
+ /**
3084
+ * @generated from enum bilibili.community.service.dm.v1.DmColorfulType
3085
+ */
3086
+ export declare enum DmColorfulType {
3087
+ /**
3088
+ * 无
3089
+ *
3090
+ * @generated from enum value: NoneType = 0;
3091
+ */
3092
+ NoneType = 0,
3093
+ /**
3094
+ * 渐变色
3095
+ *
3096
+ * @generated from enum value: VipGradualColor = 60001;
3097
+ */
3098
+ VipGradualColor = 60001
3099
+ }
3100
+ /**
3101
+ * Describes the enum bilibili.community.service.dm.v1.DmColorfulType.
3102
+ */
3103
+ export declare const DmColorfulTypeSchema: GenEnum<DmColorfulType>;
3104
+ /**
3105
+ *
3106
+ *
3107
+ * @generated from enum bilibili.community.service.dm.v1.DmMaskWallBizType
3108
+ */
3109
+ export declare enum DmMaskWallBizType {
3110
+ /**
3111
+ *
3112
+ *
3113
+ * @generated from enum value: Unknown = 0;
3114
+ */
3115
+ Unknown = 0,
3116
+ /**
3117
+ *
3118
+ *
3119
+ * @generated from enum value: OGV = 1;
3120
+ */
3121
+ OGV = 1,
3122
+ /**
3123
+ *
3124
+ *
3125
+ * @generated from enum value: BizPic = 2;
3126
+ */
3127
+ BizPic = 2,
3128
+ /**
3129
+ *
3130
+ *
3131
+ * @generated from enum value: Mute = 3;
3132
+ */
3133
+ Mute = 3,
3134
+ /**
3135
+ *
3136
+ *
3137
+ * @generated from enum value: Record = 4;
3138
+ */
3139
+ Record = 4,
3140
+ /**
3141
+ *
3142
+ *
3143
+ * @generated from enum value: Cloud = 5;
3144
+ */
3145
+ Cloud = 5,
3146
+ /**
3147
+ *
3148
+ *
3149
+ * @generated from enum value: AIGC = 6;
3150
+ */
3151
+ AIGC = 6
3152
+ }
3153
+ /**
3154
+ * Describes the enum bilibili.community.service.dm.v1.DmMaskWallBizType.
3155
+ */
3156
+ export declare const DmMaskWallBizTypeSchema: GenEnum<DmMaskWallBizType>;
3157
+ /**
3158
+ *
3159
+ *
3160
+ * @generated from enum bilibili.community.service.dm.v1.DmMaskWallContentType
3161
+ */
3162
+ export declare enum DmMaskWallContentType {
3163
+ /**
3164
+ *
3165
+ *
3166
+ * @generated from enum value: DmMaskWallContentTypeUnknown = 0;
3167
+ */
3168
+ DmMaskWallContentTypeUnknown = 0,
3169
+ /**
3170
+ *
3171
+ *
3172
+ * @generated from enum value: DmMaskWallContentTypeText = 1;
3173
+ */
3174
+ DmMaskWallContentTypeText = 1,
3175
+ /**
3176
+ *
3177
+ *
3178
+ * @generated from enum value: DmMaskWallContentTypePic = 2;
3179
+ */
3180
+ DmMaskWallContentTypePic = 2
3181
+ }
3182
+ /**
3183
+ * Describes the enum bilibili.community.service.dm.v1.DmMaskWallContentType.
3184
+ */
3185
+ export declare const DmMaskWallContentTypeSchema: GenEnum<DmMaskWallContentType>;
3186
+ /**
3187
+ * @generated from enum bilibili.community.service.dm.v1.ExposureType
3188
+ */
3189
+ export declare enum ExposureType {
3190
+ /**
3191
+ * @generated from enum value: ExposureTypeNone = 0;
3192
+ */
3193
+ ExposureTypeNone = 0,
3194
+ /**
3195
+ * @generated from enum value: ExposureTypeDMSend = 1;
3196
+ */
3197
+ ExposureTypeDMSend = 1
3198
+ }
3199
+ /**
3200
+ * Describes the enum bilibili.community.service.dm.v1.ExposureType.
3201
+ */
3202
+ export declare const ExposureTypeSchema: GenEnum<ExposureType>;
3203
+ /**
3204
+ * @generated from enum bilibili.community.service.dm.v1.PostPanelBizType
3205
+ */
3206
+ export declare enum PostPanelBizType {
3207
+ /**
3208
+ * @generated from enum value: PostPanelBizTypeNone = 0;
3209
+ */
3210
+ PostPanelBizTypeNone = 0,
3211
+ /**
3212
+ * @generated from enum value: PostPanelBizTypeEncourage = 1;
3213
+ */
3214
+ PostPanelBizTypeEncourage = 1,
3215
+ /**
3216
+ * @generated from enum value: PostPanelBizTypeColorDM = 2;
3217
+ */
3218
+ PostPanelBizTypeColorDM = 2,
3219
+ /**
3220
+ * @generated from enum value: PostPanelBizTypeNFTDM = 3;
3221
+ */
3222
+ PostPanelBizTypeNFTDM = 3,
3223
+ /**
3224
+ * @generated from enum value: PostPanelBizTypeFragClose = 4;
3225
+ */
3226
+ PostPanelBizTypeFragClose = 4,
3227
+ /**
3228
+ * @generated from enum value: PostPanelBizTypeRecommend = 5;
3229
+ */
3230
+ PostPanelBizTypeRecommend = 5,
3231
+ /**
3232
+ *
3233
+ *
3234
+ * @generated from enum value: PostPanelBizTypePlotLeak = 6;
3235
+ */
3236
+ PostPanelBizTypePlotLeak = 6,
3237
+ /**
3238
+ *
3239
+ *
3240
+ * @generated from enum value: PostPanelBizTypeAntiHarassment = 7;
3241
+ */
3242
+ PostPanelBizTypeAntiHarassment = 7
3243
+ }
3244
+ /**
3245
+ * Describes the enum bilibili.community.service.dm.v1.PostPanelBizType.
3246
+ */
3247
+ export declare const PostPanelBizTypeSchema: GenEnum<PostPanelBizType>;
3248
+ /**
3249
+ * @generated from enum bilibili.community.service.dm.v1.PostStatus
3250
+ */
3251
+ export declare enum PostStatus {
3252
+ /**
3253
+ * @generated from enum value: PostStatusNormal = 0;
3254
+ */
3255
+ PostStatusNormal = 0,
3256
+ /**
3257
+ * @generated from enum value: PostStatusClosed = 1;
3258
+ */
3259
+ PostStatusClosed = 1
3260
+ }
3261
+ /**
3262
+ * Describes the enum bilibili.community.service.dm.v1.PostStatus.
3263
+ */
3264
+ export declare const PostStatusSchema: GenEnum<PostStatus>;
3265
+ /**
3266
+ * @generated from enum bilibili.community.service.dm.v1.RenderType
3267
+ */
3268
+ export declare enum RenderType {
3269
+ /**
3270
+ * @generated from enum value: RenderTypeNone = 0;
3271
+ */
3272
+ RenderTypeNone = 0,
3273
+ /**
3274
+ * @generated from enum value: RenderTypeSingle = 1;
3275
+ */
3276
+ RenderTypeSingle = 1,
3277
+ /**
3278
+ * @generated from enum value: RenderTypeRotation = 2;
3279
+ */
3280
+ RenderTypeRotation = 2
3281
+ }
3282
+ /**
3283
+ * Describes the enum bilibili.community.service.dm.v1.RenderType.
3284
+ */
3285
+ export declare const RenderTypeSchema: GenEnum<RenderType>;
3286
+ /**
3287
+ * @generated from enum bilibili.community.service.dm.v1.SubtitleAiStatus
3288
+ */
3289
+ export declare enum SubtitleAiStatus {
3290
+ /**
3291
+ * @generated from enum value: None = 0;
3292
+ */
3293
+ None = 0,
3294
+ /**
3295
+ * @generated from enum value: Exposure = 1;
3296
+ */
3297
+ Exposure = 1,
3298
+ /**
3299
+ * @generated from enum value: Assist = 2;
3300
+ */
3301
+ Assist = 2
3302
+ }
3303
+ /**
3304
+ * Describes the enum bilibili.community.service.dm.v1.SubtitleAiStatus.
3305
+ */
3306
+ export declare const SubtitleAiStatusSchema: GenEnum<SubtitleAiStatus>;
3307
+ /**
3308
+ * @generated from enum bilibili.community.service.dm.v1.SubtitleAiType
3309
+ */
3310
+ export declare enum SubtitleAiType {
3311
+ /**
3312
+ * @generated from enum value: Normal = 0;
3313
+ */
3314
+ Normal = 0,
3315
+ /**
3316
+ * @generated from enum value: Translate = 1;
3317
+ */
3318
+ Translate = 1
3319
+ }
3320
+ /**
3321
+ * Describes the enum bilibili.community.service.dm.v1.SubtitleAiType.
3322
+ */
3323
+ export declare const SubtitleAiTypeSchema: GenEnum<SubtitleAiType>;
3324
+ /**
3325
+ * @generated from enum bilibili.community.service.dm.v1.SubtitleType
3326
+ */
3327
+ export declare enum SubtitleType {
3328
+ /**
3329
+ * CC字幕
3330
+ *
3331
+ * @generated from enum value: CC = 0;
3332
+ */
3333
+ CC = 0,
3334
+ /**
3335
+ * AI生成字幕
3336
+ *
3337
+ * @generated from enum value: AI = 1;
3338
+ */
3339
+ AI = 1
3340
+ }
3341
+ /**
3342
+ * Describes the enum bilibili.community.service.dm.v1.SubtitleType.
3343
+ */
3344
+ export declare const SubtitleTypeSchema: GenEnum<SubtitleType>;
3345
+ /**
3346
+ * @generated from enum bilibili.community.service.dm.v1.ToastFunctionType
3347
+ */
3348
+ export declare enum ToastFunctionType {
3349
+ /**
3350
+ * @generated from enum value: ToastFunctionTypeNone = 0;
3351
+ */
3352
+ ToastFunctionTypeNone = 0,
3353
+ /**
3354
+ * @generated from enum value: ToastFunctionTypePostPanel = 1;
3355
+ */
3356
+ ToastFunctionTypePostPanel = 1
3357
+ }
3358
+ /**
3359
+ * Describes the enum bilibili.community.service.dm.v1.ToastFunctionType.
3360
+ */
3361
+ export declare const ToastFunctionTypeSchema: GenEnum<ToastFunctionType>;
3362
+ /**
3363
+ * 弹幕
3364
+ *
3365
+ * @generated from service bilibili.community.service.dm.v1.DM
3366
+ */
3367
+ export declare const DM: GenService<{
3368
+ /**
3369
+ * 获取分段弹幕
3370
+ *
3371
+ * @generated from rpc bilibili.community.service.dm.v1.DM.DmSegMobile
3372
+ */
3373
+ dmSegMobile: {
3374
+ methodKind: "unary";
3375
+ input: typeof DmSegMobileReqSchema;
3376
+ output: typeof DmSegMobileReplySchema;
3377
+ };
3378
+ /**
3379
+ * 客户端弹幕元数据 字幕、分段、防挡蒙版等
3380
+ *
3381
+ * @generated from rpc bilibili.community.service.dm.v1.DM.DmView
3382
+ */
3383
+ dmView: {
3384
+ methodKind: "unary";
3385
+ input: typeof DmViewReqSchema;
3386
+ output: typeof DmViewReplySchema;
3387
+ };
3388
+ /**
3389
+ * 修改弹幕配置
3390
+ *
3391
+ * @generated from rpc bilibili.community.service.dm.v1.DM.DmPlayerConfig
3392
+ */
3393
+ dmPlayerConfig: {
3394
+ methodKind: "unary";
3395
+ input: typeof DmPlayerConfigReqSchema;
3396
+ output: typeof ResponseSchema;
3397
+ };
3398
+ /**
3399
+ * ott弹幕列表
3400
+ *
3401
+ * @generated from rpc bilibili.community.service.dm.v1.DM.DmSegOtt
3402
+ */
3403
+ dmSegOtt: {
3404
+ methodKind: "unary";
3405
+ input: typeof DmSegOttReqSchema;
3406
+ output: typeof DmSegOttReplySchema;
3407
+ };
3408
+ /**
3409
+ * SDK弹幕列表
3410
+ *
3411
+ * @generated from rpc bilibili.community.service.dm.v1.DM.DmSegSDK
3412
+ */
3413
+ dmSegSDK: {
3414
+ methodKind: "unary";
3415
+ input: typeof DmSegSDKReqSchema;
3416
+ output: typeof DmSegSDKReplySchema;
3417
+ };
3418
+ /**
3419
+ * @generated from rpc bilibili.community.service.dm.v1.DM.DmExpoReport
3420
+ */
3421
+ dmExpoReport: {
3422
+ methodKind: "unary";
3423
+ input: typeof DmExpoReportReqSchema;
3424
+ output: typeof DmExpoReportResSchema;
3425
+ };
3426
+ }>;