mezon-js-protobuf 1.5.90 → 1.5.91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api/api.ts CHANGED
@@ -660,8 +660,6 @@ export interface MessageReaction {
660
660
  message_sender_id: string;
661
661
  /** is public */
662
662
  is_public: boolean;
663
- /** The parent id to sent to. */
664
- parent_id: string;
665
663
  }
666
664
 
667
665
  /** Message attachment */
@@ -7401,7 +7399,6 @@ function createBaseMessageReaction(): MessageReaction {
7401
7399
  mode: 0,
7402
7400
  message_sender_id: "",
7403
7401
  is_public: false,
7404
- parent_id: "",
7405
7402
  };
7406
7403
  }
7407
7404
 
@@ -7449,9 +7446,6 @@ export const MessageReaction = {
7449
7446
  if (message.is_public !== false) {
7450
7447
  writer.uint32(112).bool(message.is_public);
7451
7448
  }
7452
- if (message.parent_id !== "") {
7453
- writer.uint32(122).string(message.parent_id);
7454
- }
7455
7449
  return writer;
7456
7450
  },
7457
7451
 
@@ -7560,13 +7554,6 @@ export const MessageReaction = {
7560
7554
 
7561
7555
  message.is_public = reader.bool();
7562
7556
  continue;
7563
- case 15:
7564
- if (tag !== 122) {
7565
- break;
7566
- }
7567
-
7568
- message.parent_id = reader.string();
7569
- continue;
7570
7557
  }
7571
7558
  if ((tag & 7) === 4 || tag === 0) {
7572
7559
  break;
@@ -7592,7 +7579,6 @@ export const MessageReaction = {
7592
7579
  mode: isSet(object.mode) ? globalThis.Number(object.mode) : 0,
7593
7580
  message_sender_id: isSet(object.message_sender_id) ? globalThis.String(object.message_sender_id) : "",
7594
7581
  is_public: isSet(object.is_public) ? globalThis.Boolean(object.is_public) : false,
7595
- parent_id: isSet(object.parent_id) ? globalThis.String(object.parent_id) : "",
7596
7582
  };
7597
7583
  },
7598
7584
 
@@ -7640,9 +7626,6 @@ export const MessageReaction = {
7640
7626
  if (message.is_public !== false) {
7641
7627
  obj.is_public = message.is_public;
7642
7628
  }
7643
- if (message.parent_id !== "") {
7644
- obj.parent_id = message.parent_id;
7645
- }
7646
7629
  return obj;
7647
7630
  },
7648
7631
 
@@ -7665,7 +7648,6 @@ export const MessageReaction = {
7665
7648
  message.mode = object.mode ?? 0;
7666
7649
  message.message_sender_id = object.message_sender_id ?? "";
7667
7650
  message.is_public = object.is_public ?? false;
7668
- message.parent_id = object.parent_id ?? "";
7669
7651
  return message;
7670
7652
  },
7671
7653
  };
@@ -471,8 +471,6 @@ export interface MessageReaction {
471
471
  message_sender_id: string;
472
472
  /** is public */
473
473
  is_public: boolean;
474
- /** The parent id to sent to. */
475
- parent_id: string;
476
474
  }
477
475
  /** Message attachment */
