mezon-js-protobuf 1.6.73 → 1.6.75

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
@@ -2965,6 +2965,8 @@ export interface SystemMessage {
2965
2965
  boost_message: string;
2966
2966
  /** Setup tips */
2967
2967
  setup_tips: string;
2968
+ /** Hide audit log */
2969
+ hideAuditLog: string;
2968
2970
  }
2969
2971
 
2970
2972
  /** List of system message. */
@@ -2986,6 +2988,8 @@ export interface SystemMessageRequest {
2986
2988
  boost_message: string;
2987
2989
  /** Setup tips */
2988
2990
  setup_tips: string;
2991
+ /** Hide audit log */
2992
+ hideAuditLog: string;
2989
2993
  }
2990
2994
 
2991
2995
  /** Request to delete a system message by clan ID. */
@@ -3015,8 +3019,6 @@ export interface StreamHttpCallbackRequest {
3015
3019
  channel_id: string;
3016
3020
  /** user_id */
3017
3021
  user_id: string;
3018
- /** display name */
3019
- display_name: string;
3020
3022
  /** action */
3021
3023
  action: number;
3022
3024
  /** is_publisher */
@@ -3814,7 +3816,7 @@ export interface SdTopicList {
3814
3816
  }
3815
3817
 
3816
3818
  export interface ListSdTopicRequest {
3817
- channel_id: string;
3819
+ clan_id: string;
3818
3820
  limit: number;
3819
3821
  }
3820
3822
 
@@ -28085,6 +28087,7 @@ function createBaseSystemMessage(): SystemMessage {
28085
28087
  welcome_sticker: "",
28086
28088
  boost_message: "",
28087
28089
  setup_tips: "",
28090
+ hideAuditLog: "",
28088
28091
  };
28089
28092
  }
28090
28093
 
@@ -28111,6 +28114,9 @@ export const SystemMessage = {
28111
28114
  if (message.setup_tips !== "") {
28112
28115
  writer.uint32(58).string(message.setup_tips);
28113
28116
  }
28117
+ if (message.hideAuditLog !== "") {
28118
+ writer.uint32(66).string(message.hideAuditLog);
28119
+ }
28114
28120
  return writer;
28115
28121
  },
28116
28122
 
@@ -28170,6 +28176,13 @@ export const SystemMessage = {
28170
28176
 
28171
28177
  message.setup_tips = reader.string();
28172
28178
  continue;
28179
+ case 8:
28180
+ if (tag !== 66) {
28181
+ break;
28182
+ }
28183
+
28184
+ message.hideAuditLog = reader.string();
28185
+ continue;
28173
28186
  }
28174
28187
  if ((tag & 7) === 4 || tag === 0) {
28175
28188
  break;
@@ -28188,6 +28201,7 @@ export const SystemMessage = {
28188
28201
  welcome_sticker: isSet(object.welcome_sticker) ? globalThis.String(object.welcome_sticker) : "",
28189
28202
  boost_message: isSet(object.boost_message) ? globalThis.String(object.boost_message) : "",
28190
28203
  setup_tips: isSet(object.setup_tips) ? globalThis.String(object.setup_tips) : "",
28204
+ hideAuditLog: isSet(object.hideAuditLog) ? globalThis.String(object.hideAuditLog) : "",
28191
28205
  };
28192
28206
  },
28193
28207
 
@@ -28214,6 +28228,9 @@ export const SystemMessage = {
28214
28228
  if (message.setup_tips !== "") {
28215
28229
  obj.setup_tips = message.setup_tips;
28216
28230
  }
28231
+ if (message.hideAuditLog !== "") {
28232
+ obj.hideAuditLog = message.hideAuditLog;
28233
+ }
28217
28234
  return obj;
28218
28235
  },
28219
28236
 
@@ -28229,6 +28246,7 @@ export const SystemMessage = {
28229
28246
  message.welcome_sticker = object.welcome_sticker ?? "";
28230
28247
  message.boost_message = object.boost_message ?? "";
28231
28248
  message.setup_tips = object.setup_tips ?? "";
28249
+ message.hideAuditLog = object.hideAuditLog ?? "";
28232
28250
  return message;
28233
28251
  },
