mezon-js-protobuf 1.8.34 → 1.8.36

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
@@ -1133,7 +1133,9 @@ export interface UpdateAccountRequest {
1133
1133
  | string
1134
1134
  | undefined;
1135
1135
  /** update about me */
1136
- about_me: string;
1136
+ about_me:
1137
+ | string
1138
+ | undefined;
1137
1139
  /** date of birth */
1138
1140
  dob:
1139
1141
  | Date
@@ -1143,7 +1145,9 @@ export interface UpdateAccountRequest {
1143
1145
  | string
1144
1146
  | undefined;
1145
1147
  /** splash screen */
1146
- splash_screen: string;
1148
+ splash_screen:
1149
+ | string
1150
+ | undefined;
1147
1151
  /** e2ee encrypt private key */
1148
1152
  encrypt_private_key: string;
1149
1153
  /** The email of the user's account. */
@@ -1375,6 +1379,8 @@ export interface ClanDesc {
1375
1379
  about: string;
1376
1380
  /** short_url */
1377
1381
  short_url: string;
1382
+ /** prevent anonymous */
1383
+ prevent_anonymous: boolean;
1378
1384
  }
1379
1385
 
1380
1386
  /** Clan information */
@@ -1420,10 +1426,14 @@ export interface UpdateClanDescRequest {
1420
1426
  | undefined;
1421
1427
  /** string description */
1422
1428
  description: string;
1423
- /** about */
1429
+ /** About */
1424
1430
  about: string;
1425
- /** short url for community */
1426
- short_url: string | undefined;
1431
+ /** Short url for community */
1432
+ short_url:
1433
+ | string
1434
+ | undefined;
1435
+ /** Prevent anonymous */
1436
+ prevent_anonymous: boolean;
1427
1437
  }
1428
1438
 
1429
1439
  /** Delete a clan the user has access to. */
@@ -1527,6 +1537,8 @@ export interface ClanProfile {
1527
1537
  avatar: string;
1528
1538
  /** id clan */
1529
1539
  clan_id: string;
1540
+ /** about clan */
1541
+ about: string;
1530
1542
  }
1531
1543
 
1532
1544
  /** information user by clan requset */
@@ -10825,10 +10837,10 @@ function createBaseUpdateAccountRequest(): UpdateAccountRequest {
10825
10837
  lang_tag: undefined,
10826
10838
  location: undefined,
10827
10839
  timezone: undefined,
10828
- about_me: "",
10840
+ about_me: undefined,
10829
10841
  dob: undefined,
10830
10842
  logo: undefined,
10831
- splash_screen: "",
10843
+ splash_screen: undefined,
10832
10844
  encrypt_private_key: "",
10833
10845
  email: undefined,
10834
10846
  };
@@ -10854,8 +10866,8 @@ export const UpdateAccountRequest = {
10854
10866
  if (message.timezone !== undefined) {
10855
10867
  StringValue.encode({ value: message.timezone! }, writer.uint32(50).fork()).ldelim();
10856
10868
  }
10857
- if (message.about_me !== "") {
10858
- writer.uint32(58).string(message.about_me);
10869
+ if (message.about_me !== undefined) {
10870
+ StringValue.encode({ value: message.about_me! }, writer.uint32(58).fork()).ldelim();
10859
10871
  }
10860
10872
  if (message.dob !== undefined) {
10861
10873
  Timestamp.encode(toTimestamp(message.dob), writer.uint32(66).fork()).ldelim();
@@ -10863,8 +10875,8 @@ export const UpdateAccountRequest = {
10863
10875
  if (message.logo !== undefined) {
10864
10876
  StringValue.encode({ value: message.logo! }, writer.uint32(74).fork()).ldelim();
10865
10877
  }
10866
- if (message.splash_screen !== "") {
10867
- writer.uint32(82).string(message.splash_screen);
10878
+ if (message.splash_screen !== undefined) {
10879
+ StringValue.encode({ value: message.splash_screen! }, writer.uint32(82).fork()).ldelim();
10868
10880
  }
10869
10881
  if (message.encrypt_private_key !== "") {
10870
10882
  writer.uint32(90).string(message.encrypt_private_key);
@@ -10929,7 +10941,7 @@ export const UpdateAccountRequest = {
10929
10941
  break;
10930
10942
  }
10931
10943
 
10932
- message.about_me = reader.string();
10944
+ message.about_me = StringValue.decode(reader, reader.uint32()).value;
10933
10945
  continue;
10934
10946
  case 8:
10935
10947
  if (tag !== 66) {
@@ -10950,7 +10962,7 @@ export const UpdateAccountRequest = {
10950
10962
  break;
10951
10963
  }
10952
10964
 
10953
- message.splash_screen = reader.string();
10965
+ message.splash_screen = StringValue.decode(reader, reader.uint32()).value;
10954
10966
  continue;
10955
10967
  case 11:
10956
10968
  if (tag !== 90) {
@@ -10983,10 +10995,10 @@ export const UpdateAccountRequest = {
10983
10995
  lang_tag: isSet(object.lang_tag) ? String(object.lang_tag) : undefined,
10984
10996
  location: isSet(object.location) ? String(object.location) : undefined,
10985
10997
  timezone: isSet(object.timezone) ? String(object.timezone) : undefined,
10986
- about_me: isSet(object.about_me) ? globalThis.String(object.about_me) : "",
10998
+ about_me: isSet(object.about_me) ? String(object.about_me) : undefined,
10987
10999
  dob: isSet(object.dob) ? fromJsonTimestamp(object.dob) : undefined,
10988
11000
  logo: isSet(object.logo) ? String(object.logo) : undefined,
10989
- splash_screen: isSet(object.splash_screen) ? globalThis.String(object.splash_screen) : "",
11001
+ splash_screen: isSet(object.splash_screen) ? String(object.splash_screen) : undefined,
10990
11002
  encrypt_private_key: isSet(object.encrypt_private_key) ? globalThis.String(object.encrypt_private_key) : "",
10991
11003
  email: isSet(object.email) ? String(object.email) : undefined,
10992
11004
  };
@@ -11012,7 +11024,7 @@ export const UpdateAccountRequest = {
11012
11024
  if (message.timezone !== undefined) {
11013
11025
  obj.timezone = message.timezone;
11014
11026
  }
11015
- if (message.about_me !== "") {
11027
+ if (message.about_me !== undefined) {
11016
11028
  obj.about_me = message.about_me;
11017
11029
  }
11018
11030
  if (message.dob !== undefined) {
@@ -11021,7 +11033,7 @@ export const UpdateAccountRequest = {
11021
11033
  if (message.logo !== undefined) {
11022
11034
  obj.logo = message.logo;
11023
11035
  }
11024
- if (message.splash_screen !== "") {
11036
+ if (message.splash_screen !== undefined) {
11025
11037
  obj.splash_screen = message.splash_screen;
11026
11038
  }
11027
11039
  if (message.encrypt_private_key !== "") {
@@ -11044,10 +11056,10 @@ export const UpdateAccountRequest = {
11044
11056
  message.lang_tag = object.lang_tag ?? undefined;
11045
11057
  message.location = object.location ?? undefined;
11046
11058
  message.timezone = object.timezone ?? undefined;
11047
- message.about_me = object.about_me ?? "";
11059
+ message.about_me = object.about_me ?? undefined;
11048
11060
  message.dob = object.dob ?? undefined;
11049
11061
  message.logo = object.logo ?? undefined;
11050
- message.splash_screen = object.splash_screen ?? "";
11062
+ message.splash_screen = object.splash_screen ?? undefined;
11051
11063
  message.encrypt_private_key = object.encrypt_private_key ?? "";
11052
11064
  message.email = object.email ?? undefined;
11053
11065
  return message;
@@ -12170,6 +12182,7 @@ function createBaseClanDesc(): ClanDesc {
12170
12182
  description: "",
12171
12183
  about: "",
12172
12184
  short_url: "",
12185
+ prevent_anonymous: false,
12173
12186
  };
12174
12187
  }
12175
12188
 
@@ -12223,6 +12236,9 @@ export const ClanDesc = {
12223
12236
  if (message.short_url !== "") {
12224
12237
  writer.uint32(130).string(message.short_url);
12225
12238
  }
12239
+ if (message.prevent_anonymous !== false) {
12240
+ writer.uint32(136).bool(message.prevent_anonymous);
12241
+ }
12226
12242
  return writer;
12227
12243
  },
12228
12244
 
@@ -12345,6 +12361,13 @@ export const ClanDesc = {
12345
12361
 
12346
12362
  message.short_url = reader.string();
12347
12363
  continue;
12364
+ case 17:
12365
+ if (tag !== 136) {
12366
+ break;
12367
+ }
12368
+
12369
+ message.prevent_anonymous = reader.bool();
12370
+ continue;
12348
12371
  }
12349
12372
  if ((tag & 7) === 4 || tag === 0) {
12350
12373
  break;
@@ -12372,6 +12395,7 @@ export const ClanDesc = {
12372
12395
  description: isSet(object.description) ? globalThis.String(object.description) : "",
12373
12396
  about: isSet(object.about) ? globalThis.String(object.about) : "",
12374
12397
  short_url: isSet(object.short_url) ? globalThis.String(object.short_url) : "",
12398
+ prevent_anonymous: isSet(object.prevent_anonymous) ? globalThis.Boolean(object.prevent_anonymous) : false,
12375
12399
  };
12376
12400
  },
12377
12401
 
@@ -12425,6 +12449,9 @@ export const ClanDesc = {
12425
12449
  if (message.short_url !== "") {
12426
12450
  obj.short_url = message.short_url;
12427
12451
  }
12452
+ if (message.prevent_anonymous !== false) {
12453
+ obj.prevent_anonymous = message.prevent_anonymous;
12454
+ }
12428
12455
  return obj;
12429
12456
  },
12430
12457
 
@@ -12449,6 +12476,7 @@ export const ClanDesc = {
12449
12476
  message.description = object.description ?? "";
12450
12477
  message.about = object.about ?? "";
12451
12478
  message.short_url = object.short_url ?? "";
12479
+ message.prevent_anonymous = object.prevent_anonymous ?? false;
12452
12480
  return message;
12453
12481
  },
12454
12482
  };
@@ -12557,6 +12585,7 @@ function createBaseUpdateClanDescRequest(): UpdateClanDescRequest {
12557
12585
  description: "",
12558
12586
  about: "",
12559
12587
  short_url: undefined,
12588
+ prevent_anonymous: false,
12560
12589
  };
12561
12590
  }
12562
12591
 
@@ -12601,6 +12630,9 @@ export const UpdateClanDescRequest = {
12601
12630
  if (message.short_url !== undefined) {
12602
12631
  StringValue.encode({ value: message.short_url! }, writer.uint32(106).fork()).ldelim();
12603
12632
  }
12633
+ if (message.prevent_anonymous !== false) {
12634
+ writer.uint32(112).bool(message.prevent_anonymous);
12635
+ }
12604
12636
  return writer;
12605
12637
  },
12606
12638
 
@@ -12702,6 +12734,13 @@ export const UpdateClanDescRequest = {
12702
12734
 
12703
12735
  message.short_url = StringValue.decode(reader, reader.uint32()).value;
12704
12736
  continue;
12737
+ case 14:
12738
+ if (tag !== 112) {
12739
+ break;
12740
+ }
12741
+
12742
+ message.prevent_anonymous = reader.bool();
12743
+ continue;
12705
12744
  }
12706
12745
  if ((tag & 7) === 4 || tag === 0) {
12707
12746
  break;
@@ -12726,6 +12765,7 @@ export const UpdateClanDescRequest = {
12726
12765
  description: isSet(object.description) ? globalThis.String(object.description) : "",
12727
12766
  about: isSet(object.about) ? globalThis.String(object.about) : "",
12728
12767
  short_url: isSet(object.short_url) ? String(object.short_url) : undefined,
12768
+ prevent_anonymous: isSet(object.prevent_anonymous) ? globalThis.Boolean(object.prevent_anonymous) : false,
12729
12769
  };
12730
12770
  },
12731
12771
 
@@ -12770,6 +12810,9 @@ export const UpdateClanDescRequest = {
12770
12810
  if (message.short_url !== undefined) {
12771
12811
  obj.short_url = message.short_url;
12772
12812
  }
12813
+ if (message.prevent_anonymous !== false) {
12814
+ obj.prevent_anonymous = message.prevent_anonymous;
12815
+ }
12773
12816
  return obj;
12774
12817
  },
12775
12818
 
@@ -12791,6 +12834,7 @@ export const UpdateClanDescRequest = {
12791
12834
  message.description = object.description ?? "";
12792
12835
  message.about = object.about ?? "";
12793
12836
  message.short_url = object.short_url ?? undefined;
12837
+ message.prevent_anonymous = object.prevent_anonymous ?? false;
12794
12838
  return message;
12795
12839
  },
12796
12840
  };
@@ -13569,7 +13613,7 @@ export const LinkInviteUser = {
13569
13613
  };
13570
13614
 
13571
13615
  function createBaseClanProfile(): ClanProfile {
13572
- return { user_id: "", nick_name: "", avatar: "", clan_id: "" };
13616
+ return { user_id: "", nick_name: "", avatar: "", clan_id: "", about: "" };
13573
13617
  }
13574
13618
 
13575
13619
  export const ClanProfile = {
@@ -13586,6 +13630,9 @@ export const ClanProfile = {
13586
13630
  if (message.clan_id !== "") {
13587
13631
  writer.uint32(34).string(message.clan_id);
13588
13632
  }
13633
+ if (message.about !== "") {
13634
+ writer.uint32(42).string(message.about);
13635
+ }
13589
13636
  return writer;
13590
13637
  },
13591
13638
 
@@ -13624,6 +13671,13 @@ export const ClanProfile = {
13624
13671
 
13625
13672
  message.clan_id = reader.string();
13626
13673
  continue;
13674
+ case 5:
13675
+ if (tag !== 42) {
13676
+ break;
13677
+ }
13678
+
13679
+ message.about = reader.string();
13680
+ continue;
13627
13681
  }
13628
13682
  if ((tag & 7) === 4 || tag === 0) {
13629
13683
  break;
@@ -13639,6 +13693,7 @@ export const ClanProfile = {
13639
13693
  nick_name: isSet(object.nick_name) ? globalThis.String(object.nick_name) : "",
13640
13694
  avatar: isSet(object.avatar) ? globalThis.String(object.avatar) : "",
13641
13695
  clan_id: isSet(object.clan_id) ? globalThis.String(object.clan_id) : "",
13696
+ about: isSet(object.about) ? globalThis.String(object.about) : "",
13642
13697
  };
13643
13698
  },
13644
13699
 
@@ -13656,6 +13711,9 @@ export const ClanProfile = {
13656
13711
  if (message.clan_id !== "") {
13657
13712
  obj.clan_id = message.clan_id;
13658
13713
  }
13714
+ if (message.about !== "") {
13715
+ obj.about = message.about;
13716
+ }
13659
13717
  return obj;
13660
13718
  },
13661
13719
 
@@ -13668,6 +13726,7 @@ export const ClanProfile = {
13668
13726
  message.nick_name = object.nick_name ?? "";
13669
13727
  message.avatar = object.avatar ?? "";
13670
13728
  message.clan_id = object.clan_id ?? "";
13729
+ message.about = object.about ?? "";
13671
13730
  return message;
13672
13731
  },
13673
13732
  };
@@ -807,13 +807,13 @@ export interface UpdateAccountRequest {
807
807
  /** The timezone set by the user. */
808
808
  timezone: string | undefined;
809
809
  /** update about me */
810
- about_me: string;
810
+ about_me: string | undefined;
811
811
  /** date of birth */
812
812
  dob: Date | undefined;
813
813
  /** logo url */
814
814
  logo: string | undefined;
815
815
  /** splash screen */
816
- splash_screen: string;
816
+ splash_screen: string | undefined;
817
817
  /** e2ee encrypt private key */
818
818
  encrypt_private_key: string;
819
819
  /** The email of the user's account. */
@@ -981,6 +981,8 @@ export interface ClanDesc {
981
981
  about: string;
982
982
  /** short_url */
983
983
  short_url: string;
984
+ /** prevent anonymous */
985
+ prevent_anonymous: boolean;
984
986
  }
985
987
  /** Clan information */
986
988
  export interface CreateClanDescRequest {
@@ -1014,10 +1016,12 @@ export interface UpdateClanDescRequest {
1014
1016
  community_banner: string | undefined;
1015
1017
  /** string description */
1016
1018
  description: string;
1017
- /** about */
1019
+ /** About */
1018
1020
  about: string;
1019
- /** short url for community */
1021
+ /** Short url for community */
1020
1022
  short_url: string | undefined;
1023
+ /** Prevent anonymous */
1024
+ prevent_anonymous: boolean;
1021
1025
  }
1022
1026
  /** Delete a clan the user has access to. */
1023
1027
  export interface DeleteClanDescRequest {
@@ -1104,6 +1108,8 @@ export interface ClanProfile {
1104
1108
  avatar: string;
1105
1109
  /** id clan */
1106
1110
  clan_id: string;
1111
+ /** about clan */
1112
+ about: string;
1107
1113
  }
1108
1114
  /** information user by clan requset */
1109
1115
  export interface ClanProfileRequest {
@@ -9509,6 +9515,7 @@ export declare const ClanDesc: {
9509
9515
  description?: string | undefined;
9510
9516
  about?: string | undefined;
9511
9517
  short_url?: string | undefined;
9518
+ prevent_anonymous?: boolean | undefined;
9512
9519
  } & {
9513
9520
  creator_id?: string | undefined;
9514
9521
  clan_name?: string | undefined;
@@ -9526,6 +9533,7 @@ export declare const ClanDesc: {
9526
9533
  description?: string | undefined;
9527
9534
  about?: string | undefined;
9528
9535
  short_url?: string | undefined;
9536
+ prevent_anonymous?: boolean | undefined;
9529
9537
  } & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
9530
9538
  fromPartial<I_1 extends {
9531
9539
  creator_id?: string | undefined;
@@ -9544,6 +9552,7 @@ export declare const ClanDesc: {
9544
9552
  description?: string | undefined;
9545
9553
  about?: string | undefined;
9546
9554
  short_url?: string | undefined;
9555
+ prevent_anonymous?: boolean | undefined;
9547
9556
  } & {
9548
9557
  creator_id?: string | undefined;
9549
9558
  clan_name?: string | undefined;
@@ -9561,6 +9570,7 @@ export declare const ClanDesc: {
9561
9570
  description?: string | undefined;
9562
9571
  about?: string | undefined;
9563
9572
  short_url?: string | undefined;
9573
+ prevent_anonymous?: boolean | undefined;
9564
9574
  } & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
9565
9575
  };
9566
9576
  export declare const CreateClanDescRequest: {
@@ -9606,6 +9616,7 @@ export declare const UpdateClanDescRequest: {
9606
9616
  description?: string | undefined;
9607
9617
  about?: string | undefined;
9608
9618
  short_url?: string | undefined;
9619
+ prevent_anonymous?: boolean | undefined;
9609
9620
  } & {
9610
9621
  clan_id?: string | undefined;
9611
9622
  clan_name?: string | undefined;
@@ -9620,6 +9631,7 @@ export declare const UpdateClanDescRequest: {
9620
9631
  description?: string | undefined;
9621
9632
  about?: string | undefined;
9622
9633
  short_url?: string | undefined;
9634
+ prevent_anonymous?: boolean | undefined;
9623
9635
  } & { [K in Exclude<keyof I, keyof UpdateClanDescRequest>]: never; }>(base?: I | undefined): UpdateClanDescRequest;
9624
9636
  fromPartial<I_1 extends {
9625
9637
  clan_id?: string | undefined;
@@ -9635,6 +9647,7 @@ export declare const UpdateClanDescRequest: {
9635
9647
  description?: string | undefined;
9636
9648
  about?: string | undefined;
9637
9649
  short_url?: string | undefined;
9650
+ prevent_anonymous?: boolean | undefined;
9638
9651
  } & {
9639
9652
  clan_id?: string | undefined;
9640
9653
  clan_name?: string | undefined;
@@ -9649,6 +9662,7 @@ export declare const UpdateClanDescRequest: {
9649
9662
  description?: string | undefined;
9650
9663
  about?: string | undefined;
9651
9664
  short_url?: string | undefined;
9665
+ prevent_anonymous?: boolean | undefined;
9652
9666
  } & { [K_1 in Exclude<keyof I_1, keyof UpdateClanDescRequest>]: never; }>(object: I_1): UpdateClanDescRequest;
9653
9667
  };
9654
9668
  export declare const DeleteClanDescRequest: {
@@ -9714,6 +9728,7 @@ export declare const ClanDescList: {
9714
9728
  description?: string | undefined;
9715
9729
  about?: string | undefined;
9716
9730
  short_url?: string | undefined;
9731
+ prevent_anonymous?: boolean | undefined;
9717
9732
  }[] | undefined;
9718
9733
  } & {
9719
9734
  clandesc?: ({
@@ -9733,6 +9748,7 @@ export declare const ClanDescList: {
9733
9748
  description?: string | undefined;
9734
9749
  about?: string | undefined;
9735
9750
  short_url?: string | undefined;
9751
+ prevent_anonymous?: boolean | undefined;
9736
9752
  }[] & ({
9737
9753
  creator_id?: string | undefined;
9738
9754
  clan_name?: string | undefined;
@@ -9750,6 +9766,7 @@ export declare const ClanDescList: {
9750
9766
  description?: string | undefined;
9751
9767
  about?: string | undefined;
9752
9768
  short_url?: string | undefined;
9769
+ prevent_anonymous?: boolean | undefined;
9753
9770
  } & {
9754
9771
  creator_id?: string | undefined;
9755
9772
  clan_name?: string | undefined;
@@ -9767,6 +9784,7 @@ export declare const ClanDescList: {
9767
9784
  description?: string | undefined;
9768
9785
  about?: string | undefined;
9769
9786
  short_url?: string | undefined;
9787
+ prevent_anonymous?: boolean | undefined;
9770
9788
  } & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
9771
9789
  creator_id?: string | undefined;
9772
9790
  clan_name?: string | undefined;
@@ -9784,6 +9802,7 @@ export declare const ClanDescList: {
9784
9802
  description?: string | undefined;
9785
9803
  about?: string | undefined;
9786
9804
  short_url?: string | undefined;
9805
+ prevent_anonymous?: boolean | undefined;
9787
9806
  }[]>]: never; }) | undefined;
9788
9807
  } & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
9789
9808
  fromPartial<I_1 extends {
@@ -9804,6 +9823,7 @@ export declare const ClanDescList: {
9804
9823
  description?: string | undefined;
9805
9824
  about?: string | undefined;
9806
9825
  short_url?: string | undefined;
9826
+ prevent_anonymous?: boolean | undefined;
9807
9827
  }[] | undefined;
9808
9828
  } & {
9809
9829
  clandesc?: ({
@@ -9823,6 +9843,7 @@ export declare const ClanDescList: {
9823
9843
  description?: string | undefined;
9824
9844
  about?: string | undefined;
9825
9845
  short_url?: string | undefined;
9846
+ prevent_anonymous?: boolean | undefined;
9826
9847
  }[] & ({
9827
9848
  creator_id?: string | undefined;
9828
9849
  clan_name?: string | undefined;
@@ -9840,6 +9861,7 @@ export declare const ClanDescList: {
9840
9861
  description?: string | undefined;
9841
9862
  about?: string | undefined;
9842
9863
  short_url?: string | undefined;
9864
+ prevent_anonymous?: boolean | undefined;
9843
9865
  } & {
9844
9866
  creator_id?: string | undefined;
9845
9867
  clan_name?: string | undefined;
@@ -9857,6 +9879,7 @@ export declare const ClanDescList: {
9857
9879
  description?: string | undefined;
9858
9880
  about?: string | undefined;
9859
9881
  short_url?: string | undefined;
9882
+ prevent_anonymous?: boolean | undefined;
9860
9883
  } & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
9861
9884
  creator_id?: string | undefined;
9862
9885
  clan_name?: string | undefined;
@@ -9874,6 +9897,7 @@ export declare const ClanDescList: {
9874
9897
  description?: string | undefined;
9875
9898
  about?: string | undefined;
9876
9899
  short_url?: string | undefined;
9900
+ prevent_anonymous?: boolean | undefined;
9877
9901
  }[]>]: never; }) | undefined;
9878
9902
  } & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
9879
9903
  };
@@ -10387,22 +10411,26 @@ export declare const ClanProfile: {
10387
10411
  nick_name?: string | undefined;
10388
10412
  avatar?: string | undefined;
10389
10413
  clan_id?: string | undefined;
10414
+ about?: string | undefined;
10390
10415
  } & {
10391
10416
  user_id?: string | undefined;
10392
10417
  nick_name?: string | undefined;
10393
10418
  avatar?: string | undefined;
10394
10419
  clan_id?: string | undefined;
10420
+ about?: string | undefined;
10395
10421
  } & { [K in Exclude<keyof I, keyof ClanProfile>]: never; }>(base?: I | undefined): ClanProfile;
10396
10422
  fromPartial<I_1 extends {
10397
10423
  user_id?: string | undefined;
10398
10424
  nick_name?: string | undefined;
10399
10425
  avatar?: string | undefined;
10400
10426
  clan_id?: string | undefined;
10427
+ about?: string | undefined;
10401
10428
  } & {
10402
10429
  user_id?: string | undefined;
10403
10430
  nick_name?: string | undefined;
10404
10431
  avatar?: string | undefined;
10405
10432
  clan_id?: string | undefined;
10433
+ about?: string | undefined;
10406
10434
  } & { [K_1 in Exclude<keyof I_1, keyof ClanProfile>]: never; }>(object: I_1): ClanProfile;
10407
10435
  };
10408
10436
  export declare const ClanProfileRequest: {