478
476
  export interface MessageAttachment {
@@ -4231,7 +4229,6 @@ export declare const MessageReaction: {
4231
4229
  mode?: number | undefined;
4232
4230
  message_sender_id?: string | undefined;
4233
4231
  is_public?: boolean | undefined;
4234
- parent_id?: string | undefined;
4235
4232
  } & {
4236
4233
  id?: string | undefined;
4237
4234
  emoji_id?: string | undefined;
@@ -4247,7 +4244,6 @@ export declare const MessageReaction: {
4247
4244
  mode?: number | undefined;
4248
4245
  message_sender_id?: string | undefined;
4249
4246
  is_public?: boolean | undefined;
4250
- parent_id?: string | undefined;
4251
4247
  } & { [K in Exclude<keyof I, keyof MessageReaction>]: never; }>(base?: I | undefined): MessageReaction;
4252
4248
  fromPartial<I_1 extends {
4253
4249
  id?: string | undefined;
@@ -4264,7 +4260,6 @@ export declare const MessageReaction: {
4264
4260
  mode?: number | undefined;
4265
4261
  message_sender_id?: string | undefined;
4266
4262
  is_public?: boolean | undefined;
4267
- parent_id?: string | undefined;
4268
4263
  } & {
4269
4264
  id?: string | undefined;
4270
4265
  emoji_id?: string | undefined;
@@ -4280,7 +4275,6 @@ export declare const MessageReaction: {
4280
4275
  mode?: number | undefined;
4281
4276
  message_sender_id?: string | undefined;
4282
4277
  is_public?: boolean | undefined;
4283
- parent_id?: string | undefined;
4284
4278
  } & { [K_1 in Exclude<keyof I_1, keyof MessageReaction>]: never; }>(object: I_1): MessageReaction;
4285
4279
  };
4286
4280
  export declare const MessageAttachment: {
@@ -229,8 +229,6 @@ export interface ChannelJoin {
229
229
  channel_id: string;
230
230
  /** channel type */
231
231
  channel_type: number;
232
- /** the parent_id */
233
- parent_id: string;
234
232
  /** is public */
235
233
  is_public: boolean;
236
234
  }
@@ -290,8 +288,6 @@ export interface ChannelMessageSend {
290
288
  avatar: string;
291
289
  /** is public */
292
290
  is_public: boolean;
293
- /** The parent id to sent to. */
294
- parent_id: string;
295
291
  }
296
292
  /** Update a message previously sent to a realtime channel. */
297
293
  export interface ChannelMessageUpdate {
@@ -313,8 +309,6 @@ export interface ChannelMessageUpdate {
313
309
  is_public: boolean;
314
310
  /** hide editted */
315
311
  hide_editted: boolean;
316
- /** The parent id to sent to. */
317
- parent_id: string;
318
312
  }
319
313
  /** Remove a message previously sent to a realtime channel. */
320
314
  export interface ChannelMessageRemove {
@@ -328,8 +322,6 @@ export interface ChannelMessageRemove {
328
322
  mode: number;
329
323
  /** is public */
330
324
  is_public: boolean;
331
- /** The parent id to sent to. */
332
- parent_id: string;
333
325
  }
334
326
  /** A set of joins and leaves on a particular channel. */
335
327
  export interface ChannelPresenceEvent {
@@ -431,8 +423,6 @@ export interface LastPinMessageEvent {
431
423
  operation: number;
432
424
  /** is public */
433
425
  is_public: boolean;
434
- /** The parent id to sent to. */
435
- parent_id: string;
436
426
  }
437
427
  /** Last seen message by user */
438
428
  export interface LastSeenMessageEvent {
@@ -459,8 +449,6 @@ export interface MessageTypingEvent {
459
449
  mode: number;
460
450
  /** is public */
461
451
  is_public: boolean;
462
- /** The parent id to sent to. */
463
- parent_id: string;
464
452
  }
465
453
  /** Voice Joined event */
466
454
  export interface VoiceLeavedEvent {
@@ -896,7 +884,6 @@ export declare const Envelope: {
896
884
  clan_id?: string | undefined;
897
885
  channel_id?: string | undefined;
898
886
  channel_type?: number | undefined;
899
- parent_id?: string | undefined;
900
887
  is_public?: boolean | undefined;
901
888
  } | undefined;
902
889
  channel_leave?: {
@@ -983,7 +970,6 @@ export declare const Envelope: {
983
970
  mention_everyone?: boolean | undefined;
984
971
  avatar?: string | undefined;
985
972
  is_public?: boolean | undefined;
986
- parent_id?: string | undefined;
987
973
  } | undefined;
988
974
  channel_message_update?: {
989
975
  clan_id?: string | undefined;
@@ -1011,7 +997,6 @@ export declare const Envelope: {
1011
997
  mode?: number | undefined;
1012
998
  is_public?: boolean | undefined;
1013
999
  hide_editted?: boolean | undefined;
1014
- parent_id?: string | undefined;
1015
1000
  } | undefined;
1016
1001
  channel_message_remove?: {
1017
1002
  clan_id?: string | undefined;
@@ -1019,7 +1004,6 @@ export declare const Envelope: {
1019
1004
  message_id?: string | undefined;
1020
1005
  mode?: number | undefined;
1021
1006
  is_public?: boolean | undefined;
1022
- parent_id?: string | undefined;
1023
1007
  } | undefined;
1024
1008
  channel_presence_event?: {
1025
1009
  channel_id?: string | undefined;
@@ -1150,7 +1134,6 @@ export declare const Envelope: {
1150
1134
  sender_id?: string | undefined;
1151
1135
  mode?: number | undefined;
1152
1136
  is_public?: boolean | undefined;
1153
- parent_id?: string | undefined;
1154
1137
  } | undefined;
1155
1138
  last_seen_message_event?: {
1156
1139
  clan_id?: string | undefined;
@@ -1174,7 +1157,6 @@ export declare const Envelope: {
1174
1157
  mode?: number | undefined;
1175
1158
  message_sender_id?: string | undefined;
1176
1159
  is_public?: boolean | undefined;
1177
- parent_id?: string | undefined;
1178
1160
  } | undefined;
1179
1161
  voice_joined_event?: {
1180
1162
  clan_id?: string | undefined;
@@ -1244,7 +1226,6 @@ export declare const Envelope: {
1244
1226
  timestamp_seconds?: number | undefined;
1245
1227
  operation?: number | undefined;
1246
1228
  is_public?: boolean | undefined;
1247
- parent_id?: string | undefined;
1248
1229
  } | undefined;
1249
1230
  custom_status_event?: {
1250
1231
  clan_id?: string | undefined;
@@ -1541,13 +1522,11 @@ export declare const Envelope: {
1541
1522
  clan_id?: string | undefined;
1542
1523
  channel_id?: string | undefined;
1543
1524
  channel_type?: number | undefined;
1544
- parent_id?: string | undefined;
1545
1525
  is_public?: boolean | undefined;
1546
1526
  } & {
1547
1527
  clan_id?: string | undefined;
1548
1528
  channel_id?: string | undefined;
1549
1529
  channel_type?: number | undefined;
1550
- parent_id?: string | undefined;
1551
1530
  is_public?: boolean | undefined;
1552
1531
  } & { [K_5 in Exclude<keyof I["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
1553
1532
  channel_leave?: ({
@@ -1676,7 +1655,6 @@ export declare const Envelope: {
1676
1655
  mention_everyone?: boolean | undefined;
1677
1656
  avatar?: string | undefined;
1678
1657
  is_public?: boolean | undefined;
1679
- parent_id?: string | undefined;
1680
1658
  } & {
1681
1659
  clan_id?: string | undefined;
1682
1660
  channel_id?: string | undefined;
@@ -1797,7 +1775,6 @@ export declare const Envelope: {
1797
1775
  mention_everyone?: boolean | undefined;
1798
1776
  avatar?: string | undefined;
1799
1777
  is_public?: boolean | undefined;
1800
- parent_id?: string | undefined;
1801
1778
  } & { [K_15 in Exclude<keyof I["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
1802
1779
  channel_message_update?: ({
1803
1780
  clan_id?: string | undefined;
@@ -1825,7 +1802,6 @@ export declare const Envelope: {
1825
1802
  mode?: number | undefined;
1826
1803
  is_public?: boolean | undefined;
1827
1804
  hide_editted?: boolean | undefined;
1828
- parent_id?: string | undefined;
1829
1805
  } & {
1830
1806
  clan_id?: string | undefined;
1831
1807
  channel_id?: string | undefined;
@@ -1900,7 +1876,6 @@ export declare const Envelope: {
1900
1876
  mode?: number | undefined;
1901
1877
  is_public?: boolean | undefined;
1902
1878
  hide_editted?: boolean | undefined;
1903
- parent_id?: string | undefined;
1904
1879
  } & { [K_20 in Exclude<keyof I["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
1905
1880
  channel_message_remove?: ({
1906
1881
  clan_id?: string | undefined;
@@ -1908,14 +1883,12 @@ export declare const Envelope: {
1908
1883
  message_id?: string | undefined;
1909
1884
  mode?: number | undefined;
1910
1885
  is_public?: boolean | undefined;
1911
- parent_id?: string | undefined;
1912
1886
  } & {
1913
1887
  clan_id?: string | undefined;
1914
1888
  channel_id?: string | undefined;
1915
1889
  message_id?: string | undefined;
1916
1890
  mode?: number | undefined;
1917
1891
  is_public?: boolean | undefined;
1918
- parent_id?: string | undefined;
1919
1892
  } & { [K_21 in Exclude<keyof I["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
1920
1893
  channel_presence_event?: ({
1921
1894
  channel_id?: string | undefined;
@@ -2336,14 +2309,12 @@ export declare const Envelope: {
2336
2309
  sender_id?: string | undefined;
2337
2310
  mode?: number | undefined;
2338
2311
  is_public?: boolean | undefined;
2339
- parent_id?: string | undefined;
2340
2312
  } & {
2341
2313
  clan_id?: string | undefined;
2342
2314
  channel_id?: string | undefined;
2343
2315
  sender_id?: string | undefined;
2344
2316
  mode?: number | undefined;
2345
2317
  is_public?: boolean | undefined;
2346
- parent_id?: string | undefined;
2347
2318
  } & { [K_58 in Exclude<keyof I["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
2348
2319
  last_seen_message_event?: ({
2349
2320
  clan_id?: string | undefined;
@@ -2373,7 +2344,6 @@ export declare const Envelope: {
2373
2344
  mode?: number | undefined;
2374
2345
  message_sender_id?: string | undefined;
2375
2346
  is_public?: boolean | undefined;
2376
- parent_id?: string | undefined;
2377
2347
  } & {
2378
2348
  id?: string | undefined;
2379
2349
  emoji_id?: string | undefined;
@@ -2389,7 +2359,6 @@ export declare const Envelope: {
2389
2359
  mode?: number | undefined;
2390
2360
  message_sender_id?: string | undefined;
2391
2361
  is_public?: boolean | undefined;
2392
- parent_id?: string | undefined;
2393
2362
  } & { [K_60 in Exclude<keyof I["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
2394
2363
  voice_joined_event?: ({
2395
2364
  clan_id?: string | undefined;
@@ -2511,7 +2480,6 @@ export declare const Envelope: {
2511
2480
  timestamp_seconds?: number | undefined;
2512
2481
  operation?: number | undefined;
2513
2482
  is_public?: boolean | undefined;
2514
- parent_id?: string | undefined;
2515
2483
  } & {
2516
2484
  clan_id?: string | undefined;
2517
2485
  channel_id?: string | undefined;
@@ -2521,7 +2489,6 @@ export declare const Envelope: {
2521
2489
  timestamp_seconds?: number | undefined;
2522
2490
  operation?: number | undefined;
2523
2491
  is_public?: boolean | undefined;
2524
- parent_id?: string | undefined;
2525
2492
  } & { [K_68 in Exclude<keyof I["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
2526
2493
  custom_status_event?: ({
2527
2494
  clan_id?: string | undefined;
@@ -3158,7 +3125,6 @@ export declare const Envelope: {
3158
3125
  clan_id?: string | undefined;
3159
3126
  channel_id?: string | undefined;
3160
3127
  channel_type?: number | undefined;
3161
- parent_id?: string | undefined;
3162
3128
  is_public?: boolean | undefined;
3163
3129
  } | undefined;
3164
3130
  channel_leave?: {
@@ -3245,7 +3211,6 @@ export declare const Envelope: {
3245
3211
  mention_everyone?: boolean | undefined;
3246
3212
  avatar?: string | undefined;
3247
3213
  is_public?: boolean | undefined;
3248
- parent_id?: string | undefined;
3249
3214
  } | undefined;
3250
3215
  channel_message_update?: {
3251
3216
  clan_id?: string | undefined;
@@ -3273,7 +3238,6 @@ export declare const Envelope: {
3273
3238
  mode?: number | undefined;
3274
3239
  is_public?: boolean | undefined;
3275
3240
  hide_editted?: boolean | undefined;
3276
- parent_id?: string | undefined;
3277
3241
  } | undefined;
3278
3242
  channel_message_remove?: {
3279
3243
  clan_id?: string | undefined;
@@ -3281,7 +3245,6 @@ export declare const Envelope: {
3281
3245
  message_id?: string | undefined;
3282
3246
  mode?: number | undefined;
3283
3247
  is_public?: boolean | undefined;
3284
- parent_id?: string | undefined;
3285
3248
  } | undefined;
3286
3249
  channel_presence_event?: {
3287
3250
  channel_id?: string | undefined;
@@ -3412,7 +3375,6 @@ export declare const Envelope: {
3412
3375
  sender_id?: string | undefined;
3413
3376
  mode?: number | undefined;
3414
3377
  is_public?: boolean | undefined;
3415
- parent_id?: string | undefined;
3416
3378
  } | undefined;
3417
3379
  last_seen_message_event?: {
3418
3380
  clan_id?: string | undefined;
@@ -3436,7 +3398,6 @@ export declare const Envelope: {
3436
3398
  mode?: number | undefined;
3437
3399
  message_sender_id?: string | undefined;
3438
3400
  is_public?: boolean | undefined;
3439
- parent_id?: string | undefined;
3440
3401
  } | undefined;
3441
3402
  voice_joined_event?: {
3442
3403
  clan_id?: string | undefined;
@@ -3506,7 +3467,6 @@ export declare const Envelope: {
3506
3467
  timestamp_seconds?: number | undefined;
3507
3468
  operation?: number | undefined;
3508
3469
  is_public?: boolean | undefined;
3509
- parent_id?: string | undefined;
3510
3470
  } | undefined;
3511
3471
  custom_status_event?: {
3512
3472
  clan_id?: string | undefined;
@@ -3803,13 +3763,11 @@ export declare const Envelope: {
3803
3763
  clan_id?: string | undefined;
3804
3764
  channel_id?: string | undefined;
3805
3765
  channel_type?: number | undefined;
3806
- parent_id?: string | undefined;
3807
3766
  is_public?: boolean | undefined;
3808
3767
  } & {
3809
3768
  clan_id?: string | undefined;
3810
3769
  channel_id?: string | undefined;
3811
3770
  channel_type?: number | undefined;
3812
- parent_id?: string | undefined;
3813
3771
  is_public?: boolean | undefined;
3814
3772
  } & { [K_120 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
3815
3773
  channel_leave?: ({
@@ -3938,7 +3896,6 @@ export declare const Envelope: {
3938
3896
  mention_everyone?: boolean | undefined;
3939
3897
  avatar?: string | undefined;
3940
3898
  is_public?: boolean | undefined;
3941
- parent_id?: string | undefined;
3942
3899
  } & {
3943
3900
  clan_id?: string | undefined;
3944
3901
  channel_id?: string | undefined;
@@ -4059,7 +4016,6 @@ export declare const Envelope: {
4059
4016
  mention_everyone?: boolean | undefined;
4060
4017
  avatar?: string | undefined;
4061
4018
  is_public?: boolean | undefined;
4062
- parent_id?: string | undefined;
4063
4019
  } & { [K_130 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
4064
4020
  channel_message_update?: ({
4065
4021
  clan_id?: string | undefined;
@@ -4087,7 +4043,6 @@ export declare const Envelope: {
4087
4043
  mode?: number | undefined;
4088
4044
  is_public?: boolean | undefined;
4089
4045
  hide_editted?: boolean | undefined;
4090
- parent_id?: string | undefined;
4091
4046
  } & {
4092
4047
  clan_id?: string | undefined;
4093
4048
  channel_id?: string | undefined;
@@ -4162,7 +4117,6 @@ export declare const Envelope: {
4162
4117
  mode?: number | undefined;
4163
4118
  is_public?: boolean | undefined;
4164
4119
  hide_editted?: boolean | undefined;
4165
- parent_id?: string | undefined;
4166
4120
  } & { [K_135 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
4167
4121
  channel_message_remove?: ({
4168
4122
  clan_id?: string | undefined;
@@ -4170,14 +4124,12 @@ export declare const Envelope: {
4170
4124
  message_id?: string | undefined;
4171
4125
  mode?: number | undefined;
4172
4126
  is_public?: boolean | undefined;
4173
- parent_id?: string | undefined;
4174
4127
  } & {
4175
4128
  clan_id?: string | undefined;
4176
4129
  channel_id?: string | undefined;
4177
4130
  message_id?: string | undefined;
4178
4131
  mode?: number | undefined;
4179
4132
  is_public?: boolean | undefined;
4180
- parent_id?: string | undefined;
4181
4133
  } & { [K_136 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
4182
4134
  channel_presence_event?: ({
4183
4135
  channel_id?: string | undefined;
@@ -4598,14 +4550,12 @@ export declare const Envelope: {
4598
4550
  sender_id?: string | undefined;
4599
4551
  mode?: number | undefined;
4600
4552
  is_public?: boolean | undefined;
4601
- parent_id?: string | undefined;
4602
4553
  } & {
4603
4554
  clan_id?: string | undefined;
4604
4555
  channel_id?: string | undefined;
4605
4556
  sender_id?: string | undefined;
4606
4557
  mode?: number | undefined;
4607
4558
  is_public?: boolean | undefined;
4608
- parent_id?: string | undefined;
4609
4559
  } & { [K_173 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
4610
4560
  last_seen_message_event?: ({
4611
4561
  clan_id?: string | undefined;
@@ -4635,7 +4585,6 @@ export declare const Envelope: {
4635
4585
  mode?: number | undefined;
4636
4586
  message_sender_id?: string | undefined;
4637
4587
  is_public?: boolean | undefined;
4638
- parent_id?: string | undefined;
4639
4588
  } & {
4640
4589
  id?: string | undefined;
4641
4590
  emoji_id?: string | undefined;
@@ -4651,7 +4600,6 @@ export declare const Envelope: {
4651
4600
  mode?: number | undefined;
4652
4601
  message_sender_id?: string | undefined;
4653
4602
  is_public?: boolean | undefined;
4654
- parent_id?: string | undefined;
4655
4603
  } & { [K_175 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
4656
4604
  voice_joined_event?: ({
4657
4605
  clan_id?: string | undefined;
@@ -4773,7 +4721,6 @@ export declare const Envelope: {
4773
4721
  timestamp_seconds?: number | undefined;
4774
4722
  operation?: number | undefined;
4775
4723
  is_public?: boolean | undefined;
4776
- parent_id?: string | undefined;
4777
4724
  } & {
4778
4725
  clan_id?: string | undefined;
4779
4726
  channel_id?: string | undefined;
@@ -4783,7 +4730,6 @@ export declare const Envelope: {
4783
4730
  timestamp_seconds?: number | undefined;
4784
4731
  operation?: number | undefined;
4785
4732
  is_public?: boolean | undefined;
4786
- parent_id?: string | undefined;
4787
4733
  } & { [K_183 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
4788
4734
  custom_status_event?: ({
4789
4735
  clan_id?: string | undefined;
@@ -5897,26 +5843,22 @@ export declare const ChannelJoin: {
5897
5843
  clan_id?: string | undefined;
5898
5844
  channel_id?: string | undefined;
5899
5845
  channel_type?: number | undefined;
5900
- parent_id?: string | undefined;
5901
5846
  is_public?: boolean | undefined;
5902
5847
  } & {
5903
5848
  clan_id?: string | undefined;
5904
5849
  channel_id?: string | undefined;
5905
5850
  channel_type?: number | undefined;
5906
- parent_id?: string | undefined;
5907
5851
  is_public?: boolean | undefined;
5908
5852
  } & { [K in Exclude<keyof I, keyof ChannelJoin>]: never; }>(base?: I | undefined): ChannelJoin;
5909
5853
  fromPartial<I_1 extends {
5910
5854
  clan_id?: string | undefined;
5911
5855
  channel_id?: string | undefined;
5912
5856
  channel_type?: number | undefined;
5913
- parent_id?: string | undefined;
5914
5857
  is_public?: boolean | undefined;
5915
5858
  } & {
5916
5859
  clan_id?: string | undefined;
5917
5860
  channel_id?: string | undefined;
5918
5861
  channel_type?: number | undefined;
5919
- parent_id?: string | undefined;
5920
5862
  is_public?: boolean | undefined;
5921
5863
  } & { [K_1 in Exclude<keyof I_1, keyof ChannelJoin>]: never; }>(object: I_1): ChannelJoin;
5922
5864
  };
@@ -6040,7 +5982,6 @@ export declare const ChannelMessageSend: {
6040
5982
  mention_everyone?: boolean | undefined;
6041
5983
  avatar?: string | undefined;
6042
5984
  is_public?: boolean | undefined;
6043
- parent_id?: string | undefined;
6044
5985
  } & {
6045
5986
  clan_id?: string | undefined;
6046
5987
  channel_id?: string | undefined;
@@ -6161,7 +6102,6 @@ export declare const ChannelMessageSend: {
6161
6102
  mention_everyone?: boolean | undefined;
6162
6103
  avatar?: string | undefined;
6163
6104
  is_public?: boolean | undefined;
6164
- parent_id?: string | undefined;
6165
6105
  } & { [K_6 in Exclude<keyof I, keyof ChannelMessageSend>]: never; }>(base?: I | undefined): ChannelMessageSend;
6166
6106
  fromPartial<I_1 extends {
6167
6107
  clan_id?: string | undefined;
@@ -6202,7 +6142,6 @@ export declare const ChannelMessageSend: {
6202
6142
  mention_everyone?: boolean | undefined;
6203
6143
  avatar?: string | undefined;
6204
6144
  is_public?: boolean | undefined;
6205
- parent_id?: string | undefined;
6206
6145
  } & {
6207
6146
  clan_id?: string | undefined;
6208
6147
  channel_id?: string | undefined;
@@ -6323,7 +6262,6 @@ export declare const ChannelMessageSend: {
6323
6262
  mention_everyone?: boolean | undefined;
6324
6263
  avatar?: string | undefined;
6325
6264
  is_public?: boolean | undefined;
6326
- parent_id?: string | undefined;
6327
6265
  } & { [K_13 in Exclude<keyof I_1, keyof ChannelMessageSend>]: never; }>(object: I_1): ChannelMessageSend;
6328
6266
  };
6329
6267
  export declare const ChannelMessageUpdate: {
@@ -6357,7 +6295,6 @@ export declare const ChannelMessageUpdate: {
6357
6295
  mode?: number | undefined;
6358
6296
  is_public?: boolean | undefined;
6359
6297
  hide_editted?: boolean | undefined;
6360
- parent_id?: string | undefined;
6361
6298
  } & {
6362
6299
  clan_id?: string | undefined;
6363
6300
  channel_id?: string | undefined;
@@ -6432,7 +6369,6 @@ export declare const ChannelMessageUpdate: {
6432
6369
  mode?: number | undefined;
6433
6370
  is_public?: boolean | undefined;
6434
6371
  hide_editted?: boolean | undefined;
6435
- parent_id?: string | undefined;
6436
6372
  } & { [K_4 in Exclude<keyof I, keyof ChannelMessageUpdate>]: never; }>(base?: I | undefined): ChannelMessageUpdate;
6437
6373
  fromPartial<I_1 extends {
6438
6374
  clan_id?: string | undefined;
@@ -6460,7 +6396,6 @@ export declare const ChannelMessageUpdate: {
6460
6396
  mode?: number | undefined;
6461
6397
  is_public?: boolean | undefined;
6462
6398
  hide_editted?: boolean | undefined;
6463
- parent_id?: string | undefined;
6464
6399
  } & {
6465
6400
  clan_id?: string | undefined;
6466
6401
  channel_id?: string | undefined;
@@ -6535,7 +6470,6 @@ export declare const ChannelMessageUpdate: {
6535
6470
  mode?: number | undefined;
6536
6471
  is_public?: boolean | undefined;
6537
6472
  hide_editted?: boolean | undefined;
6538
- parent_id?: string | undefined;
6539
6473
  } & { [K_9 in Exclude<keyof I_1, keyof ChannelMessageUpdate>]: never; }>(object: I_1): ChannelMessageUpdate;
6540
6474
  };
6541
6475
  export declare const ChannelMessageRemove: {
@@ -6549,14 +6483,12 @@ export declare const ChannelMessageRemove: {
6549
6483
  message_id?: string | undefined;
6550
6484
  mode?: number | undefined;
6551
6485
  is_public?: boolean | undefined;
6552
- parent_id?: string | undefined;
6553
6486
  } & {
6554
6487
  clan_id?: string | undefined;
6555
6488
  channel_id?: string | undefined;
6556
6489
  message_id?: string | undefined;
6557
6490
  mode?: number | undefined;
6558
6491
  is_public?: boolean | undefined;
6559
- parent_id?: string | undefined;
6560
6492
  } & { [K in Exclude<keyof I, keyof ChannelMessageRemove>]: never; }>(base?: I | undefined): ChannelMessageRemove;
6561
6493
  fromPartial<I_1 extends {
6562
6494
  clan_id?: string | undefined;
@@ -6564,14 +6496,12 @@ export declare const ChannelMessageRemove: {
6564
6496
  message_id?: string | undefined;
6565
6497
  mode?: number | undefined;
6566
6498
  is_public?: boolean | undefined;
6567
- parent_id?: string | undefined;
6568
6499
  } & {
6569
6500
  clan_id?: string | undefined;
6570
6501
  channel_id?: string | undefined;
6571
6502
  message_id?: string | undefined;
6572
6503
  mode?: number | undefined;
6573
6504
  is_public?: boolean | undefined;
6574
- parent_id?: string | undefined;
6575
6505
  } & { [K_1 in Exclude<keyof I_1, keyof ChannelMessageRemove>]: never; }>(object: I_1): ChannelMessageRemove;
6576
6506
  };
6577
6507
  export declare const ChannelPresenceEvent: {
@@ -7188,7 +7118,6 @@ export declare const LastPinMessageEvent: {
7188
7118
  timestamp_seconds?: number | undefined;
7189
7119
  operation?: number | undefined;
7190
7120
  is_public?: boolean | undefined;
7191
- parent_id?: string | undefined;
7192
7121
  } & {
7193
7122
  clan_id?: string | undefined;
7194
7123
  channel_id?: string | undefined;
@@ -7198,7 +7127,6 @@ export declare const LastPinMessageEvent: {
7198
7127
  timestamp_seconds?: number | undefined;
7199
7128
  operation?: number | undefined;
7200
7129
  is_public?: boolean | undefined;
7201
- parent_id?: string | undefined;
7202
7130
  } & { [K in Exclude<keyof I, keyof LastPinMessageEvent>]: never; }>(base?: I | undefined): LastPinMessageEvent;
7203
7131
  fromPartial<I_1 extends {
7204
7132
  clan_id?: string | undefined;
@@ -7209,7 +7137,6 @@ export declare const LastPinMessageEvent: {
7209
7137
  timestamp_seconds?: number | undefined;
7210
7138
  operation?: number | undefined;
7211
7139
  is_public?: boolean | undefined;
7212
- parent_id?: string | undefined;
7213
7140
  } & {
7214
7141
  clan_id?: string | undefined;
7215
7142
  channel_id?: string | undefined;
@@ -7219,7 +7146,6 @@ export declare const LastPinMessageEvent: {
7219
7146
  timestamp_seconds?: number | undefined;
7220
7147
  operation?: number | undefined;
7221
7148
  is_public?: boolean | undefined;
7222
- parent_id?: string | undefined;
7223
7149
  } & { [K_1 in Exclude<keyof I_1, keyof LastPinMessageEvent>]: never; }>(object: I_1): LastPinMessageEvent;
7224
7150
  };
7225
7151
  export declare const LastSeenMessageEvent: {
@@ -7265,14 +7191,12 @@ export declare const MessageTypingEvent: {
7265
7191
  sender_id?: string | undefined;
7266
7192
  mode?: number | undefined;
7267
7193
  is_public?: boolean | undefined;
7268
- parent_id?: string | undefined;
7269
7194
  } & {
7270
7195
  clan_id?: string | undefined;
7271
7196
  channel_id?: string | undefined;
7272
7197
  sender_id?: string | undefined;
7273
7198
  mode?: number | undefined;
7274
7199
  is_public?: boolean | undefined;
7275
- parent_id?: string | undefined;
7276
7200
  } & { [K in Exclude<keyof I, keyof MessageTypingEvent>]: never; }>(base?: I | undefined): MessageTypingEvent;
7277
7201
  fromPartial<I_1 extends {
7278
7202
  clan_id?: string | undefined;
@@ -7280,14 +7204,12 @@ export declare const MessageTypingEvent: {
7280
7204
  sender_id?: string | undefined;
7281
7205
  mode?: number | undefined;
7282
7206
  is_public?: boolean | undefined;
7283
- parent_id?: string | undefined;
7284
7207
  } & {
7285
7208
  clan_id?: string | undefined;
7286
7209
  channel_id?: string | undefined;
7287
7210
  sender_id?: string | undefined;
7288
7211
  mode?: number | undefined;
7289
7212
  is_public?: boolean | undefined;
7290
- parent_id?: string | undefined;
7291
7213
  } & { [K_1 in Exclude<keyof I_1, keyof MessageTypingEvent>]: never; }>(object: I_1): MessageTypingEvent;
7292
7214
  };
7293
7215
  export declare const VoiceLeavedEvent: {