mezon-js-protobuf 1.8.80 → 1.8.81

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
@@ -346,7 +346,7 @@ export interface MessageMention {
346
346
  /** role name */
347
347
  rolename: string;
348
348
  /** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the message was created. */
349
- create_time_second: number;
349
+ create_time_seconds: number;
350
350
  /** start position from text */
351
351
  s: number;
352
352
  /** end position from text */
@@ -3116,7 +3116,7 @@ export interface LoginIDResponse {
3116
3116
  /** status login */
3117
3117
  status: number;
3118
3118
  /** create time */
3119
- create_time_second: number;
3119
+ create_time_seconds: number;
3120
3120
  /** platform */
3121
3121
  platform: string;
3122
3122
  /** user_id */
@@ -3740,12 +3740,16 @@ export interface DirectFcmProto {
3740
3740
  sender_id: string;
3741
3741
  avatar: string;
3742
3742
  clan_id: string;
3743
- attachments: Uint8Array;
3743
+ attachment_link: string;
3744
3744
  display_name: string;
3745
3745
  create_time_seconds: number;
3746
3746
  update_time_seconds: number;
3747
3747
  username: string;
3748
- mentions: Uint8Array;
3748
+ mention_ids: string[];
3749
+ position_s: number[];
3750
+ positiin_e: number[];
3751
+ attachment_type: string;
3752
+ has_more_attachment: boolean;
3749
3753
  }
3750
3754
 
3751
3755
  export interface MessageMentionList {
@@ -5386,7 +5390,7 @@ export const ChannelMessage = {
5386
5390
  };
5387
5391
 
5388
5392
  function createBaseMessageMention(): MessageMention {
5389
- return { id: "", user_id: "", username: "", role_id: "", rolename: "", create_time_second: 0, s: 0, e: 0 };
5393
+ return { id: "", user_id: "", username: "", role_id: "", rolename: "", create_time_seconds: 0, s: 0, e: 0 };
5390
5394
  }
5391
5395
 
5392
5396
  export const MessageMention = {
@@ -5406,8 +5410,8 @@ export const MessageMention = {
5406
5410
  if (message.rolename !== "") {
5407
5411
  writer.uint32(42).string(message.rolename);
5408
5412
  }
5409
- if (message.create_time_second !== 0) {
5410
- writer.uint32(48).uint32(message.create_time_second);
5413
+ if (message.create_time_seconds !== 0) {
5414
+ writer.uint32(48).uint32(message.create_time_seconds);
5411
5415
  }
5412
5416
  if (message.s !== 0) {
5413
5417
  writer.uint32(56).int32(message.s);
@@ -5465,7 +5469,7 @@ export const MessageMention = {
5465
5469
  break;
5466
5470
  }
5467
5471
 
5468
- message.create_time_second = reader.uint32();
5472
+ message.create_time_seconds = reader.uint32();
5469
5473
  continue;
5470
5474
  case 7:
5471
5475
  if (tag !== 56) {
@@ -5497,7 +5501,7 @@ export const MessageMention = {
5497
5501
  username: isSet(object.username) ? globalThis.String(object.username) : "",
5498
5502
  role_id: isSet(object.role_id) ? globalThis.String(object.role_id) : "",
5499
5503
  rolename: isSet(object.rolename) ? globalThis.String(object.rolename) : "",
5500
- create_time_second: isSet(object.create_time_second) ? globalThis.Number(object.create_time_second) : 0,
5504
+ create_time_seconds: isSet(object.create_time_seconds) ? globalThis.Number(object.create_time_seconds) : 0,
5501
5505
  s: isSet(object.s) ? globalThis.Number(object.s) : 0,
5502
5506
  e: isSet(object.e) ? globalThis.Number(object.e) : 0,
5503
5507
  };
@@ -5520,8 +5524,8 @@ export const MessageMention = {
5520
5524
  if (message.rolename !== "") {
5521
5525
  obj.rolename = message.rolename;
5522
5526
  }
5523
- if (message.create_time_second !== 0) {
5524
- obj.create_time_second = Math.round(message.create_time_second);
5527
+ if (message.create_time_seconds !== 0) {
5528
+ obj.create_time_seconds = Math.round(message.create_time_seconds);
5525
5529
  }
5526
5530
  if (message.s !== 0) {
5527
5531
  obj.s = Math.round(message.s);
@@ -5542,7 +5546,7 @@ export const MessageMention = {
5542
5546
  message.username = object.username ?? "";
5543
5547
  message.role_id = object.role_id ?? "";
5544
5548
  message.rolename = object.rolename ?? "";
5545
- message.create_time_second = object.create_time_second ?? 0;
5549
+ message.create_time_seconds = object.create_time_seconds ?? 0;
5546
5550
  message.s = object.s ?? 0;
5547
5551
  message.e = object.e ?? 0;
5548
5552
  return message;
@@ -31314,7 +31318,7 @@ export const CreateActivityRequest = {
31314
31318
  };
31315
31319
 
31316
31320
  function createBaseLoginIDResponse(): LoginIDResponse {
31317
- return { login_id: "", status: 0, create_time_second: 0, platform: "", user_id: 0, username: "", address: "" };
31321
+ return { login_id: "", status: 0, create_time_seconds: 0, platform: "", user_id: 0, username: "", address: "" };
31318
31322
  }
31319
31323
 
31320
31324
  export const LoginIDResponse = {
@@ -31325,8 +31329,8 @@ export const LoginIDResponse = {
31325
31329
  if (message.status !== 0) {
31326
31330
  writer.uint32(16).int32(message.status);
31327
31331
  }
31328
- if (message.create_time_second !== 0) {
31329
- writer.uint32(24).int64(message.create_time_second);
31332
+ if (message.create_time_seconds !== 0) {
31333
+ writer.uint32(24).int64(message.create_time_seconds);
31330
31334
  }
31331
31335
  if (message.platform !== "") {
31332
31336
  writer.uint32(34).string(message.platform);
@@ -31369,7 +31373,7 @@ export const LoginIDResponse = {
31369
31373
  break;
31370
31374
  }
31371
31375
 
31372
- message.create_time_second = longToNumber(reader.int64() as Long);
31376
+ message.create_time_seconds = longToNumber(reader.int64() as Long);
31373
31377
  continue;
31374
31378
  case 4:
31375
31379
  if (tag !== 34) {
@@ -31412,7 +31416,7 @@ export const LoginIDResponse = {
31412
31416
  return {
31413
31417
  login_id: isSet(object.login_id) ? globalThis.String(object.login_id) : "",
31414
31418
  status: isSet(object.status) ? globalThis.Number(object.status) : 0,
31415
- create_time_second: isSet(object.create_time_second) ? globalThis.Number(object.create_time_second) : 0,
31419
+ create_time_seconds: isSet(object.create_time_seconds) ? globalThis.Number(object.create_time_seconds) : 0,
31416
31420
  platform: isSet(object.platform) ? globalThis.String(object.platform) : "",
31417
31421
  user_id: isSet(object.user_id) ? globalThis.Number(object.user_id) : 0,
31418
31422
  username: isSet(object.username) ? globalThis.String(object.username) : "",
@@ -31428,8 +31432,8 @@ export const LoginIDResponse = {
31428
31432
  if (message.status !== 0) {
31429
31433
  obj.status = Math.round(message.status);
31430
31434
  }
31431
- if (message.create_time_second !== 0) {
31432
- obj.create_time_second = Math.round(message.create_time_second);
31435
+ if (message.create_time_seconds !== 0) {
31436
+ obj.create_time_seconds = Math.round(message.create_time_seconds);
31433
31437
  }
31434
31438
  if (message.platform !== "") {
31435
31439
  obj.platform = message.platform;
@@ -31453,7 +31457,7 @@ export const LoginIDResponse = {
31453
31457
  const message = createBaseLoginIDResponse();
31454
31458
  message.login_id = object.login_id ?? "";
31455
31459
  message.status = object.status ?? 0;
31456
- message.create_time_second = object.create_time_second ?? 0;
31460
+ message.create_time_seconds = object.create_time_seconds ?? 0;
31457
31461
  message.platform = object.platform ?? "";
31458
31462
  message.user_id = object.user_id ?? 0;
31459
31463
  message.username = object.username ?? "";
@@ -39045,12 +39049,16 @@ function createBaseDirectFcmProto(): DirectFcmProto {
39045
39049
  sender_id: "",
39046
39050
  avatar: "",
39047
39051
  clan_id: "",
39048
- attachments: new Uint8Array(0),
39052
+ attachment_link: "",
39049
39053
  display_name: "",
39050
39054
  create_time_seconds: 0,
39051
39055
  update_time_seconds: 0,
39052
39056
  username: "",
39053
- mentions: new Uint8Array(0),
39057
+ mention_ids: [],
39058
+ position_s: [],
39059
+ positiin_e: [],
39060
+ attachment_type: "",
39061
+ has_more_attachment: false,
39054
39062
  };
39055
39063
  }
39056
39064
 
@@ -39077,8 +39085,8 @@ export const DirectFcmProto = {
39077
39085
  if (message.clan_id !== "") {
39078
39086
  writer.uint32(58).string(message.clan_id);
39079
39087
  }
39080
- if (message.attachments.length !== 0) {
39081
- writer.uint32(66).bytes(message.attachments);
39088
+ if (message.attachment_link !== "") {
39089
+ writer.uint32(66).string(message.attachment_link);
39082
39090
  }
39083
39091
  if (message.display_name !== "") {
39084
39092
  writer.uint32(74).string(message.display_name);
@@ -39092,8 +39100,24 @@ export const DirectFcmProto = {
39092
39100
  if (message.username !== "") {
39093
39101
  writer.uint32(98).string(message.username);
39094
39102
  }
39095
- if (message.mentions.length !== 0) {
39096
- writer.uint32(106).bytes(message.mentions);
39103
+ for (const v of message.mention_ids) {
39104
+ writer.uint32(106).string(v!);
39105
+ }
39106
+ writer.uint32(114).fork();
39107
+ for (const v of message.position_s) {
39108
+ writer.int32(v);
39109
+ }
39110
+ writer.ldelim();
39111
+ writer.uint32(122).fork();
39112
+ for (const v of message.positiin_e) {
39113
+ writer.int32(v);
39114
+ }
39115
+ writer.ldelim();
39116
+ if (message.attachment_type !== "") {
39117
+ writer.uint32(130).string(message.attachment_type);
39118
+ }
39119
+ if (message.has_more_attachment !== false) {
39120
+ writer.uint32(136).bool(message.has_more_attachment);
39097
39121
  }
39098
39122
  return writer;
39099
39123
  },
@@ -39159,7 +39183,7 @@ export const DirectFcmProto = {
39159
39183
  break;
39160
39184
  }
39161
39185
 
39162
- message.attachments = reader.bytes();
39186
+ message.attachment_link = reader.string();
39163
39187
  continue;
39164
39188
  case 9:
39165
39189
  if (tag !== 74) {
@@ -39194,7 +39218,55 @@ export const DirectFcmProto = {
39194
39218
  break;
39195
39219
  }
39196
39220
 
39197
- message.mentions = reader.bytes();
39221
+ message.mention_ids.push(reader.string());
39222
+ continue;
39223
+ case 14:
39224
+ if (tag === 112) {
39225
+ message.position_s.push(reader.int32());
39226
+
39227
+ continue;
39228
+ }
39229
+
39230
+ if (tag === 114) {
39231
+ const end2 = reader.uint32() + reader.pos;
39232
+ while (reader.pos < end2) {
39233
+ message.position_s.push(reader.int32());
39234
+ }
39235
+
39236
+ continue;
39237
+ }
39238
+
39239
+ break;
39240
+ case 15:
39241
+ if (tag === 120) {
39242
+ message.positiin_e.push(reader.int32());
39243
+
39244
+ continue;
39245
+ }
39246
+
39247
+ if (tag === 122) {
39248
+ const end2 = reader.uint32() + reader.pos;
39249
+ while (reader.pos < end2) {
39250
+ message.positiin_e.push(reader.int32());
39251
+ }
39252
+
39253
+ continue;
39254
+ }
39255
+
39256
+ break;
39257
+ case 16:
39258
+ if (tag !== 130) {
39259
+ break;
39260
+ }
39261
+
39262
+ message.attachment_type = reader.string();
39263
+ continue;
39264
+ case 17:
39265
+ if (tag !== 136) {
39266
+ break;
39267
+ }
39268
+
39269
+ message.has_more_attachment = reader.bool();
39198
39270
  continue;
39199
39271
  }
39200
39272
  if ((tag & 7) === 4 || tag === 0) {
@@ -39214,12 +39286,22 @@ export const DirectFcmProto = {
39214
39286
  sender_id: isSet(object.sender_id) ? globalThis.String(object.sender_id) : "",
39215
39287
  avatar: isSet(object.avatar) ? globalThis.String(object.avatar) : "",
39216
39288
  clan_id: isSet(object.clan_id) ? globalThis.String(object.clan_id) : "",
39217
- attachments: isSet(object.attachments) ? bytesFromBase64(object.attachments) : new Uint8Array(0),
39289
+ attachment_link: isSet(object.attachment_link) ? globalThis.String(object.attachment_link) : "",
39218
39290
  display_name: isSet(object.display_name) ? globalThis.String(object.display_name) : "",
39219
39291
  create_time_seconds: isSet(object.create_time_seconds) ? globalThis.Number(object.create_time_seconds) : 0,
39220
39292
  update_time_seconds: isSet(object.update_time_seconds) ? globalThis.Number(object.update_time_seconds) : 0,
39221
39293
  username: isSet(object.username) ? globalThis.String(object.username) : "",
39222
- mentions: isSet(object.mentions) ? bytesFromBase64(object.mentions) : new Uint8Array(0),
39294
+ mention_ids: globalThis.Array.isArray(object?.mention_ids)
39295
+ ? object.mention_ids.map((e: any) => globalThis.String(e))
39296
+ : [],
39297
+ position_s: globalThis.Array.isArray(object?.position_s)
39298
+ ? object.position_s.map((e: any) => globalThis.Number(e))
39299
+ : [],
39300
+ positiin_e: globalThis.Array.isArray(object?.positiin_e)
39301
+ ? object.positiin_e.map((e: any) => globalThis.Number(e))
39302
+ : [],
39303
+ attachment_type: isSet(object.attachment_type) ? globalThis.String(object.attachment_type) : "",
39304
+ has_more_attachment: isSet(object.has_more_attachment) ? globalThis.Boolean(object.has_more_attachment) : false,
39223
39305
  };
39224
39306
  },
39225
39307
 
@@ -39246,8 +39328,8 @@ export const DirectFcmProto = {
39246
39328
  if (message.clan_id !== "") {
39247
39329
  obj.clan_id = message.clan_id;
39248
39330
  }
39249
- if (message.attachments.length !== 0) {
39250
- obj.attachments = base64FromBytes(message.attachments);
39331
+ if (message.attachment_link !== "") {
39332
+ obj.attachment_link = message.attachment_link;
39251
39333
  }
39252
39334
  if (message.display_name !== "") {
39253
39335
  obj.display_name = message.display_name;
@@ -39261,8 +39343,20 @@ export const DirectFcmProto = {
39261
39343
  if (message.username !== "") {
39262
39344
  obj.username = message.username;
39263
39345
  }
39264
- if (message.mentions.length !== 0) {
39265
- obj.mentions = base64FromBytes(message.mentions);
39346
+ if (message.mention_ids?.length) {
39347
+ obj.mention_ids = message.mention_ids;
39348
+ }
39349
+ if (message.position_s?.length) {
39350
+ obj.position_s = message.position_s.map((e) => Math.round(e));
39351
+ }
39352
+ if (message.positiin_e?.length) {
39353
+ obj.positiin_e = message.positiin_e.map((e) => Math.round(e));
39354
+ }
39355
+ if (message.attachment_type !== "") {
39356
+ obj.attachment_type = message.attachment_type;
39357
+ }
39358
+ if (message.has_more_attachment !== false) {
39359
+ obj.has_more_attachment = message.has_more_attachment;
39266
39360
  }
39267
39361
  return obj;
39268
39362
  },
@@ -39279,12 +39373,16 @@ export const DirectFcmProto = {
39279
39373
  message.sender_id = object.sender_id ?? "";
39280
39374
  message.avatar = object.avatar ?? "";
39281
39375
  message.clan_id = object.clan_id ?? "";
39282
- message.attachments = object.attachments ?? new Uint8Array(0);
39376
+ message.attachment_link = object.attachment_link ?? "";
39283
39377
  message.display_name = object.display_name ?? "";
39284
39378
  message.create_time_seconds = object.create_time_seconds ?? 0;
39285
39379
  message.update_time_seconds = object.update_time_seconds ?? 0;
39286
39380
  message.username = object.username ?? "";
39287
- message.mentions = object.mentions ?? new Uint8Array(0);
39381
+ message.mention_ids = object.mention_ids?.map((e) => e) || [];
39382
+ message.position_s = object.position_s?.map((e) => e) || [];
39383
+ message.positiin_e = object.positiin_e?.map((e) => e) || [];
39384
+ message.attachment_type = object.attachment_type ?? "";
39385
+ message.has_more_attachment = object.has_more_attachment ?? false;
39288
39386
  return message;
39289
39387
  },
39290
39388
  };
@@ -213,7 +213,7 @@ export interface MessageMention {
213
213
  /** role name */
214
214
  rolename: string;
215
215
  /** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the message was created. */
216
- create_time_second: number;
216
+ create_time_seconds: number;
217
217
  /** start position from text */
218
218
  s: number;
219
219
  /** end position from text */
@@ -2583,7 +2583,7 @@ export interface LoginIDResponse {
2583
2583
  /** status login */
2584
2584
  status: number;
2585
2585
  /** create time */
2586
- create_time_second: number;
2586
+ create_time_seconds: number;
2587
2587
  /** platform */
2588
2588
  platform: string;
2589
2589
  /** user_id */
@@ -3126,12 +3126,16 @@ export interface DirectFcmProto {
3126
3126
  sender_id: string;
3127
3127
  avatar: string;
3128
3128
  clan_id: string;
3129
- attachments: Uint8Array;
3129
+ attachment_link: string;
3130
3130
  display_name: string;
3131
3131
  create_time_seconds: number;
3132
3132
  update_time_seconds: number;
3133
3133
  username: string;
3134
- mentions: Uint8Array;
3134
+ mention_ids: string[];
3135
+ position_s: number[];
3136
+ positiin_e: number[];
3137
+ attachment_type: string;
3138
+ has_more_attachment: boolean;
3135
3139
  }
3136
3140
  export interface MessageMentionList {
3137
3141
  mentions: MessageMention[];
@@ -3724,7 +3728,7 @@ export declare const MessageMention: {
3724
3728
  username?: string | undefined;
3725
3729
  role_id?: string | undefined;
3726
3730
  rolename?: string | undefined;
3727
- create_time_second?: number | undefined;
3731
+ create_time_seconds?: number | undefined;
3728
3732
  s?: number | undefined;
3729
3733
  e?: number | undefined;
3730
3734
  } & {
@@ -3733,7 +3737,7 @@ export declare const MessageMention: {
3733
3737
  username?: string | undefined;
3734
3738
  role_id?: string | undefined;
3735
3739
  rolename?: string | undefined;
3736
- create_time_second?: number | undefined;
3740
+ create_time_seconds?: number | undefined;
3737
3741
  s?: number | undefined;
3738
3742
  e?: number | undefined;
3739
3743
  } & { [K in Exclude<keyof I, keyof MessageMention>]: never; }>(base?: I | undefined): MessageMention;
@@ -3743,7 +3747,7 @@ export declare const MessageMention: {
3743
3747
  username?: string | undefined;
3744
3748
  role_id?: string | undefined;
3745
3749
  rolename?: string | undefined;
3746
- create_time_second?: number | undefined;
3750
+ create_time_seconds?: number | undefined;
3747
3751
  s?: number | undefined;
3748
3752
  e?: number | undefined;
3749
3753
  } & {
@@ -3752,7 +3756,7 @@ export declare const MessageMention: {
3752
3756
  username?: string | undefined;
3753
3757
  role_id?: string | undefined;
3754
3758
  rolename?: string | undefined;
3755
- create_time_second?: number | undefined;
3759
+ create_time_seconds?: number | undefined;
3756
3760
  s?: number | undefined;
3757
3761
  e?: number | undefined;
3758
3762
  } & { [K_1 in Exclude<keyof I_1, keyof MessageMention>]: never; }>(object: I_1): MessageMention;
@@ -19219,7 +19223,7 @@ export declare const LoginIDResponse: {
19219
19223
  create<I extends {
19220
19224
  login_id?: string | undefined;
19221
19225
  status?: number | undefined;
19222
- create_time_second?: number | undefined;
19226
+ create_time_seconds?: number | undefined;
19223
19227
  platform?: string | undefined;
19224
19228
  user_id?: number | undefined;
19225
19229
  username?: string | undefined;
@@ -19227,7 +19231,7 @@ export declare const LoginIDResponse: {
19227
19231
  } & {
19228
19232
  login_id?: string | undefined;
19229
19233
  status?: number | undefined;
19230
- create_time_second?: number | undefined;
19234
+ create_time_seconds?: number | undefined;
19231
19235
  platform?: string | undefined;
19232
19236
  user_id?: number | undefined;
19233
19237
  username?: string | undefined;
@@ -19236,7 +19240,7 @@ export declare const LoginIDResponse: {
19236
19240
  fromPartial<I_1 extends {
19237
19241
  login_id?: string | undefined;
19238
19242
  status?: number | undefined;
19239
- create_time_second?: number | undefined;
19243
+ create_time_seconds?: number | undefined;
19240
19244
  platform?: string | undefined;
19241
19245
  user_id?: number | undefined;
19242
19246
  username?: string | undefined;
@@ -19244,7 +19248,7 @@ export declare const LoginIDResponse: {
19244
19248
  } & {
19245
19249
  login_id?: string | undefined;
19246
19250
  status?: number | undefined;
19247
- create_time_second?: number | undefined;
19251
+ create_time_seconds?: number | undefined;
19248
19252
  platform?: string | undefined;
19249
19253
  user_id?: number | undefined;
19250
19254
  username?: string | undefined;
@@ -23248,12 +23252,16 @@ export declare const DirectFcmProto: {
23248
23252
  sender_id?: string | undefined;
23249
23253
  avatar?: string | undefined;
23250
23254
  clan_id?: string | undefined;
23251
- attachments?: Uint8Array | undefined;
23255
+ attachment_link?: string | undefined;
23252
23256
  display_name?: string | undefined;
23253
23257
  create_time_seconds?: number | undefined;
23254
23258
  update_time_seconds?: number | undefined;
23255
23259
  username?: string | undefined;
23256
- mentions?: Uint8Array | undefined;
23260
+ mention_ids?: string[] | undefined;
23261
+ position_s?: number[] | undefined;
23262
+ positiin_e?: number[] | undefined;
23263
+ attachment_type?: string | undefined;
23264
+ has_more_attachment?: boolean | undefined;
23257
23265
  } & {
23258
23266
  title?: string | undefined;
23259
23267
  link?: string | undefined;
@@ -23262,13 +23270,17 @@ export declare const DirectFcmProto: {
23262
23270
  sender_id?: string | undefined;
23263
23271
  avatar?: string | undefined;
23264
23272
  clan_id?: string | undefined;
23265
- attachments?: Uint8Array | undefined;
23273
+ attachment_link?: string | undefined;
23266
23274
  display_name?: string | undefined;
23267
23275
  create_time_seconds?: number | undefined;
23268
23276
  update_time_seconds?: number | undefined;
23269
23277
  username?: string | undefined;
23270
- mentions?: Uint8Array | undefined;
23271
- } & { [K in Exclude<keyof I, keyof DirectFcmProto>]: never; }>(base?: I | undefined): DirectFcmProto;
23278
+ mention_ids?: (string[] & string[] & { [K in Exclude<keyof I["mention_ids"], keyof string[]>]: never; }) | undefined;
23279
+ position_s?: (number[] & number[] & { [K_1 in Exclude<keyof I["position_s"], keyof number[]>]: never; }) | undefined;
23280
+ positiin_e?: (number[] & number[] & { [K_2 in Exclude<keyof I["positiin_e"], keyof number[]>]: never; }) | undefined;
23281
+ attachment_type?: string | undefined;
23282
+ has_more_attachment?: boolean | undefined;
23283
+ } & { [K_3 in Exclude<keyof I, keyof DirectFcmProto>]: never; }>(base?: I | undefined): DirectFcmProto;
23272
23284
  fromPartial<I_1 extends {
23273
23285
  title?: string | undefined;
23274
23286
  link?: string | undefined;
@@ -23277,12 +23289,16 @@ export declare const DirectFcmProto: {
23277
23289
  sender_id?: string | undefined;
23278
23290
  avatar?: string | undefined;
23279
23291
  clan_id?: string | undefined;
23280
- attachments?: Uint8Array | undefined;
23292
+ attachment_link?: string | undefined;
23281
23293
  display_name?: string | undefined;
23282
23294
  create_time_seconds?: number | undefined;
23283
23295
  update_time_seconds?: number | undefined;
23284
23296
  username?: string | undefined;
23285
- mentions?: Uint8Array | undefined;
23297
+ mention_ids?: string[] | undefined;
23298
+ position_s?: number[] | undefined;
23299
+ positiin_e?: number[] | undefined;
23300
+ attachment_type?: string | undefined;
23301
+ has_more_attachment?: boolean | undefined;
23286
23302
  } & {
23287
23303
  title?: string | undefined;
23288
23304
  link?: string | undefined;
@@ -23291,13 +23307,17 @@ export declare const DirectFcmProto: {
23291
23307
  sender_id?: string | undefined;
23292
23308
  avatar?: string | undefined;
23293
23309
  clan_id?: string | undefined;
23294
- attachments?: Uint8Array | undefined;
23310
+ attachment_link?: string | undefined;
23295
23311
  display_name?: string | undefined;
23296
23312
  create_time_seconds?: number | undefined;
23297
23313
  update_time_seconds?: number | undefined;
23298
23314
  username?: string | undefined;
23299
- mentions?: Uint8Array | undefined;
23300
- } & { [K_1 in Exclude<keyof I_1, keyof DirectFcmProto>]: never; }>(object: I_1): DirectFcmProto;
23315
+ mention_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["mention_ids"], keyof string[]>]: never; }) | undefined;
23316
+ position_s?: (number[] & number[] & { [K_5 in Exclude<keyof I_1["position_s"], keyof number[]>]: never; }) | undefined;
23317
+ positiin_e?: (number[] & number[] & { [K_6 in Exclude<keyof I_1["positiin_e"], keyof number[]>]: never; }) | undefined;
23318
+ attachment_type?: string | undefined;
23319
+ has_more_attachment?: boolean | undefined;
23320
+ } & { [K_7 in Exclude<keyof I_1, keyof DirectFcmProto>]: never; }>(object: I_1): DirectFcmProto;
23301
23321
  };
23302
23322
  export declare const MessageMentionList: {
23303
23323
  encode(message: MessageMentionList, writer?: _m0.Writer): _m0.Writer;
@@ -23311,7 +23331,7 @@ export declare const MessageMentionList: {
23311
23331
  username?: string | undefined;
23312
23332
  role_id?: string | undefined;
23313
23333
  rolename?: string | undefined;
23314
- create_time_second?: number | undefined;
23334
+ create_time_seconds?: number | undefined;
23315
23335
  s?: number | undefined;
23316
23336
  e?: number | undefined;
23317
23337
  }[] | undefined;
@@ -23322,7 +23342,7 @@ export declare const MessageMentionList: {
23322
23342
  username?: string | undefined;
23323
23343
  role_id?: string | undefined;
23324
23344
  rolename?: string | undefined;
23325
- create_time_second?: number | undefined;
23345
+ create_time_seconds?: number | undefined;
23326
23346
  s?: number | undefined;
23327
23347
  e?: number | undefined;
23328
23348
  }[] & ({
@@ -23331,7 +23351,7 @@ export declare const MessageMentionList: {
23331
23351
  username?: string | undefined;
23332
23352
  role_id?: string | undefined;
23333
23353
  rolename?: string | undefined;
23334
- create_time_second?: number | undefined;
23354
+ create_time_seconds?: number | undefined;
23335
23355
  s?: number | undefined;
23336
23356
  e?: number | undefined;
23337
23357
  } & {
@@ -23340,7 +23360,7 @@ export declare const MessageMentionList: {
23340
23360
  username?: string | undefined;
23341
23361
  role_id?: string | undefined;
23342
23362
  rolename?: string | undefined;
23343
- create_time_second?: number | undefined;
23363
+ create_time_seconds?: number | undefined;
23344
23364
  s?: number | undefined;
23345
23365
  e?: number | undefined;
23346
23366
  } & { [K in Exclude<keyof I["mentions"][number], keyof MessageMention>]: never; })[] & { [K_1 in Exclude<keyof I["mentions"], keyof {
@@ -23349,7 +23369,7 @@ export declare const MessageMentionList: {
23349
23369
  username?: string | undefined;
23350
23370
  role_id?: string | undefined;
23351
23371
  rolename?: string | undefined;
23352
- create_time_second?: number | undefined;
23372
+ create_time_seconds?: number | undefined;
23353
23373
  s?: number | undefined;
23354
23374
  e?: number | undefined;
23355
23375
  }[]>]: never; }) | undefined;
@@ -23361,7 +23381,7 @@ export declare const MessageMentionList: {
23361
23381
  username?: string | undefined;
23362
23382
  role_id?: string | undefined;
23363
23383
  rolename?: string | undefined;
23364
- create_time_second?: number | undefined;
23384
+ create_time_seconds?: number | undefined;
23365
23385
  s?: number | undefined;
23366
23386
  e?: number | undefined;
23367
23387
  }[] | undefined;
@@ -23372,7 +23392,7 @@ export declare const MessageMentionList: {
23372
23392
  username?: string | undefined;
23373
23393
  role_id?: string | undefined;
23374
23394
  rolename?: string | undefined;
23375
- create_time_second?: number | undefined;
23395
+ create_time_seconds?: number | undefined;
23376
23396
  s?: number | undefined;
23377
23397
  e?: number | undefined;
23378
23398
  }[] & ({
@@ -23381,7 +23401,7 @@ export declare const MessageMentionList: {
23381
23401
  username?: string | undefined;
23382
23402
  role_id?: string | undefined;
23383
23403
  rolename?: string | undefined;
23384
- create_time_second?: number | undefined;
23404
+ create_time_seconds?: number | undefined;
23385
23405
  s?: number | undefined;
23386
23406
  e?: number | undefined;
23387
23407
  } & {
@@ -23390,7 +23410,7 @@ export declare const MessageMentionList: {
23390
23410
  username?: string | undefined;
23391
23411
  role_id?: string | undefined;
23392
23412
  rolename?: string | undefined;
23393
- create_time_second?: number | undefined;
23413
+ create_time_seconds?: number | undefined;
23394
23414
  s?: number | undefined;
23395
23415
  e?: number | undefined;
23396
23416
  } & { [K_3 in Exclude<keyof I_1["mentions"][number], keyof MessageMention>]: never; })[] & { [K_4 in Exclude<keyof I_1["mentions"], keyof {
@@ -23399,7 +23419,7 @@ export declare const MessageMentionList: {
23399
23419
  username?: string | undefined;
23400
23420
  role_id?: string | undefined;
23401
23421
  rolename?: string | undefined;
23402
- create_time_second?: number | undefined;
23422
+ create_time_seconds?: number | undefined;
23403
23423
  s?: number | undefined;
23404
23424
  e?: number | undefined;
23405
23425
  }[]>]: never; }) | undefined;