28234
28252
  };
@@ -28295,7 +28313,15 @@ export const SystemMessagesList = {
28295
28313
  };
28296
28314
 
28297
28315
  function createBaseSystemMessageRequest(): SystemMessageRequest {
28298
- return { clan_id: "", channel_id: "", welcome_random: "", welcome_sticker: "", boost_message: "", setup_tips: "" };
28316
+ return {
28317
+ clan_id: "",
28318
+ channel_id: "",
28319
+ welcome_random: "",
28320
+ welcome_sticker: "",
28321
+ boost_message: "",
28322
+ setup_tips: "",
28323
+ hideAuditLog: "",
28324
+ };
28299
28325
  }
28300
28326
 
28301
28327
  export const SystemMessageRequest = {
@@ -28318,6 +28344,9 @@ export const SystemMessageRequest = {
28318
28344
  if (message.setup_tips !== "") {
28319
28345
  writer.uint32(50).string(message.setup_tips);
28320
28346
  }
28347
+ if (message.hideAuditLog !== "") {
28348
+ writer.uint32(58).string(message.hideAuditLog);
28349
+ }
28321
28350
  return writer;
28322
28351
  },
28323
28352
 
@@ -28370,6 +28399,13 @@ export const SystemMessageRequest = {
28370
28399
 
28371
28400
  message.setup_tips = reader.string();
28372
28401
  continue;
28402
+ case 7:
28403
+ if (tag !== 58) {
28404
+ break;
28405
+ }
28406
+
28407
+ message.hideAuditLog = reader.string();
28408
+ continue;
28373
28409
  }
28374
28410
  if ((tag & 7) === 4 || tag === 0) {
28375
28411
  break;
@@ -28387,6 +28423,7 @@ export const SystemMessageRequest = {
28387
28423
  welcome_sticker: isSet(object.welcome_sticker) ? globalThis.String(object.welcome_sticker) : "",
28388
28424
  boost_message: isSet(object.boost_message) ? globalThis.String(object.boost_message) : "",
28389
28425
  setup_tips: isSet(object.setup_tips) ? globalThis.String(object.setup_tips) : "",
28426
+ hideAuditLog: isSet(object.hideAuditLog) ? globalThis.String(object.hideAuditLog) : "",
28390
28427
  };
28391
28428
  },
28392
28429
 
@@ -28410,6 +28447,9 @@ export const SystemMessageRequest = {
28410
28447
  if (message.setup_tips !== "") {
28411
28448
  obj.setup_tips = message.setup_tips;
28412
28449
  }
28450
+ if (message.hideAuditLog !== "") {
28451
+ obj.hideAuditLog = message.hideAuditLog;
28452
+ }
28413
28453
  return obj;
28414
28454
  },
28415
28455
 
@@ -28424,6 +28464,7 @@ export const SystemMessageRequest = {
28424
28464
  message.welcome_sticker = object.welcome_sticker ?? "";
28425
28465
  message.boost_message = object.boost_message ?? "";
28426
28466
  message.setup_tips = object.setup_tips ?? "";
28467
+ message.hideAuditLog = object.hideAuditLog ?? "";
28427
28468
  return message;
28428
28469
  },
28429
28470
  };
@@ -28600,16 +28641,7 @@ export const DeleteCategoryOrderRequest = {
28600
28641
  };
28601
28642
 
28602
28643
  function createBaseStreamHttpCallbackRequest(): StreamHttpCallbackRequest {
28603
- return {
28604
- id: "",
28605
- client_id: "",
28606
- clan_id: "",
28607
- channel_id: "",
28608
- user_id: "",
28609
- display_name: "",
28610
- action: 0,
28611
- is_publisher: false,
28612
- };
28644
+ return { id: "", client_id: "", clan_id: "", channel_id: "", user_id: "", action: 0, is_publisher: false };
28613
28645
  }
