mezon-js-protobuf 1.6.97 → 1.6.99
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 +37783 -37783
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +24 -0
- package/dist/mezon-js-protobuf.cjs.js +243 -804
- package/dist/mezon-js-protobuf.esm.mjs +243 -804
- package/package.json +1 -1
- package/rtapi/realtime.ts +1208 -2776
|
@@ -362,6 +362,8 @@ export interface ChannelMessageUpdate {
|
|
|
362
362
|
hide_editted: boolean;
|
|
363
363
|
/** topic id */
|
|
364
364
|
topic_id: string;
|
|
365
|
+
/** topic id */
|
|
366
|
+
mess_topic_id: string;
|
|
365
367
|
}
|
|
366
368
|
/** Remove a message previously sent to a realtime channel. */
|
|
367
369
|
export interface ChannelMessageRemove {
|
|
@@ -377,6 +379,8 @@ export interface ChannelMessageRemove {
|
|
|
377
379
|
is_public: boolean;
|
|
378
380
|
/** has_attachments. */
|
|
379
381
|
has_attachment: boolean;
|
|
382
|
+
/** */
|
|
383
|
+
topic_id: string;
|
|
380
384
|
}
|
|
381
385
|
/** A set of joins and leaves on a particular channel. */
|
|
382
386
|
export interface ChannelPresenceEvent {
|
|
@@ -1139,6 +1143,7 @@ export declare const Envelope: {
|
|
|
1139
1143
|
is_public?: boolean | undefined;
|
|
1140
1144
|
hide_editted?: boolean | undefined;
|
|
1141
1145
|
topic_id?: string | undefined;
|
|
1146
|
+
mess_topic_id?: string | undefined;
|
|
1142
1147
|
} | undefined;
|
|
1143
1148
|
channel_message_remove?: {
|
|
1144
1149
|
clan_id?: string | undefined;
|
|
@@ -1147,6 +1152,7 @@ export declare const Envelope: {
|
|
|
1147
1152
|
mode?: number | undefined;
|
|
1148
1153
|
is_public?: boolean | undefined;
|
|
1149
1154
|
has_attachment?: boolean | undefined;
|
|
1155
|
+
topic_id?: string | undefined;
|
|
1150
1156
|
} | undefined;
|
|
1151
1157
|
channel_presence_event?: {
|
|
1152
1158
|
channel_id?: string | undefined;
|
|
@@ -2177,6 +2183,7 @@ export declare const Envelope: {
|
|
|
2177
2183
|
is_public?: boolean | undefined;
|
|
2178
2184
|
hide_editted?: boolean | undefined;
|
|
2179
2185
|
topic_id?: string | undefined;
|
|
2186
|
+
mess_topic_id?: string | undefined;
|
|
2180
2187
|
} & {
|
|
2181
2188
|
clan_id?: string | undefined;
|
|
2182
2189
|
channel_id?: string | undefined;
|
|
@@ -2252,6 +2259,7 @@ export declare const Envelope: {
|
|
|
2252
2259
|
is_public?: boolean | undefined;
|
|
2253
2260
|
hide_editted?: boolean | undefined;
|
|
2254
2261
|
topic_id?: string | undefined;
|
|
2262
|
+
mess_topic_id?: string | undefined;
|
|
2255
2263
|
} & { [K_20 in Exclude<keyof I["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
2256
2264
|
channel_message_remove?: ({
|
|
2257
2265
|
clan_id?: string | undefined;
|
|
@@ -2260,6 +2268,7 @@ export declare const Envelope: {
|
|
|
2260
2268
|
mode?: number | undefined;
|
|
2261
2269
|
is_public?: boolean | undefined;
|
|
2262
2270
|
has_attachment?: boolean | undefined;
|
|
2271
|
+
topic_id?: string | undefined;
|
|
2263
2272
|
} & {
|
|
2264
2273
|
clan_id?: string | undefined;
|
|
2265
2274
|
channel_id?: string | undefined;
|
|
@@ -2267,6 +2276,7 @@ export declare const Envelope: {
|
|
|
2267
2276
|
mode?: number | undefined;
|
|
2268
2277
|
is_public?: boolean | undefined;
|
|
2269
2278
|
has_attachment?: boolean | undefined;
|
|
2279
|
+
topic_id?: string | undefined;
|
|
2270
2280
|
} & { [K_21 in Exclude<keyof I["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
2271
2281
|
channel_presence_event?: ({
|
|
2272
2282
|
channel_id?: string | undefined;
|
|
@@ -4257,6 +4267,7 @@ export declare const Envelope: {
|
|
|
4257
4267
|
is_public?: boolean | undefined;
|
|
4258
4268
|
hide_editted?: boolean | undefined;
|
|
4259
4269
|
topic_id?: string | undefined;
|
|
4270
|
+
mess_topic_id?: string | undefined;
|
|
4260
4271
|
} | undefined;
|
|
4261
4272
|
channel_message_remove?: {
|
|
4262
4273
|
clan_id?: string | undefined;
|
|
@@ -4265,6 +4276,7 @@ export declare const Envelope: {
|
|
|
4265
4276
|
mode?: number | undefined;
|
|
4266
4277
|
is_public?: boolean | undefined;
|
|
4267
4278
|
has_attachment?: boolean | undefined;
|
|
4279
|
+
topic_id?: string | undefined;
|
|
4268
4280
|
} | undefined;
|
|
4269
4281
|
channel_presence_event?: {
|
|
4270
4282
|
channel_id?: string | undefined;
|
|
@@ -5295,6 +5307,7 @@ export declare const Envelope: {
|
|
|
5295
5307
|
is_public?: boolean | undefined;
|
|
5296
5308
|
hide_editted?: boolean | undefined;
|
|
5297
5309
|
topic_id?: string | undefined;
|
|
5310
|
+
mess_topic_id?: string | undefined;
|
|
5298
5311
|
} & {
|
|
5299
5312
|
clan_id?: string | undefined;
|
|
5300
5313
|
channel_id?: string | undefined;
|
|
@@ -5370,6 +5383,7 @@ export declare const Envelope: {
|
|
|
5370
5383
|
is_public?: boolean | undefined;
|
|
5371
5384
|
hide_editted?: boolean | undefined;
|
|
5372
5385
|
topic_id?: string | undefined;
|
|
5386
|
+
mess_topic_id?: string | undefined;
|
|
5373
5387
|
} & { [K_174 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
5374
5388
|
channel_message_remove?: ({
|
|
5375
5389
|
clan_id?: string | undefined;
|
|
@@ -5378,6 +5392,7 @@ export declare const Envelope: {
|
|
|
5378
5392
|
mode?: number | undefined;
|
|
5379
5393
|
is_public?: boolean | undefined;
|
|
5380
5394
|
has_attachment?: boolean | undefined;
|
|
5395
|
+
topic_id?: string | undefined;
|
|
5381
5396
|
} & {
|
|
5382
5397
|
clan_id?: string | undefined;
|
|
5383
5398
|
channel_id?: string | undefined;
|
|
@@ -5385,6 +5400,7 @@ export declare const Envelope: {
|
|
|
5385
5400
|
mode?: number | undefined;
|
|
5386
5401
|
is_public?: boolean | undefined;
|
|
5387
5402
|
has_attachment?: boolean | undefined;
|
|
5403
|
+
topic_id?: string | undefined;
|
|
5388
5404
|
} & { [K_175 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
5389
5405
|
channel_presence_event?: ({
|
|
5390
5406
|
channel_id?: string | undefined;
|
|
@@ -8360,6 +8376,7 @@ export declare const ChannelMessageUpdate: {
|
|
|
8360
8376
|
is_public?: boolean | undefined;
|
|
8361
8377
|
hide_editted?: boolean | undefined;
|
|
8362
8378
|
topic_id?: string | undefined;
|
|
8379
|
+
mess_topic_id?: string | undefined;
|
|
8363
8380
|
} & {
|
|
8364
8381
|
clan_id?: string | undefined;
|
|
8365
8382
|
channel_id?: string | undefined;
|
|
@@ -8435,6 +8452,7 @@ export declare const ChannelMessageUpdate: {
|
|
|
8435
8452
|
is_public?: boolean | undefined;
|
|
8436
8453
|
hide_editted?: boolean | undefined;
|
|
8437
8454
|
topic_id?: string | undefined;
|
|
8455
|
+
mess_topic_id?: string | undefined;
|
|
8438
8456
|
} & { [K_4 in Exclude<keyof I, keyof ChannelMessageUpdate>]: never; }>(base?: I | undefined): ChannelMessageUpdate;
|
|
8439
8457
|
fromPartial<I_1 extends {
|
|
8440
8458
|
clan_id?: string | undefined;
|
|
@@ -8463,6 +8481,7 @@ export declare const ChannelMessageUpdate: {
|
|
|
8463
8481
|
is_public?: boolean | undefined;
|
|
8464
8482
|
hide_editted?: boolean | undefined;
|
|
8465
8483
|
topic_id?: string | undefined;
|
|
8484
|
+
mess_topic_id?: string | undefined;
|
|
8466
8485
|
} & {
|
|
8467
8486
|
clan_id?: string | undefined;
|
|
8468
8487
|
channel_id?: string | undefined;
|
|
@@ -8538,6 +8557,7 @@ export declare const ChannelMessageUpdate: {
|
|
|
8538
8557
|
is_public?: boolean | undefined;
|
|
8539
8558
|
hide_editted?: boolean | undefined;
|
|
8540
8559
|
topic_id?: string | undefined;
|
|
8560
|
+
mess_topic_id?: string | undefined;
|
|
8541
8561
|
} & { [K_9 in Exclude<keyof I_1, keyof ChannelMessageUpdate>]: never; }>(object: I_1): ChannelMessageUpdate;
|
|
8542
8562
|
};
|
|
8543
8563
|
export declare const ChannelMessageRemove: {
|
|
@@ -8552,6 +8572,7 @@ export declare const ChannelMessageRemove: {
|
|
|
8552
8572
|
mode?: number | undefined;
|
|
8553
8573
|
is_public?: boolean | undefined;
|
|
8554
8574
|
has_attachment?: boolean | undefined;
|
|
8575
|
+
topic_id?: string | undefined;
|
|
8555
8576
|
} & {
|
|
8556
8577
|
clan_id?: string | undefined;
|
|
8557
8578
|
channel_id?: string | undefined;
|
|
@@ -8559,6 +8580,7 @@ export declare const ChannelMessageRemove: {
|
|
|
8559
8580
|
mode?: number | undefined;
|
|
8560
8581
|
is_public?: boolean | undefined;
|
|
8561
8582
|
has_attachment?: boolean | undefined;
|
|
8583
|
+
topic_id?: string | undefined;
|
|
8562
8584
|
} & { [K in Exclude<keyof I, keyof ChannelMessageRemove>]: never; }>(base?: I | undefined): ChannelMessageRemove;
|
|
8563
8585
|
fromPartial<I_1 extends {
|
|
8564
8586
|
clan_id?: string | undefined;
|
|
@@ -8567,6 +8589,7 @@ export declare const ChannelMessageRemove: {
|
|
|
8567
8589
|
mode?: number | undefined;
|
|
8568
8590
|
is_public?: boolean | undefined;
|
|
8569
8591
|
has_attachment?: boolean | undefined;
|
|
8592
|
+
topic_id?: string | undefined;
|
|
8570
8593
|
} & {
|
|
8571
8594
|
clan_id?: string | undefined;
|
|
8572
8595
|
channel_id?: string | undefined;
|
|
@@ -8574,6 +8597,7 @@ export declare const ChannelMessageRemove: {
|
|
|
8574
8597
|
mode?: number | undefined;
|
|
8575
8598
|
is_public?: boolean | undefined;
|
|
8576
8599
|
has_attachment?: boolean | undefined;
|
|
8600
|
+
topic_id?: string | undefined;
|
|
8577
8601
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelMessageRemove>]: never; }>(object: I_1): ChannelMessageRemove;
|
|
8578
8602
|
};
|
|
8579
8603
|
export declare const ChannelPresenceEvent: {
|