mezon-js-protobuf 1.5.41 → 1.5.42

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
@@ -358,6 +358,10 @@ export interface SessionLogoutRequest {
358
358
  token: string;
359
359
  /** Refresh token to invalidate. */
360
360
  refresh_token: string;
361
+ /** Device Id */
362
+ device_id: string;
363
+ /** FCM token from firebase */
364
+ fcm_token: string;
361
365
  }
362
366
 
363
367
  /** Authenticate against the server with Apple Sign In. */
@@ -1707,6 +1711,16 @@ export interface CategoryDesc {
1707
1711
  category_id: string;
1708
1712
  }
1709
1713
 
1714
+ export interface UpdateCategoryOrderRequest {
1715
+ clan_id: string;
1716
+ categories: CategoryOrderUpdate[];
1717
+ }
1718
+
1719
+ export interface CategoryOrderUpdate {
1720
+ category_id: string;
1721
+ order: number;
1722
+ }
1723
+
1710
1724
  export interface CreateCategoryDescRequest {
1711
1725
  category_name: string;
1712
1726
  clan_id: string;
@@ -1791,7 +1805,7 @@ export interface ChannelDescription {
1791
1805
  | ChannelMessageHeader
1792
1806
  | undefined;
1793
1807
  /** status */
1794
- status: number;
1808
+ is_online: boolean[];
1795
1809
  /** meeting code */
1796
1810
  meeting_code: string;
1797
1811
  /** count message unread */
@@ -4557,7 +4571,7 @@ export const SessionRefreshRequest_VarsEntry = {
4557
4571
  };
4558
4572
 
4559
4573
  function createBaseSessionLogoutRequest(): SessionLogoutRequest {
4560
- return { token: "", refresh_token: "" };
4574
+ return { token: "", refresh_token: "", device_id: "", fcm_token: "" };
4561
4575
  }
4562
4576
 
4563
4577
  export const SessionLogoutRequest = {
@@ -4568,6 +4582,12 @@ export const SessionLogoutRequest = {
4568
4582
  if (message.refresh_token !== "") {
4569
4583
  writer.uint32(18).string(message.refresh_token);
4570
4584
  }
4585
+ if (message.device_id !== "") {
4586
+ writer.uint32(26).string(message.device_id);
4587
+ }
4588
+ if (message.fcm_token !== "") {
4589
+ writer.uint32(34).string(message.fcm_token);
4590
+ }
4571
4591
  return writer;
4572
4592
  },
4573
4593
 
@@ -4584,6 +4604,12 @@ export const SessionLogoutRequest = {
4584
4604
  case 2:
4585
4605
  message.refresh_token = reader.string();
4586
4606
  break;
4607
+ case 3:
4608
+ message.device_id = reader.string();
4609
+ break;
4610
+ case 4:
4611
+ message.fcm_token = reader.string();
4612
+ break;
4587
4613
  default:
4588
4614
  reader.skipType(tag & 7);
4589
4615
  break;
@@ -4596,6 +4622,8 @@ export const SessionLogoutRequest = {
4596
4622
  return {
4597
4623
  token: isSet(object.token) ? String(object.token) : "",
4598
4624
  refresh_token: isSet(object.refresh_token) ? String(object.refresh_token) : "",
4625
+ device_id: isSet(object.device_id) ? String(object.device_id) : "",
4626
+ fcm_token: isSet(object.fcm_token) ? String(object.fcm_token) : "",
4599
4627
  };
4600
4628
  },
4601
4629
 
@@ -4603,6 +4631,8 @@ export const SessionLogoutRequest = {
4603
4631
  const obj: any = {};
4604
4632
  message.token !== undefined && (obj.token = message.token);
4605
4633
  message.refresh_token !== undefined && (obj.refresh_token = message.refresh_token);
4634
+ message.device_id !== undefined && (obj.device_id = message.device_id);
4635
+ message.fcm_token !== undefined && (obj.fcm_token = message.fcm_token);
4606
4636
  return obj;
4607
4637
  },
4608
4638
 
@@ -4614,6 +4644,8 @@ export const SessionLogoutRequest = {
4614
4644
  const message = createBaseSessionLogoutRequest();
4615
4645
  message.token = object.token ?? "";
4616
4646
  message.refresh_token = object.refresh_token ?? "";
4647
+ message.device_id = object.device_id ?? "";
4648
+ message.fcm_token = object.fcm_token ?? "";
4617
4649
  return message;
4618
4650
  },
4619
4651
  };
@@ -11984,6 +12016,136 @@ export const CategoryDesc = {
11984
12016
  },
11985
12017
  };
11986
12018
 
12019
+ function createBaseUpdateCategoryOrderRequest(): UpdateCategoryOrderRequest {
12020
+ return { clan_id: "", categories: [] };
12021
+ }
12022
+
12023
+ export const UpdateCategoryOrderRequest = {
12024
+ encode(message: UpdateCategoryOrderRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
12025
+ if (message.clan_id !== "") {
12026
+ writer.uint32(10).string(message.clan_id);
12027
+ }
12028
+ for (const v of message.categories) {
12029
+ CategoryOrderUpdate.encode(v!, writer.uint32(18).fork()).ldelim();
12030
+ }
12031
+ return writer;
12032
+ },
12033
+
12034
+ decode(input: _m0.Reader | Uint8Array, length?: number): UpdateCategoryOrderRequest {
12035
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
12036
+ let end = length === undefined ? reader.len : reader.pos + length;
12037
+ const message = createBaseUpdateCategoryOrderRequest();
12038
+ while (reader.pos < end) {
12039
+ const tag = reader.uint32();
12040
+ switch (tag >>> 3) {
12041
+ case 1:
12042
+ message.clan_id = reader.string();
12043
+ break;
12044
+ case 2:
12045
+ message.categories.push(CategoryOrderUpdate.decode(reader, reader.uint32()));
12046
+ break;
12047
+ default:
12048
+ reader.skipType(tag & 7);
12049
+ break;
12050
+ }
12051
+ }
12052
+ return message;
12053
+ },
12054
+
12055
+ fromJSON(object: any): UpdateCategoryOrderRequest {
12056
+ return {
12057
+ clan_id: isSet(object.clan_id) ? String(object.clan_id) : "",
12058
+ categories: Array.isArray(object?.categories)
12059
+ ? object.categories.map((e: any) => CategoryOrderUpdate.fromJSON(e))
12060
+ : [],
12061
+ };
12062
+ },
12063
+
12064
+ toJSON(message: UpdateCategoryOrderRequest): unknown {
12065
+ const obj: any = {};
12066
+ message.clan_id !== undefined && (obj.clan_id = message.clan_id);
12067
+ if (message.categories) {
12068
+ obj.categories = message.categories.map((e) => e ? CategoryOrderUpdate.toJSON(e) : undefined);
12069
+ } else {
12070
+ obj.categories = [];
12071
+ }
12072
+ return obj;
12073
+ },
12074
+
12075
+ create<I extends Exact<DeepPartial<UpdateCategoryOrderRequest>, I>>(base?: I): UpdateCategoryOrderRequest {
12076
+ return UpdateCategoryOrderRequest.fromPartial(base ?? {});
12077
+ },
12078
+
12079
+ fromPartial<I extends Exact<DeepPartial<UpdateCategoryOrderRequest>, I>>(object: I): UpdateCategoryOrderRequest {
12080
+ const message = createBaseUpdateCategoryOrderRequest();
12081
+ message.clan_id = object.clan_id ?? "";
12082
+ message.categories = object.categories?.map((e) => CategoryOrderUpdate.fromPartial(e)) || [];
12083
+ return message;
12084
+ },
12085
+ };
12086
+
12087
+ function createBaseCategoryOrderUpdate(): CategoryOrderUpdate {
12088
+ return { category_id: "", order: 0 };
12089
+ }
12090
+
12091
+ export const CategoryOrderUpdate = {
12092
+ encode(message: CategoryOrderUpdate, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
12093
+ if (message.category_id !== "") {
12094
+ writer.uint32(10).string(message.category_id);
12095
+ }
12096
+ if (message.order !== 0) {
12097
+ writer.uint32(16).int32(message.order);
12098
+ }
12099
+ return writer;
12100
+ },
12101
+
12102
+ decode(input: _m0.Reader | Uint8Array, length?: number): CategoryOrderUpdate {
12103
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
12104
+ let end = length === undefined ? reader.len : reader.pos + length;
12105
+ const message = createBaseCategoryOrderUpdate();
12106
+ while (reader.pos < end) {
12107
+ const tag = reader.uint32();
12108
+ switch (tag >>> 3) {
12109
+ case 1:
12110
+ message.category_id = reader.string();
12111
+ break;
12112
+ case 2:
12113
+ message.order = reader.int32();
12114
+ break;
12115
+ default:
12116
+ reader.skipType(tag & 7);
12117
+ break;
12118
+ }
12119
+ }
12120
+ return message;
12121
+ },
12122
+
12123
+ fromJSON(object: any): CategoryOrderUpdate {
12124
+ return {
12125
+ category_id: isSet(object.category_id) ? String(object.category_id) : "",
12126
+ order: isSet(object.order) ? Number(object.order) : 0,
12127
+ };
12128
+ },
12129
+
12130
+ toJSON(message: CategoryOrderUpdate): unknown {
12131
+ const obj: any = {};
12132
+ message.category_id !== undefined && (obj.category_id = message.category_id);
12133
+ message.order !== undefined && (obj.order = Math.round(message.order));
12134
+ return obj;
12135
+ },
12136
+
12137
+ create<I extends Exact<DeepPartial<CategoryOrderUpdate>, I>>(base?: I): CategoryOrderUpdate {
12138
+ return CategoryOrderUpdate.fromPartial(base ?? {});
12139
+ },
12140
+
12141
+ fromPartial<I extends Exact<DeepPartial<CategoryOrderUpdate>, I>>(object: I): CategoryOrderUpdate {
12142
+ const message = createBaseCategoryOrderUpdate();
12143
+ message.category_id = object.category_id ?? "";
12144
+ message.order = object.order ?? 0;
12145
+ return message;
12146
+ },
12147
+ };
12148
+
11987
12149
  function createBaseCreateCategoryDescRequest(): CreateCategoryDescRequest {
11988
12150
  return { category_name: "", clan_id: "" };
11989
12151
  }
@@ -12378,7 +12540,7 @@ function createBaseChannelDescription(): ChannelDescription {
12378
12540
  user_id: [],
12379
12541
  last_sent_message: undefined,
12380
12542
  last_seen_message: undefined,
12381
- status: 0,
12543
+ is_online: [],
12382
12544
  meeting_code: "",
12383
12545
  count_mess_unread: 0,
12384
12546
  active: 0,
@@ -12431,9 +12593,11 @@ export const ChannelDescription = {
12431
12593
  if (message.last_seen_message !== undefined) {
12432
12594
  ChannelMessageHeader.encode(message.last_seen_message, writer.uint32(106).fork()).ldelim();
12433
12595
  }
12434
- if (message.status !== 0) {
12435
- writer.uint32(112).int32(message.status);
12596
+ writer.uint32(114).fork();
12597
+ for (const v of message.is_online) {
12598
+ writer.bool(v);
12436
12599
  }
12600
+ writer.ldelim();
12437
12601
  if (message.meeting_code !== "") {
12438
12602
  writer.uint32(122).string(message.meeting_code);
12439
12603
  }
@@ -12508,7 +12672,14 @@ export const ChannelDescription = {
12508
12672
  message.last_seen_message = ChannelMessageHeader.decode(reader, reader.uint32());
12509
12673
  break;
12510
12674
  case 14:
12511
- message.status = reader.int32();
12675
+ if ((tag & 7) === 2) {
12676
+ const end2 = reader.uint32() + reader.pos;
12677
+ while (reader.pos < end2) {
12678
+ message.is_online.push(reader.bool());
12679
+ }
12680
+ } else {
12681
+ message.is_online.push(reader.bool());
12682
+ }
12512
12683
  break;
12513
12684
  case 15:
12514
12685
  message.meeting_code = reader.string();
@@ -12561,7 +12732,7 @@ export const ChannelDescription = {
12561
12732
  last_seen_message: isSet(object.last_seen_message)
12562
12733
  ? ChannelMessageHeader.fromJSON(object.last_seen_message)
12563
12734
  : undefined,
12564
- status: isSet(object.status) ? Number(object.status) : 0,
12735
+ is_online: Array.isArray(object?.is_online) ? object.is_online.map((e: any) => Boolean(e)) : [],
12565
12736
  meeting_code: isSet(object.meeting_code) ? String(object.meeting_code) : "",
12566
12737
  count_mess_unread: isSet(object.count_mess_unread) ? Number(object.count_mess_unread) : 0,
12567
12738
  active: isSet(object.active) ? Number(object.active) : 0,
@@ -12600,7 +12771,11 @@ export const ChannelDescription = {
12600
12771
  message.last_seen_message !== undefined && (obj.last_seen_message = message.last_seen_message
12601
12772
  ? ChannelMessageHeader.toJSON(message.last_seen_message)
12602
12773
  : undefined);
12603
- message.status !== undefined && (obj.status = Math.round(message.status));
12774
+ if (message.is_online) {
12775
+ obj.is_online = message.is_online.map((e) => e);
12776
+ } else {
12777
+ obj.is_online = [];
12778
+ }
12604
12779
  message.meeting_code !== undefined && (obj.meeting_code = message.meeting_code);
12605
12780
  message.count_mess_unread !== undefined && (obj.count_mess_unread = Math.round(message.count_mess_unread));
12606
12781
  message.active !== undefined && (obj.active = Math.round(message.active));
@@ -12635,7 +12810,7 @@ export const ChannelDescription = {
12635
12810
  message.last_seen_message = (object.last_seen_message !== undefined && object.last_seen_message !== null)
12636
12811
  ? ChannelMessageHeader.fromPartial(object.last_seen_message)
12637
12812
  : undefined;
12638
- message.status = object.status ?? 0;
12813
+ message.is_online = object.is_online?.map((e) => e) || [];
12639
12814
  message.meeting_code = object.meeting_code ?? "";
12640
12815
  message.count_mess_unread = object.count_mess_unread ?? 0;
12641
12816
  message.active = object.active ?? 0;
@@ -235,6 +235,10 @@ export interface SessionLogoutRequest {
235
235
  token: string;
236
236
  /** Refresh token to invalidate. */
237
237
  refresh_token: string;
238
+ /** Device Id */
239
+ device_id: string;
240
+ /** FCM token from firebase */
241
+ fcm_token: string;
238
242
  }
239
243
  /** Authenticate against the server with Apple Sign In. */
240
244
  export interface AuthenticateAppleRequest {
@@ -1257,6 +1261,14 @@ export interface CategoryDesc {
1257
1261
  category_name: string;
1258
1262
  category_id: string;
1259
1263
  }
1264
+ export interface UpdateCategoryOrderRequest {
1265
+ clan_id: string;
1266
+ categories: CategoryOrderUpdate[];
1267
+ }
1268
+ export interface CategoryOrderUpdate {
1269
+ category_id: string;
1270
+ order: number;
1271
+ }
1260
1272
  export interface CreateCategoryDescRequest {
1261
1273
  category_name: string;
1262
1274
  clan_id: string;
@@ -1326,7 +1338,7 @@ export interface ChannelDescription {
1326
1338
  /** last seen message id */
1327
1339
  last_seen_message: ChannelMessageHeader | undefined;
1328
1340
  /** status */
1329
- status: number;
1341
+ is_online: boolean[];
1330
1342
  /** meeting code */
1331
1343
  meeting_code: string;
1332
1344
  /** count message unread */
@@ -2981,16 +2993,24 @@ export declare const SessionLogoutRequest: {
2981
2993
  create<I extends {
2982
2994
  token?: string | undefined;
2983
2995
  refresh_token?: string | undefined;
2996
+ device_id?: string | undefined;
2997
+ fcm_token?: string | undefined;
2984
2998
  } & {
2985
2999
  token?: string | undefined;
2986
3000
  refresh_token?: string | undefined;
3001
+ device_id?: string | undefined;
3002
+ fcm_token?: string | undefined;
2987
3003
  } & { [K in Exclude<keyof I, keyof SessionLogoutRequest>]: never; }>(base?: I | undefined): SessionLogoutRequest;
2988
3004
  fromPartial<I_1 extends {
2989
3005
  token?: string | undefined;
2990
3006
  refresh_token?: string | undefined;
3007
+ device_id?: string | undefined;
3008
+ fcm_token?: string | undefined;
2991
3009
  } & {
2992
3010
  token?: string | undefined;
2993
3011
  refresh_token?: string | undefined;
3012
+ device_id?: string | undefined;
3013
+ fcm_token?: string | undefined;
2994
3014
  } & { [K_1 in Exclude<keyof I_1, keyof SessionLogoutRequest>]: never; }>(object: I_1): SessionLogoutRequest;
2995
3015
  };
2996
3016
  export declare const AuthenticateAppleRequest: {
@@ -8913,6 +8933,76 @@ export declare const CategoryDesc: {
8913
8933
  category_id?: string | undefined;
8914
8934
  } & { [K_1 in Exclude<keyof I_1, keyof CategoryDesc>]: never; }>(object: I_1): CategoryDesc;
8915
8935
  };
8936
+ export declare const UpdateCategoryOrderRequest: {
8937
+ encode(message: UpdateCategoryOrderRequest, writer?: _m0.Writer): _m0.Writer;
8938
+ decode(input: _m0.Reader | Uint8Array, length?: number): UpdateCategoryOrderRequest;
8939
+ fromJSON(object: any): UpdateCategoryOrderRequest;
8940
+ toJSON(message: UpdateCategoryOrderRequest): unknown;
8941
+ create<I extends {
8942
+ clan_id?: string | undefined;
8943
+ categories?: {
8944
+ category_id?: string | undefined;
8945
+ order?: number | undefined;
8946
+ }[] | undefined;
8947
+ } & {
8948
+ clan_id?: string | undefined;
8949
+ categories?: ({
8950
+ category_id?: string | undefined;
8951
+ order?: number | undefined;
8952
+ }[] & ({
8953
+ category_id?: string | undefined;
8954
+ order?: number | undefined;
8955
+ } & {
8956
+ category_id?: string | undefined;
8957
+ order?: number | undefined;
8958
+ } & { [K in Exclude<keyof I["categories"][number], keyof CategoryOrderUpdate>]: never; })[] & { [K_1 in Exclude<keyof I["categories"], keyof {
8959
+ category_id?: string | undefined;
8960
+ order?: number | undefined;
8961
+ }[]>]: never; }) | undefined;
8962
+ } & { [K_2 in Exclude<keyof I, keyof UpdateCategoryOrderRequest>]: never; }>(base?: I | undefined): UpdateCategoryOrderRequest;
8963
+ fromPartial<I_1 extends {
8964
+ clan_id?: string | undefined;
8965
+ categories?: {
8966
+ category_id?: string | undefined;
8967
+ order?: number | undefined;
8968
+ }[] | undefined;
8969
+ } & {
8970
+ clan_id?: string | undefined;
8971
+ categories?: ({
8972
+ category_id?: string | undefined;
8973
+ order?: number | undefined;
8974
+ }[] & ({
8975
+ category_id?: string | undefined;
8976
+ order?: number | undefined;
8977
+ } & {
8978
+ category_id?: string | undefined;
8979
+ order?: number | undefined;
8980
+ } & { [K_3 in Exclude<keyof I_1["categories"][number], keyof CategoryOrderUpdate>]: never; })[] & { [K_4 in Exclude<keyof I_1["categories"], keyof {
8981
+ category_id?: string | undefined;
8982
+ order?: number | undefined;
8983
+ }[]>]: never; }) | undefined;
8984
+ } & { [K_5 in Exclude<keyof I_1, keyof UpdateCategoryOrderRequest>]: never; }>(object: I_1): UpdateCategoryOrderRequest;
8985
+ };
8986
+ export declare const CategoryOrderUpdate: {
8987
+ encode(message: CategoryOrderUpdate, writer?: _m0.Writer): _m0.Writer;
8988
+ decode(input: _m0.Reader | Uint8Array, length?: number): CategoryOrderUpdate;
8989
+ fromJSON(object: any): CategoryOrderUpdate;
8990
+ toJSON(message: CategoryOrderUpdate): unknown;
8991
+ create<I extends {
8992
+ category_id?: string | undefined;
8993
+ order?: number | undefined;
8994
+ } & {
8995
+ category_id?: string | undefined;
8996
+ order?: number | undefined;
8997
+ } & { [K in Exclude<keyof I, keyof CategoryOrderUpdate>]: never; }>(base?: I | undefined): CategoryOrderUpdate;
8998
+ fromPartial<I_1 extends {
8999
+ category_id?: string | undefined;
9000
+ order?: number | undefined;
9001
+ } & {
9002
+ category_id?: string | undefined;
9003
+ order?: number | undefined;
9004
+ } & { [K_1 in Exclude<keyof I_1, keyof CategoryOrderUpdate>]: never; }>(object: I_1): CategoryOrderUpdate;
9005
+ };
8916
9006
  export declare const CreateCategoryDescRequest: {
8917
9007
  encode(message: CreateCategoryDescRequest, writer?: _m0.Writer): _m0.Writer;
8918
9008
  decode(input: _m0.Reader | Uint8Array, length?: number): CreateCategoryDescRequest;
@@ -9124,7 +9214,7 @@ export declare const ChannelDescription: {
9124
9214
  mention?: string | undefined;
9125
9215
  reaction?: string | undefined;
9126
9216
  } | undefined;
9127
- status?: number | undefined;
9217
+ is_online?: boolean[] | undefined;
9128
9218
  meeting_code?: string | undefined;
9129
9219
  count_mess_unread?: number | undefined;
9130
9220
  active?: number | undefined;
@@ -9183,7 +9273,7 @@ export declare const ChannelDescription: {
9183
9273
  mention?: string | undefined;
9184
9274
  reaction?: string | undefined;
9185
9275
  } & { [K_3 in Exclude<keyof I["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9186
- status?: number | undefined;
9276
+ is_online?: (boolean[] & boolean[] & { [K_4 in Exclude<keyof I["is_online"], keyof boolean[]>]: never; }) | undefined;
9187
9277
  meeting_code?: string | undefined;
9188
9278
  count_mess_unread?: number | undefined;
9189
9279
  active?: number | undefined;
@@ -9192,7 +9282,7 @@ export declare const ChannelDescription: {
9192
9282
  creator_name?: string | undefined;
9193
9283
  create_time_seconds?: number | undefined;
9194
9284
  update_time_seconds?: number | undefined;
9195
- } & { [K_4 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
9285
+ } & { [K_5 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
9196
9286
  fromPartial<I_1 extends {
9197
9287
  clan_id?: string | undefined;
9198
9288
  parrent_id?: string | undefined;
@@ -9225,7 +9315,7 @@ export declare const ChannelDescription: {
9225
9315
  mention?: string | undefined;
9226
9316
  reaction?: string | undefined;
9227
9317
  } | undefined;
9228
- status?: number | undefined;
9318
+ is_online?: boolean[] | undefined;
9229
9319
  meeting_code?: string | undefined;
9230
9320
  count_mess_unread?: number | undefined;
9231
9321
  active?: number | undefined;
@@ -9244,8 +9334,8 @@ export declare const ChannelDescription: {
9244
9334
  creator_id?: string | undefined;
9245
9335
  channel_label?: string | undefined;
9246
9336
  channel_private?: number | undefined;
9247
- channel_avatar?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["channel_avatar"], keyof string[]>]: never; }) | undefined;
9248
- user_id?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["user_id"], keyof string[]>]: never; }) | undefined;
9337
+ channel_avatar?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["channel_avatar"], keyof string[]>]: never; }) | undefined;
9338
+ user_id?: (string[] & string[] & { [K_7 in Exclude<keyof I_1["user_id"], keyof string[]>]: never; }) | undefined;
9249
9339
  last_sent_message?: ({
9250
9340
  id?: string | undefined;
9251
9341
  timestamp_seconds?: number | undefined;
@@ -9264,7 +9354,7 @@ export declare const ChannelDescription: {
9264
9354
  referece?: string | undefined;
9265
9355
  mention?: string | undefined;
9266
9356
  reaction?: string | undefined;
9267
- } & { [K_7 in Exclude<keyof I_1["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9357
+ } & { [K_8 in Exclude<keyof I_1["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9268
9358
  last_seen_message?: ({
9269
9359
  id?: string | undefined;
9270
9360
  timestamp_seconds?: number | undefined;
@@ -9283,8 +9373,8 @@ export declare const ChannelDescription: {
9283
9373
  referece?: string | undefined;
9284
9374
  mention?: string | undefined;
9285
9375
  reaction?: string | undefined;
9286
- } & { [K_8 in Exclude<keyof I_1["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9287
- status?: number | undefined;
9376
+ } & { [K_9 in Exclude<keyof I_1["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9377
+ is_online?: (boolean[] & boolean[] & { [K_10 in Exclude<keyof I_1["is_online"], keyof boolean[]>]: never; }) | undefined;
9288
9378
  meeting_code?: string | undefined;
9289
9379
  count_mess_unread?: number | undefined;
9290
9380
  active?: number | undefined;
@@ -9293,7 +9383,7 @@ export declare const ChannelDescription: {
9293
9383
  creator_name?: string | undefined;
9294
9384
  create_time_seconds?: number | undefined;
9295
9385
  update_time_seconds?: number | undefined;
9296
- } & { [K_9 in Exclude<keyof I_1, keyof ChannelDescription>]: never; }>(object: I_1): ChannelDescription;
9386
+ } & { [K_11 in Exclude<keyof I_1, keyof ChannelDescription>]: never; }>(object: I_1): ChannelDescription;
9297
9387
  };
9298
9388
  export declare const ChannelDescList: {
9299
9389
  encode(message: ChannelDescList, writer?: _m0.Writer): _m0.Writer;
@@ -9333,7 +9423,7 @@ export declare const ChannelDescList: {
9333
9423
  mention?: string | undefined;
9334
9424
  reaction?: string | undefined;
9335
9425
  } | undefined;
9336
- status?: number | undefined;
9426
+ is_online?: boolean[] | undefined;
9337
9427
  meeting_code?: string | undefined;
9338
9428
  count_mess_unread?: number | undefined;
9339
9429
  active?: number | undefined;
@@ -9379,7 +9469,7 @@ export declare const ChannelDescList: {
9379
9469
  mention?: string | undefined;
9380
9470
  reaction?: string | undefined;
9381
9471
  } | undefined;
9382
- status?: number | undefined;
9472
+ is_online?: boolean[] | undefined;
9383
9473
  meeting_code?: string | undefined;
9384
9474
  count_mess_unread?: number | undefined;
9385
9475
  active?: number | undefined;
@@ -9420,7 +9510,7 @@ export declare const ChannelDescList: {
9420
9510
  mention?: string | undefined;
9421
9511
  reaction?: string | undefined;
9422
9512
  } | undefined;
9423
- status?: number | undefined;
9513
+ is_online?: boolean[] | undefined;
9424
9514
  meeting_code?: string | undefined;
9425
9515
  count_mess_unread?: number | undefined;
9426
9516
  active?: number | undefined;
@@ -9479,7 +9569,7 @@ export declare const ChannelDescList: {
9479
9569
  mention?: string | undefined;
9480
9570
  reaction?: string | undefined;
9481
9571
  } & { [K_3 in Exclude<keyof I["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9482
- status?: number | undefined;
9572
+ is_online?: (boolean[] & boolean[] & { [K_4 in Exclude<keyof I["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
9483
9573
  meeting_code?: string | undefined;
9484
9574
  count_mess_unread?: number | undefined;
9485
9575
  active?: number | undefined;
@@ -9488,7 +9578,7 @@ export declare const ChannelDescList: {
9488
9578
  creator_name?: string | undefined;
9489
9579
  create_time_seconds?: number | undefined;
9490
9580
  update_time_seconds?: number | undefined;
9491
- } & { [K_4 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_5 in Exclude<keyof I["channeldesc"], keyof {
9581
+ } & { [K_5 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_6 in Exclude<keyof I["channeldesc"], keyof {
9492
9582
  clan_id?: string | undefined;
9493
9583
  parrent_id?: string | undefined;
9494
9584
  channel_id?: string | undefined;
@@ -9520,7 +9610,7 @@ export declare const ChannelDescList: {
9520
9610
  mention?: string | undefined;
9521
9611
  reaction?: string | undefined;
9522
9612
  } | undefined;
9523
- status?: number | undefined;
9613
+ is_online?: boolean[] | undefined;
9524
9614
  meeting_code?: string | undefined;
9525
9615
  count_mess_unread?: number | undefined;
9526
9616
  active?: number | undefined;
@@ -9533,7 +9623,7 @@ export declare const ChannelDescList: {
9533
9623
  next_cursor?: string | undefined;
9534
9624
  prev_cursor?: string | undefined;
9535
9625
  cacheable_cursor?: string | undefined;
9536
- } & { [K_6 in Exclude<keyof I, keyof ChannelDescList>]: never; }>(base?: I | undefined): ChannelDescList;
9626
+ } & { [K_7 in Exclude<keyof I, keyof ChannelDescList>]: never; }>(base?: I | undefined): ChannelDescList;
9537
9627
  fromPartial<I_1 extends {
9538
9628
  channeldesc?: {
9539
9629
  clan_id?: string | undefined;
@@ -9567,7 +9657,7 @@ export declare const ChannelDescList: {
9567
9657
  mention?: string | undefined;
9568
9658
  reaction?: string | undefined;
9569
9659
  } | undefined;
9570
- status?: number | undefined;
9660
+ is_online?: boolean[] | undefined;
9571
9661
  meeting_code?: string | undefined;
9572
9662
  count_mess_unread?: number | undefined;
9573
9663
  active?: number | undefined;
@@ -9613,7 +9703,7 @@ export declare const ChannelDescList: {
9613
9703
  mention?: string | undefined;
9614
9704
  reaction?: string | undefined;
9615
9705
  } | undefined;
9616
- status?: number | undefined;
9706
+ is_online?: boolean[] | undefined;
9617
9707
  meeting_code?: string | undefined;
9618
9708
  count_mess_unread?: number | undefined;
9619
9709
  active?: number | undefined;
@@ -9654,7 +9744,7 @@ export declare const ChannelDescList: {
9654
9744
  mention?: string | undefined;
9655
9745
  reaction?: string | undefined;
9656
9746
  } | undefined;
9657
- status?: number | undefined;
9747
+ is_online?: boolean[] | undefined;
9658
9748
  meeting_code?: string | undefined;
9659
9749
  count_mess_unread?: number | undefined;
9660
9750
  active?: number | undefined;
@@ -9673,8 +9763,8 @@ export declare const ChannelDescList: {
9673
9763
  creator_id?: string | undefined;
9674
9764
  channel_label?: string | undefined;
9675
9765
  channel_private?: number | undefined;
9676
- channel_avatar?: (string[] & string[] & { [K_7 in Exclude<keyof I_1["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
9677
- user_id?: (string[] & string[] & { [K_8 in Exclude<keyof I_1["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
9766
+ channel_avatar?: (string[] & string[] & { [K_8 in Exclude<keyof I_1["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
9767
+ user_id?: (string[] & string[] & { [K_9 in Exclude<keyof I_1["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
9678
9768
  last_sent_message?: ({
9679
9769
  id?: string | undefined;
9680
9770
  timestamp_seconds?: number | undefined;
@@ -9693,7 +9783,7 @@ export declare const ChannelDescList: {
9693
9783
  referece?: string | undefined;
9694
9784
  mention?: string | undefined;
9695
9785
  reaction?: string | undefined;
9696
- } & { [K_9 in Exclude<keyof I_1["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9786
+ } & { [K_10 in Exclude<keyof I_1["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9697
9787
  last_seen_message?: ({
9698
9788
  id?: string | undefined;
9699
9789
  timestamp_seconds?: number | undefined;
@@ -9712,8 +9802,8 @@ export declare const ChannelDescList: {
9712
9802
  referece?: string | undefined;
9713
9803
  mention?: string | undefined;
9714
9804
  reaction?: string | undefined;
9715
- } & { [K_10 in Exclude<keyof I_1["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9716
- status?: number | undefined;
9805
+ } & { [K_11 in Exclude<keyof I_1["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
9806
+ is_online?: (boolean[] & boolean[] & { [K_12 in Exclude<keyof I_1["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
9717
9807
  meeting_code?: string | undefined;
9718
9808
  count_mess_unread?: number | undefined;
9719
9809
  active?: number | undefined;
@@ -9722,7 +9812,7 @@ export declare const ChannelDescList: {
9722
9812
  creator_name?: string | undefined;
9723
9813
  create_time_seconds?: number | undefined;
9724
9814
  update_time_seconds?: number | undefined;
9725
- } & { [K_11 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_12 in Exclude<keyof I_1["channeldesc"], keyof {
9815
+ } & { [K_13 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_14 in Exclude<keyof I_1["channeldesc"], keyof {
9726
9816
  clan_id?: string | undefined;
9727
9817
  parrent_id?: string | undefined;
9728
9818
  channel_id?: string | undefined;
@@ -9754,7 +9844,7 @@ export declare const ChannelDescList: {
9754
9844
  mention?: string | undefined;
9755
9845
  reaction?: string | undefined;
9756
9846
  } | undefined;
9757
- status?: number | undefined;
9847
+ is_online?: boolean[] | undefined;
9758
9848
  meeting_code?: string | undefined;
9759
9849
  count_mess_unread?: number | undefined;
9760
9850
  active?: number | undefined;
@@ -9767,7 +9857,7 @@ export declare const ChannelDescList: {
9767
9857
  next_cursor?: string | undefined;
9768
9858
  prev_cursor?: string | undefined;
9769
9859
  cacheable_cursor?: string | undefined;
9770
- } & { [K_13 in Exclude<keyof I_1, keyof ChannelDescList>]: never; }>(object: I_1): ChannelDescList;
9860
+ } & { [K_15 in Exclude<keyof I_1, keyof ChannelDescList>]: never; }>(object: I_1): ChannelDescList;
9771
9861
  };
9772
9862
  export declare const ListChannelDescsRequest: {
9773
9863
  encode(message: ListChannelDescsRequest, writer?: _m0.Writer): _m0.Writer;