28614
28646
 
28615
28647
  export const StreamHttpCallbackRequest = {
@@ -28629,14 +28661,11 @@ export const StreamHttpCallbackRequest = {
28629
28661
  if (message.user_id !== "") {
28630
28662
  writer.uint32(42).string(message.user_id);
28631
28663
  }
28632
- if (message.display_name !== "") {
28633
- writer.uint32(50).string(message.display_name);
28634
- }
28635
28664
  if (message.action !== 0) {
28636
- writer.uint32(56).int32(message.action);
28665
+ writer.uint32(48).int32(message.action);
28637
28666
  }
28638
28667
  if (message.is_publisher !== false) {
28639
- writer.uint32(64).bool(message.is_publisher);
28668
+ writer.uint32(56).bool(message.is_publisher);
28640
28669
  }
28641
28670
  return writer;
28642
28671
  },
@@ -28684,24 +28713,17 @@ export const StreamHttpCallbackRequest = {
28684
28713
  message.user_id = reader.string();
28685
28714
  continue;
28686
28715
  case 6:
28687
- if (tag !== 50) {
28716
+ if (tag !== 48) {
28688
28717
  break;
28689
28718
  }
28690
28719
 
28691
- message.display_name = reader.string();
28720
+ message.action = reader.int32();
28692
28721
  continue;
28693
28722
  case 7:
28694
28723
  if (tag !== 56) {
28695
28724
  break;
28696
28725
  }
28697
28726
 
28698
- message.action = reader.int32();
28699
- continue;
28700
- case 8:
28701
- if (tag !== 64) {
28702
- break;
28703
- }
28704
-
28705
28727
  message.is_publisher = reader.bool();
28706
28728
  continue;
28707
28729
  }
@@ -28720,7 +28742,6 @@ export const StreamHttpCallbackRequest = {
28720
28742
  clan_id: isSet(object.clan_id) ? globalThis.String(object.clan_id) : "",
28721
28743
  channel_id: isSet(object.channel_id) ? globalThis.String(object.channel_id) : "",
28722
28744
  user_id: isSet(object.user_id) ? globalThis.String(object.user_id) : "",
28723
- display_name: isSet(object.display_name) ? globalThis.String(object.display_name) : "",
28724
28745
  action: isSet(object.action) ? globalThis.Number(object.action) : 0,
28725
28746
  is_publisher: isSet(object.is_publisher) ? globalThis.Boolean(object.is_publisher) : false,
28726
28747
  };
@@ -28743,9 +28764,6 @@ export const StreamHttpCallbackRequest = {
28743
28764
  if (message.user_id !== "") {
28744
28765
  obj.user_id = message.user_id;
28745
28766
  }
28746
- if (message.display_name !== "") {
28747
- obj.display_name = message.display_name;
28748
- }
28749
28767
  if (message.action !== 0) {
28750
28768
  obj.action = Math.round(message.action);
28751
28769
  }
@@ -28765,7 +28783,6 @@ export const StreamHttpCallbackRequest = {
28765
28783
  message.clan_id = object.clan_id ?? "";
28766
28784
  message.channel_id = object.channel_id ?? "";
28767
28785
  message.user_id = object.user_id ?? "";
28768
- message.display_name = object.display_name ?? "";
28769
28786
  message.action = object.action ?? 0;
28770
28787
  message.is_publisher = object.is_publisher ?? false;
28771
28788
  return message;
@@ -36968,13 +36985,13 @@ export const SdTopicList = {
36968
36985
  };
36969
36986
 
36970
36987
  function createBaseListSdTopicRequest(): ListSdTopicRequest {
36971
- return { channel_id: "", limit: 0 };
36988
+ return { clan_id: "", limit: 0 };
36972
36989
  }
36973
36990
 
36974
36991
  export const ListSdTopicRequest = {
36975
36992
  encode(message: ListSdTopicRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
36976
- if (message.channel_id !== "") {
36977
- writer.uint32(10).string(message.channel_id);
36993
+ if (message.clan_id !== "") {
36994
+ writer.uint32(10).string(message.clan_id);
36978
36995
  }
36979
36996
  if (message.limit !== 0) {
36980
36997
  writer.uint32(16).int32(message.limit);
@@ -36994,7 +37011,7 @@ export const ListSdTopicRequest = {
36994
37011
  break;
36995
37012
  }
36996
37013
 
36997
- message.channel_id = reader.string();
37014
+ message.clan_id = reader.string();
36998
37015
  continue;
36999
37016
  case 2:
37000
37017
  if (tag !== 16) {
@@ -37014,15 +37031,15 @@ export const ListSdTopicRequest = {
37014
37031
 
37015
37032
  fromJSON(object: any): ListSdTopicRequest {
37016
37033
  return {
37017
- channel_id: isSet(object.channel_id) ? globalThis.String(object.channel_id) : "",
37034
+ clan_id: isSet(object.clan_id) ? globalThis.String(object.clan_id) : "",
37018
37035
  limit: isSet(object.limit) ? globalThis.Number(object.limit) : 0,
37019
37036
  };
37020
37037
  },
37021
37038
 
37022
37039
  toJSON(message: ListSdTopicRequest): unknown {
37023
37040
  const obj: any = {};
37024
- if (message.channel_id !== "") {
37025
- obj.channel_id = message.channel_id;
37041
+ if (message.clan_id !== "") {
37042
+ obj.clan_id = message.clan_id;
37026
37043
  }
37027
37044
  if (message.limit !== 0) {
37028
37045
  obj.limit = Math.round(message.limit);
@@ -37035,7 +37052,7 @@ export const ListSdTopicRequest = {
37035
37052
  },
37036
37053
  fromPartial<I extends Exact<DeepPartial<ListSdTopicRequest>, I>>(object: I): ListSdTopicRequest {
37037
37054
  const message = createBaseListSdTopicRequest();
37038
- message.channel_id = object.channel_id ?? "";
37055
+ message.clan_id = object.clan_id ?? "";
37039
37056
  message.limit = object.limit ?? 0;
37040
37057
  return message;
37041
37058
  },
@@ -2338,6 +2338,8 @@ export interface SystemMessage {
2338
2338
  boost_message: string;
2339
2339
  /** Setup tips */
2340
2340
  setup_tips: string;
2341
+ /** Hide audit log */
2342
+ hideAuditLog: string;
2341
2343
  }
2342
2344
  /** List of system message. */
2343
2345
  export interface SystemMessagesList {
@@ -2357,6 +2359,8 @@ export interface SystemMessageRequest {
2357
2359
  boost_message: string;
2358
2360
  /** Setup tips */
2359
2361
  setup_tips: string;
2362
+ /** Hide audit log */
2363
+ hideAuditLog: string;
2360
2364
  }
2361
2365
  /** Request to delete a system message by clan ID. */
2362
2366
  export interface DeleteSystemMessage {
@@ -2382,8 +2386,6 @@ export interface StreamHttpCallbackRequest {
2382
2386
  channel_id: string;
2383
2387
  /** user_id */
2384
2388
  user_id: string;
2385
- /** display name */
2386
- display_name: string;
2387
2389
  /** action */
2388
2390
  action: number;
2389
2391
  /** is_publisher */
@@ -3066,7 +3068,7 @@ export interface SdTopicList {
3066
3068
  topics: SdTopic[];
3067
3069
  }
3068
3070
  export interface ListSdTopicRequest {
3069
- channel_id: string;
3071
+ clan_id: string;
3070
3072
  limit: number;
3071
3073
  }
3072
3074
  export interface SdTopicDetailRequest {
@@ -16084,6 +16086,7 @@ export declare const SystemMessage: {
16084
16086
  welcome_sticker?: string | undefined;
16085
16087
  boost_message?: string | undefined;
16086
16088
  setup_tips?: string | undefined;
16089
+ hideAuditLog?: string | undefined;
16087
16090
  } & {
16088
16091
  id?: string | undefined;
16089
16092
  clan_id?: string | undefined;
@@ -16092,6 +16095,7 @@ export declare const SystemMessage: {
16092
16095
  welcome_sticker?: string | undefined;
16093
16096
  boost_message?: string | undefined;
16094
16097
  setup_tips?: string | undefined;
16098
+ hideAuditLog?: string | undefined;
16095
16099
  } & { [K in Exclude<keyof I, keyof SystemMessage>]: never; }>(base?: I | undefined): SystemMessage;
16096
16100
  fromPartial<I_1 extends {
16097
16101
  id?: string | undefined;
@@ -16101,6 +16105,7 @@ export declare const SystemMessage: {
16101
16105
  welcome_sticker?: string | undefined;
16102
16106
  boost_message?: string | undefined;
16103
16107
  setup_tips?: string | undefined;
16108
+ hideAuditLog?: string | undefined;
16104
16109
  } & {
16105
16110
  id?: string | undefined;
16106
16111
  clan_id?: string | undefined;
@@ -16109,6 +16114,7 @@ export declare const SystemMessage: {
16109
16114
  welcome_sticker?: string | undefined;
16110
16115
  boost_message?: string | undefined;
16111
16116
  setup_tips?: string | undefined;
16117
+ hideAuditLog?: string | undefined;
16112
16118
  } & { [K_1 in Exclude<keyof I_1, keyof SystemMessage>]: never; }>(object: I_1): SystemMessage;
16113
16119
  };
16114
16120
  export declare const SystemMessagesList: {
@@ -16125,6 +16131,7 @@ export declare const SystemMessagesList: {
16125
16131
  welcome_sticker?: string | undefined;
16126
16132
  boost_message?: string | undefined;
16127
16133
  setup_tips?: string | undefined;
16134
+ hideAuditLog?: string | undefined;
16128
16135
  }[] | undefined;
16129
16136
  } & {
16130
16137
  system_messages_list?: ({
@@ -16135,6 +16142,7 @@ export declare const SystemMessagesList: {
16135
16142
  welcome_sticker?: string | undefined;
16136
16143
  boost_message?: string | undefined;
16137
16144
  setup_tips?: string | undefined;
16145
+ hideAuditLog?: string | undefined;
16138
16146
  }[] & ({
16139
16147
  id?: string | undefined;
16140
16148
  clan_id?: string | undefined;
@@ -16143,6 +16151,7 @@ export declare const SystemMessagesList: {
16143
16151
  welcome_sticker?: string | undefined;
16144
16152
  boost_message?: string | undefined;
16145
16153
  setup_tips?: string | undefined;
16154
+ hideAuditLog?: string | undefined;
16146
16155
  } & {
16147
16156
  id?: string | undefined;
16148
16157
  clan_id?: string | undefined;
@@ -16151,6 +16160,7 @@ export declare const SystemMessagesList: {
16151
16160
  welcome_sticker?: string | undefined;
16152
16161
  boost_message?: string | undefined;
16153
16162
  setup_tips?: string | undefined;
16163
+ hideAuditLog?: string | undefined;
16154
16164
  } & { [K in Exclude<keyof I["system_messages_list"][number], keyof SystemMessage>]: never; })[] & { [K_1 in Exclude<keyof I["system_messages_list"], keyof {
16155
16165
  id?: string | undefined;
16156
16166
  clan_id?: string | undefined;
@@ -16159,6 +16169,7 @@ export declare const SystemMessagesList: {
16159
16169
  welcome_sticker?: string | undefined;
16160
16170
  boost_message?: string | undefined;
16161
16171
  setup_tips?: string | undefined;
16172
+ hideAuditLog?: string | undefined;
16162
16173
  }[]>]: never; }) | undefined;
16163
16174
  } & { [K_2 in Exclude<keyof I, "system_messages_list">]: never; }>(base?: I | undefined): SystemMessagesList;
16164
16175
  fromPartial<I_1 extends {
@@ -16170,6 +16181,7 @@ export declare const SystemMessagesList: {
16170
16181
  welcome_sticker?: string | undefined;
16171
16182
  boost_message?: string | undefined;
16172
16183
  setup_tips?: string | undefined;
16184
+ hideAuditLog?: string | undefined;
16173
16185
  }[] | undefined;
16174
16186
  } & {
16175
16187
  system_messages_list?: ({
@@ -16180,6 +16192,7 @@ export declare const SystemMessagesList: {
16180
16192
  welcome_sticker?: string | undefined;
16181
16193
  boost_message?: string | undefined;
16182
16194
  setup_tips?: string | undefined;
16195
+ hideAuditLog?: string | undefined;
16183
16196
  }[] & ({
16184
16197
  id?: string | undefined;
16185
16198
  clan_id?: string | undefined;
@@ -16188,6 +16201,7 @@ export declare const SystemMessagesList: {
16188
16201
  welcome_sticker?: string | undefined;
16189
16202
  boost_message?: string | undefined;
16190
16203
  setup_tips?: string | undefined;
16204
+ hideAuditLog?: string | undefined;
16191
16205
  } & {
16192
16206
  id?: string | undefined;
16193
16207
  clan_id?: string | undefined;
@@ -16196,6 +16210,7 @@ export declare const SystemMessagesList: {
16196
16210
  welcome_sticker?: string | undefined;
16197
16211
  boost_message?: string | undefined;
16198
16212
  setup_tips?: string | undefined;
16213
+ hideAuditLog?: string | undefined;
16199
16214
  } & { [K_3 in Exclude<keyof I_1["system_messages_list"][number], keyof SystemMessage>]: never; })[] & { [K_4 in Exclude<keyof I_1["system_messages_list"], keyof {
16200
16215
  id?: string | undefined;
16201
16216
  clan_id?: string | undefined;
@@ -16204,6 +16219,7 @@ export declare const SystemMessagesList: {
16204
16219
  welcome_sticker?: string | undefined;
16205
16220
  boost_message?: string | undefined;
16206
16221
  setup_tips?: string | undefined;
16222
+ hideAuditLog?: string | undefined;
16207
16223
  }[]>]: never; }) | undefined;
16208
16224
  } & { [K_5 in Exclude<keyof I_1, "system_messages_list">]: never; }>(object: I_1): SystemMessagesList;
16209
16225
  };
@@ -16219,6 +16235,7 @@ export declare const SystemMessageRequest: {
16219
16235
  welcome_sticker?: string | undefined;
16220
16236
  boost_message?: string | undefined;
16221
16237
  setup_tips?: string | undefined;
16238
+ hideAuditLog?: string | undefined;
16222
16239
  } & {
16223
16240
  clan_id?: string | undefined;
16224
16241
  channel_id?: string | undefined;
@@ -16226,6 +16243,7 @@ export declare const SystemMessageRequest: {
16226
16243
  welcome_sticker?: string | undefined;
16227
16244
  boost_message?: string | undefined;
16228
16245
  setup_tips?: string | undefined;
16246
+ hideAuditLog?: string | undefined;
16229
16247
  } & { [K in Exclude<keyof I, keyof SystemMessageRequest>]: never; }>(base?: I | undefined): SystemMessageRequest;
16230
16248
  fromPartial<I_1 extends {
16231
16249
  clan_id?: string | undefined;
@@ -16234,6 +16252,7 @@ export declare const SystemMessageRequest: {
16234
16252
  welcome_sticker?: string | undefined;
16235
16253
  boost_message?: string | undefined;
16236
16254
  setup_tips?: string | undefined;
16255
+ hideAuditLog?: string | undefined;
16237
16256
  } & {
16238
16257
  clan_id?: string | undefined;
16239
16258
  channel_id?: string | undefined;
@@ -16241,6 +16260,7 @@ export declare const SystemMessageRequest: {
16241
16260
  welcome_sticker?: string | undefined;
16242
16261
  boost_message?: string | undefined;
16243
16262
  setup_tips?: string | undefined;
16263
+ hideAuditLog?: string | undefined;
16244
16264
  } & { [K_1 in Exclude<keyof I_1, keyof SystemMessageRequest>]: never; }>(object: I_1): SystemMessageRequest;
16245
16265
  };
16246
16266
  export declare const DeleteSystemMessage: {
@@ -16302,7 +16322,6 @@ export declare const StreamHttpCallbackRequest: {
16302
16322
  clan_id?: string | undefined;
16303
16323
  channel_id?: string | undefined;
16304
16324
  user_id?: string | undefined;
16305
- display_name?: string | undefined;
16306
16325
  action?: number | undefined;
16307
16326
  is_publisher?: boolean | undefined;
16308
16327
  } & {
@@ -16311,7 +16330,6 @@ export declare const StreamHttpCallbackRequest: {
16311
16330
  clan_id?: string | undefined;
16312
16331
  channel_id?: string | undefined;
16313
16332
  user_id?: string | undefined;
16314
- display_name?: string | undefined;
16315
16333
  action?: number | undefined;
16316
16334
  is_publisher?: boolean | undefined;
16317
16335
  } & { [K in Exclude<keyof I, keyof StreamHttpCallbackRequest>]: never; }>(base?: I | undefined): StreamHttpCallbackRequest;
@@ -16321,7 +16339,6 @@ export declare const StreamHttpCallbackRequest: {
16321
16339
  clan_id?: string | undefined;
16322
16340
  channel_id?: string | undefined;
16323
16341
  user_id?: string | undefined;
16324
- display_name?: string | undefined;
16325
16342
  action?: number | undefined;
16326
16343
  is_publisher?: boolean | undefined;
16327
16344
  } & {
@@ -16330,7 +16347,6 @@ export declare const StreamHttpCallbackRequest: {
16330
16347
  clan_id?: string | undefined;
16331
16348
  channel_id?: string | undefined;
16332
16349
  user_id?: string | undefined;
16333
- display_name?: string | undefined;
16334
16350
  action?: number | undefined;
16335
16351
  is_publisher?: boolean | undefined;
16336
16352
  } & { [K_1 in Exclude<keyof I_1, keyof StreamHttpCallbackRequest>]: never; }>(object: I_1): StreamHttpCallbackRequest;
@@ -22029,17 +22045,17 @@ export declare const ListSdTopicRequest: {
22029
22045
  fromJSON(object: any): ListSdTopicRequest;
22030
22046
  toJSON(message: ListSdTopicRequest): unknown;
22031
22047
  create<I extends {
22032
- channel_id?: string | undefined;
22048
+ clan_id?: string | undefined;
22033
22049
  limit?: number | undefined;
22034
22050
  } & {
22035
- channel_id?: string | undefined;
22051
+ clan_id?: string | undefined;
22036
22052
  limit?: number | undefined;
22037
22053
  } & { [K in Exclude<keyof I, keyof ListSdTopicRequest>]: never; }>(base?: I | undefined): ListSdTopicRequest;
22038
22054
  fromPartial<I_1 extends {
22039
- channel_id?: string | undefined;
22055
+ clan_id?: string | undefined;
22040
22056
  limit?: number | undefined;
22041
22057
  } & {
22042
- channel_id?: string | undefined;
22058
+ clan_id?: string | undefined;
22043
22059
  limit?: number | undefined;
22044
22060
  } & { [K_1 in Exclude<keyof I_1, keyof ListSdTopicRequest>]: never; }>(object: I_1): ListSdTopicRequest;
22045
22061
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js-protobuf",
3
- "version": "1.6.73",
3
+ "version": "1.6.75",
4
4
  "description": "Websocket adapter adding protocol buffer support to the Mezon Javascript client.",
5
5
  "main": "dist/mezon-js-protobuf.cjs.js",
6
6
  "module": "dist/mezon-js-protobuf.esm.mjs",