@saltify/milky-types 1.0.0 → 1.1.0-rc.1

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.
@@ -4,6 +4,7 @@ declare const ZInt32: z.ZodNumber;
4
4
  declare const ZInt64: z.ZodNumber;
5
5
  declare const ZBoolean: z.ZodBoolean;
6
6
  declare const ZString: z.ZodString;
7
+ declare const ZUin: z.ZodNumber;
7
8
  declare const ZInt32WithDefault: (defaultValue: number) => z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
8
9
  declare const ZInt64WithDefault: (defaultValue: number) => z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
9
10
  declare const ZBooleanWithDefault: (defaultValue: boolean) => z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
@@ -156,9 +157,6 @@ declare const GroupNotification: z.ZodDiscriminatedUnion<[z.ZodObject<{
156
157
  }, z.core.$strip>], "type">;
157
158
  type GroupNotification = z.infer<typeof GroupNotification>;
158
159
 
159
- declare const SharedSegment: z.ZodObject<{
160
- type: z.ZodString;
161
- }, z.core.$strip>;
162
160
  declare const IncomingResourceSegmentBase: z.ZodObject<{
163
161
  resource_id: z.ZodString;
164
162
  temp_url: z.ZodString;
@@ -183,6 +181,7 @@ declare const IncomingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
183
181
  type: z.ZodLiteral<"face">;
184
182
  data: z.ZodObject<{
185
183
  face_id: z.ZodString;
184
+ is_large: z.ZodBoolean;
186
185
  }, z.core.$strip>;
187
186
  }, z.core.$strip>, z.ZodObject<{
188
187
  type: z.ZodLiteral<"reply">;
@@ -230,10 +229,17 @@ declare const IncomingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
230
229
  type: z.ZodLiteral<"forward">;
231
230
  data: z.ZodObject<{
232
231
  forward_id: z.ZodString;
232
+ title: z.ZodString;
233
+ preview: z.ZodArray<z.ZodString>;
234
+ summary: z.ZodString;
233
235
  }, z.core.$strip>;
234
236
  }, z.core.$strip>, z.ZodObject<{
235
237
  type: z.ZodLiteral<"market_face">;
236
238
  data: z.ZodObject<{
239
+ emoji_package_id: z.ZodNumber;
240
+ emoji_id: z.ZodNumber;
241
+ key: z.ZodString;
242
+ summary: z.ZodString;
237
243
  url: z.ZodString;
238
244
  }, z.core.$strip>;
239
245
  }, z.core.$strip>, z.ZodObject<{
@@ -267,6 +273,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
267
273
  type: z.ZodLiteral<"face">;
268
274
  data: z.ZodObject<{
269
275
  face_id: z.ZodString;
276
+ is_large: z.ZodDefault<z.ZodBoolean>;
270
277
  }, z.core.$strip>;
271
278
  }, z.core.$strip>, z.ZodObject<{
272
279
  type: z.ZodLiteral<"reply">;
@@ -277,11 +284,11 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
277
284
  type: z.ZodLiteral<"image">;
278
285
  data: z.ZodObject<{
279
286
  uri: z.ZodString;
280
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
281
- sub_type: z.ZodEnum<{
287
+ sub_type: z.ZodDefault<z.ZodEnum<{
282
288
  normal: "normal";
283
289
  sticker: "sticker";
284
- }>;
290
+ }>>;
291
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
285
292
  }, z.core.$strip>;
286
293
  }, z.core.$strip>, z.ZodObject<{
287
294
  type: z.ZodLiteral<"record">;
@@ -317,6 +324,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
317
324
  type: z.ZodLiteral<"face">;
318
325
  data: z.ZodObject<{
319
326
  face_id: z.ZodString;
327
+ is_large: z.ZodDefault<z.ZodBoolean>;
320
328
  }, z.core.$strip>;
321
329
  }, z.core.$strip>, z.ZodObject<{
322
330
  type: z.ZodLiteral<"reply">;
@@ -327,11 +335,11 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
327
335
  type: z.ZodLiteral<"image">;
328
336
  data: z.ZodObject<{
329
337
  uri: z.ZodString;
330
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
331
- sub_type: z.ZodEnum<{
338
+ sub_type: z.ZodDefault<z.ZodEnum<{
332
339
  normal: "normal";
333
340
  sticker: "sticker";
334
- }>;
341
+ }>>;
342
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
335
343
  }, z.core.$strip>;
336
344
  }, z.core.$strip>, z.ZodObject<{
337
345
  type: z.ZodLiteral<"record">;
@@ -372,6 +380,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
372
380
  type: z.ZodLiteral<"face">;
373
381
  data: z.ZodObject<{
374
382
  face_id: z.ZodString;
383
+ is_large: z.ZodBoolean;
375
384
  }, z.core.$strip>;
376
385
  }, z.core.$strip>, z.ZodObject<{
377
386
  type: z.ZodLiteral<"reply">;
@@ -419,10 +428,17 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
419
428
  type: z.ZodLiteral<"forward">;
420
429
  data: z.ZodObject<{
421
430
  forward_id: z.ZodString;
431
+ title: z.ZodString;
432
+ preview: z.ZodArray<z.ZodString>;
433
+ summary: z.ZodString;
422
434
  }, z.core.$strip>;
423
435
  }, z.core.$strip>, z.ZodObject<{
424
436
  type: z.ZodLiteral<"market_face">;
425
437
  data: z.ZodObject<{
438
+ emoji_package_id: z.ZodNumber;
439
+ emoji_id: z.ZodNumber;
440
+ key: z.ZodString;
441
+ summary: z.ZodString;
426
442
  url: z.ZodString;
427
443
  }, z.core.$strip>;
428
444
  }, z.core.$strip>, z.ZodObject<{
@@ -476,6 +492,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
476
492
  type: z.ZodLiteral<"face">;
477
493
  data: z.ZodObject<{
478
494
  face_id: z.ZodString;
495
+ is_large: z.ZodBoolean;
479
496
  }, z.core.$strip>;
480
497
  }, z.core.$strip>, z.ZodObject<{
481
498
  type: z.ZodLiteral<"reply">;
@@ -523,10 +540,17 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
523
540
  type: z.ZodLiteral<"forward">;
524
541
  data: z.ZodObject<{
525
542
  forward_id: z.ZodString;
543
+ title: z.ZodString;
544
+ preview: z.ZodArray<z.ZodString>;
545
+ summary: z.ZodString;
526
546
  }, z.core.$strip>;
527
547
  }, z.core.$strip>, z.ZodObject<{
528
548
  type: z.ZodLiteral<"market_face">;
529
549
  data: z.ZodObject<{
550
+ emoji_package_id: z.ZodNumber;
551
+ emoji_id: z.ZodNumber;
552
+ key: z.ZodString;
553
+ summary: z.ZodString;
530
554
  url: z.ZodString;
531
555
  }, z.core.$strip>;
532
556
  }, z.core.$strip>, z.ZodObject<{
@@ -592,6 +616,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
592
616
  type: z.ZodLiteral<"face">;
593
617
  data: z.ZodObject<{
594
618
  face_id: z.ZodString;
619
+ is_large: z.ZodBoolean;
595
620
  }, z.core.$strip>;
596
621
  }, z.core.$strip>, z.ZodObject<{
597
622
  type: z.ZodLiteral<"reply">;
@@ -639,10 +664,17 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
639
664
  type: z.ZodLiteral<"forward">;
640
665
  data: z.ZodObject<{
641
666
  forward_id: z.ZodString;
667
+ title: z.ZodString;
668
+ preview: z.ZodArray<z.ZodString>;
669
+ summary: z.ZodString;
642
670
  }, z.core.$strip>;
643
671
  }, z.core.$strip>, z.ZodObject<{
644
672
  type: z.ZodLiteral<"market_face">;
645
673
  data: z.ZodObject<{
674
+ emoji_package_id: z.ZodNumber;
675
+ emoji_id: z.ZodNumber;
676
+ key: z.ZodString;
677
+ summary: z.ZodString;
646
678
  url: z.ZodString;
647
679
  }, z.core.$strip>;
648
680
  }, z.core.$strip>, z.ZodObject<{
@@ -692,6 +724,7 @@ declare const GroupEssenceMessage: z.ZodObject<{
692
724
  type: z.ZodLiteral<"face">;
693
725
  data: z.ZodObject<{
694
726
  face_id: z.ZodString;
727
+ is_large: z.ZodBoolean;
695
728
  }, z.core.$strip>;
696
729
  }, z.core.$strip>, z.ZodObject<{
697
730
  type: z.ZodLiteral<"reply">;
@@ -739,10 +772,17 @@ declare const GroupEssenceMessage: z.ZodObject<{
739
772
  type: z.ZodLiteral<"forward">;
740
773
  data: z.ZodObject<{
741
774
  forward_id: z.ZodString;
775
+ title: z.ZodString;
776
+ preview: z.ZodArray<z.ZodString>;
777
+ summary: z.ZodString;
742
778
  }, z.core.$strip>;
743
779
  }, z.core.$strip>, z.ZodObject<{
744
780
  type: z.ZodLiteral<"market_face">;
745
781
  data: z.ZodObject<{
782
+ emoji_package_id: z.ZodNumber;
783
+ emoji_id: z.ZodNumber;
784
+ key: z.ZodString;
785
+ summary: z.ZodString;
746
786
  url: z.ZodString;
747
787
  }, z.core.$strip>;
748
788
  }, z.core.$strip>, z.ZodObject<{
@@ -781,6 +821,7 @@ declare const IncomingForwardedMessage: z.ZodObject<{
781
821
  type: z.ZodLiteral<"face">;
782
822
  data: z.ZodObject<{
783
823
  face_id: z.ZodString;
824
+ is_large: z.ZodBoolean;
784
825
  }, z.core.$strip>;
785
826
  }, z.core.$strip>, z.ZodObject<{
786
827
  type: z.ZodLiteral<"reply">;
@@ -828,10 +869,17 @@ declare const IncomingForwardedMessage: z.ZodObject<{
828
869
  type: z.ZodLiteral<"forward">;
829
870
  data: z.ZodObject<{
830
871
  forward_id: z.ZodString;
872
+ title: z.ZodString;
873
+ preview: z.ZodArray<z.ZodString>;
874
+ summary: z.ZodString;
831
875
  }, z.core.$strip>;
832
876
  }, z.core.$strip>, z.ZodObject<{
833
877
  type: z.ZodLiteral<"market_face">;
834
878
  data: z.ZodObject<{
879
+ emoji_package_id: z.ZodNumber;
880
+ emoji_id: z.ZodNumber;
881
+ key: z.ZodString;
882
+ summary: z.ZodString;
835
883
  url: z.ZodString;
836
884
  }, z.core.$strip>;
837
885
  }, z.core.$strip>, z.ZodObject<{
@@ -869,6 +917,7 @@ declare const OutgoingForwardedMessage: z.ZodObject<{
869
917
  type: z.ZodLiteral<"face">;
870
918
  data: z.ZodObject<{
871
919
  face_id: z.ZodString;
920
+ is_large: z.ZodDefault<z.ZodBoolean>;
872
921
  }, z.core.$strip>;
873
922
  }, z.core.$strip>, z.ZodObject<{
874
923
  type: z.ZodLiteral<"reply">;
@@ -879,11 +928,11 @@ declare const OutgoingForwardedMessage: z.ZodObject<{
879
928
  type: z.ZodLiteral<"image">;
880
929
  data: z.ZodObject<{
881
930
  uri: z.ZodString;
882
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
883
- sub_type: z.ZodEnum<{
931
+ sub_type: z.ZodDefault<z.ZodEnum<{
884
932
  normal: "normal";
885
933
  sticker: "sticker";
886
- }>;
934
+ }>>;
935
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
887
936
  }, z.core.$strip>;
888
937
  }, z.core.$strip>, z.ZodObject<{
889
938
  type: z.ZodLiteral<"record">;
@@ -1071,6 +1120,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1071
1120
  type: z.ZodLiteral<"face">;
1072
1121
  data: z.ZodObject<{
1073
1122
  face_id: z.ZodString;
1123
+ is_large: z.ZodBoolean;
1074
1124
  }, z.core.$strip>;
1075
1125
  }, z.core.$strip>, z.ZodObject<{
1076
1126
  type: z.ZodLiteral<"reply">;
@@ -1118,10 +1168,17 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1118
1168
  type: z.ZodLiteral<"forward">;
1119
1169
  data: z.ZodObject<{
1120
1170
  forward_id: z.ZodString;
1171
+ title: z.ZodString;
1172
+ preview: z.ZodArray<z.ZodString>;
1173
+ summary: z.ZodString;
1121
1174
  }, z.core.$strip>;
1122
1175
  }, z.core.$strip>, z.ZodObject<{
1123
1176
  type: z.ZodLiteral<"market_face">;
1124
1177
  data: z.ZodObject<{
1178
+ emoji_package_id: z.ZodNumber;
1179
+ emoji_id: z.ZodNumber;
1180
+ key: z.ZodString;
1181
+ summary: z.ZodString;
1125
1182
  url: z.ZodString;
1126
1183
  }, z.core.$strip>;
1127
1184
  }, z.core.$strip>, z.ZodObject<{
@@ -1175,6 +1232,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1175
1232
  type: z.ZodLiteral<"face">;
1176
1233
  data: z.ZodObject<{
1177
1234
  face_id: z.ZodString;
1235
+ is_large: z.ZodBoolean;
1178
1236
  }, z.core.$strip>;
1179
1237
  }, z.core.$strip>, z.ZodObject<{
1180
1238
  type: z.ZodLiteral<"reply">;
@@ -1222,10 +1280,17 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1222
1280
  type: z.ZodLiteral<"forward">;
1223
1281
  data: z.ZodObject<{
1224
1282
  forward_id: z.ZodString;
1283
+ title: z.ZodString;
1284
+ preview: z.ZodArray<z.ZodString>;
1285
+ summary: z.ZodString;
1225
1286
  }, z.core.$strip>;
1226
1287
  }, z.core.$strip>, z.ZodObject<{
1227
1288
  type: z.ZodLiteral<"market_face">;
1228
1289
  data: z.ZodObject<{
1290
+ emoji_package_id: z.ZodNumber;
1291
+ emoji_id: z.ZodNumber;
1292
+ key: z.ZodString;
1293
+ summary: z.ZodString;
1229
1294
  url: z.ZodString;
1230
1295
  }, z.core.$strip>;
1231
1296
  }, z.core.$strip>, z.ZodObject<{
@@ -1291,6 +1356,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1291
1356
  type: z.ZodLiteral<"face">;
1292
1357
  data: z.ZodObject<{
1293
1358
  face_id: z.ZodString;
1359
+ is_large: z.ZodBoolean;
1294
1360
  }, z.core.$strip>;
1295
1361
  }, z.core.$strip>, z.ZodObject<{
1296
1362
  type: z.ZodLiteral<"reply">;
@@ -1338,10 +1404,17 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1338
1404
  type: z.ZodLiteral<"forward">;
1339
1405
  data: z.ZodObject<{
1340
1406
  forward_id: z.ZodString;
1407
+ title: z.ZodString;
1408
+ preview: z.ZodArray<z.ZodString>;
1409
+ summary: z.ZodString;
1341
1410
  }, z.core.$strip>;
1342
1411
  }, z.core.$strip>, z.ZodObject<{
1343
1412
  type: z.ZodLiteral<"market_face">;
1344
1413
  data: z.ZodObject<{
1414
+ emoji_package_id: z.ZodNumber;
1415
+ emoji_id: z.ZodNumber;
1416
+ key: z.ZodString;
1417
+ summary: z.ZodString;
1345
1418
  url: z.ZodString;
1346
1419
  }, z.core.$strip>;
1347
1420
  }, z.core.$strip>, z.ZodObject<{
@@ -1721,6 +1794,22 @@ declare const GetGroupMemberInfoOutput: z.ZodObject<{
1721
1794
  }, z.core.$strip>>;
1722
1795
  }, z.core.$strip>;
1723
1796
  type GetGroupMemberInfoOutput = z.infer<typeof GetGroupMemberInfoOutput>;
1797
+ declare const SetAvatarInput: z.ZodObject<{
1798
+ uri: z.ZodString;
1799
+ }, z.core.$strip>;
1800
+ type SetAvatarInput = z.infer<typeof SetAvatarInput>;
1801
+ declare const SetNicknameInput: z.ZodObject<{
1802
+ new_card: z.ZodString;
1803
+ }, z.core.$strip>;
1804
+ type SetNicknameInput = z.infer<typeof SetNicknameInput>;
1805
+ declare const SetBioInput: z.ZodObject<{
1806
+ new_bio: z.ZodString;
1807
+ }, z.core.$strip>;
1808
+ type SetBioInput = z.infer<typeof SetBioInput>;
1809
+ declare const GetCustomFaceUrlListOutput: z.ZodObject<{
1810
+ urls: z.ZodArray<z.ZodString>;
1811
+ }, z.core.$strip>;
1812
+ type GetCustomFaceUrlListOutput = z.infer<typeof GetCustomFaceUrlListOutput>;
1724
1813
  declare const GetCookiesInput: z.ZodObject<{
1725
1814
  domain: z.ZodString;
1726
1815
  }, z.core.$strip>;
@@ -1753,6 +1842,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
1753
1842
  type: z.ZodLiteral<"face">;
1754
1843
  data: z.ZodObject<{
1755
1844
  face_id: z.ZodString;
1845
+ is_large: z.ZodDefault<z.ZodBoolean>;
1756
1846
  }, z.core.$strip>;
1757
1847
  }, z.core.$strip>, z.ZodObject<{
1758
1848
  type: z.ZodLiteral<"reply">;
@@ -1763,11 +1853,11 @@ declare const SendPrivateMessageInput: z.ZodObject<{
1763
1853
  type: z.ZodLiteral<"image">;
1764
1854
  data: z.ZodObject<{
1765
1855
  uri: z.ZodString;
1766
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1767
- sub_type: z.ZodEnum<{
1856
+ sub_type: z.ZodDefault<z.ZodEnum<{
1768
1857
  normal: "normal";
1769
1858
  sticker: "sticker";
1770
- }>;
1859
+ }>>;
1860
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1771
1861
  }, z.core.$strip>;
1772
1862
  }, z.core.$strip>, z.ZodObject<{
1773
1863
  type: z.ZodLiteral<"record">;
@@ -1803,6 +1893,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
1803
1893
  type: z.ZodLiteral<"face">;
1804
1894
  data: z.ZodObject<{
1805
1895
  face_id: z.ZodString;
1896
+ is_large: z.ZodDefault<z.ZodBoolean>;
1806
1897
  }, z.core.$strip>;
1807
1898
  }, z.core.$strip>, z.ZodObject<{
1808
1899
  type: z.ZodLiteral<"reply">;
@@ -1813,11 +1904,11 @@ declare const SendPrivateMessageInput: z.ZodObject<{
1813
1904
  type: z.ZodLiteral<"image">;
1814
1905
  data: z.ZodObject<{
1815
1906
  uri: z.ZodString;
1816
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1817
- sub_type: z.ZodEnum<{
1907
+ sub_type: z.ZodDefault<z.ZodEnum<{
1818
1908
  normal: "normal";
1819
1909
  sticker: "sticker";
1820
- }>;
1910
+ }>>;
1911
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1821
1912
  }, z.core.$strip>;
1822
1913
  }, z.core.$strip>, z.ZodObject<{
1823
1914
  type: z.ZodLiteral<"record">;
@@ -1860,6 +1951,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
1860
1951
  type: z.ZodLiteral<"face">;
1861
1952
  data: z.ZodObject<{
1862
1953
  face_id: z.ZodString;
1954
+ is_large: z.ZodDefault<z.ZodBoolean>;
1863
1955
  }, z.core.$strip>;
1864
1956
  }, z.core.$strip>, z.ZodObject<{
1865
1957
  type: z.ZodLiteral<"reply">;
@@ -1870,11 +1962,11 @@ declare const SendGroupMessageInput: z.ZodObject<{
1870
1962
  type: z.ZodLiteral<"image">;
1871
1963
  data: z.ZodObject<{
1872
1964
  uri: z.ZodString;
1873
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1874
- sub_type: z.ZodEnum<{
1965
+ sub_type: z.ZodDefault<z.ZodEnum<{
1875
1966
  normal: "normal";
1876
1967
  sticker: "sticker";
1877
- }>;
1968
+ }>>;
1969
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1878
1970
  }, z.core.$strip>;
1879
1971
  }, z.core.$strip>, z.ZodObject<{
1880
1972
  type: z.ZodLiteral<"record">;
@@ -1910,6 +2002,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
1910
2002
  type: z.ZodLiteral<"face">;
1911
2003
  data: z.ZodObject<{
1912
2004
  face_id: z.ZodString;
2005
+ is_large: z.ZodDefault<z.ZodBoolean>;
1913
2006
  }, z.core.$strip>;
1914
2007
  }, z.core.$strip>, z.ZodObject<{
1915
2008
  type: z.ZodLiteral<"reply">;
@@ -1920,11 +2013,11 @@ declare const SendGroupMessageInput: z.ZodObject<{
1920
2013
  type: z.ZodLiteral<"image">;
1921
2014
  data: z.ZodObject<{
1922
2015
  uri: z.ZodString;
1923
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1924
- sub_type: z.ZodEnum<{
2016
+ sub_type: z.ZodDefault<z.ZodEnum<{
1925
2017
  normal: "normal";
1926
2018
  sticker: "sticker";
1927
- }>;
2019
+ }>>;
2020
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1928
2021
  }, z.core.$strip>;
1929
2022
  }, z.core.$strip>, z.ZodObject<{
1930
2023
  type: z.ZodLiteral<"record">;
@@ -1992,6 +2085,7 @@ declare const GetMessageOutput: z.ZodObject<{
1992
2085
  type: z.ZodLiteral<"face">;
1993
2086
  data: z.ZodObject<{
1994
2087
  face_id: z.ZodString;
2088
+ is_large: z.ZodBoolean;
1995
2089
  }, z.core.$strip>;
1996
2090
  }, z.core.$strip>, z.ZodObject<{
1997
2091
  type: z.ZodLiteral<"reply">;
@@ -2039,10 +2133,17 @@ declare const GetMessageOutput: z.ZodObject<{
2039
2133
  type: z.ZodLiteral<"forward">;
2040
2134
  data: z.ZodObject<{
2041
2135
  forward_id: z.ZodString;
2136
+ title: z.ZodString;
2137
+ preview: z.ZodArray<z.ZodString>;
2138
+ summary: z.ZodString;
2042
2139
  }, z.core.$strip>;
2043
2140
  }, z.core.$strip>, z.ZodObject<{
2044
2141
  type: z.ZodLiteral<"market_face">;
2045
2142
  data: z.ZodObject<{
2143
+ emoji_package_id: z.ZodNumber;
2144
+ emoji_id: z.ZodNumber;
2145
+ key: z.ZodString;
2146
+ summary: z.ZodString;
2046
2147
  url: z.ZodString;
2047
2148
  }, z.core.$strip>;
2048
2149
  }, z.core.$strip>, z.ZodObject<{
@@ -2096,6 +2197,7 @@ declare const GetMessageOutput: z.ZodObject<{
2096
2197
  type: z.ZodLiteral<"face">;
2097
2198
  data: z.ZodObject<{
2098
2199
  face_id: z.ZodString;
2200
+ is_large: z.ZodBoolean;
2099
2201
  }, z.core.$strip>;
2100
2202
  }, z.core.$strip>, z.ZodObject<{
2101
2203
  type: z.ZodLiteral<"reply">;
@@ -2143,10 +2245,17 @@ declare const GetMessageOutput: z.ZodObject<{
2143
2245
  type: z.ZodLiteral<"forward">;
2144
2246
  data: z.ZodObject<{
2145
2247
  forward_id: z.ZodString;
2248
+ title: z.ZodString;
2249
+ preview: z.ZodArray<z.ZodString>;
2250
+ summary: z.ZodString;
2146
2251
  }, z.core.$strip>;
2147
2252
  }, z.core.$strip>, z.ZodObject<{
2148
2253
  type: z.ZodLiteral<"market_face">;
2149
2254
  data: z.ZodObject<{
2255
+ emoji_package_id: z.ZodNumber;
2256
+ emoji_id: z.ZodNumber;
2257
+ key: z.ZodString;
2258
+ summary: z.ZodString;
2150
2259
  url: z.ZodString;
2151
2260
  }, z.core.$strip>;
2152
2261
  }, z.core.$strip>, z.ZodObject<{
@@ -2212,6 +2321,7 @@ declare const GetMessageOutput: z.ZodObject<{
2212
2321
  type: z.ZodLiteral<"face">;
2213
2322
  data: z.ZodObject<{
2214
2323
  face_id: z.ZodString;
2324
+ is_large: z.ZodBoolean;
2215
2325
  }, z.core.$strip>;
2216
2326
  }, z.core.$strip>, z.ZodObject<{
2217
2327
  type: z.ZodLiteral<"reply">;
@@ -2259,10 +2369,17 @@ declare const GetMessageOutput: z.ZodObject<{
2259
2369
  type: z.ZodLiteral<"forward">;
2260
2370
  data: z.ZodObject<{
2261
2371
  forward_id: z.ZodString;
2372
+ title: z.ZodString;
2373
+ preview: z.ZodArray<z.ZodString>;
2374
+ summary: z.ZodString;
2262
2375
  }, z.core.$strip>;
2263
2376
  }, z.core.$strip>, z.ZodObject<{
2264
2377
  type: z.ZodLiteral<"market_face">;
2265
2378
  data: z.ZodObject<{
2379
+ emoji_package_id: z.ZodNumber;
2380
+ emoji_id: z.ZodNumber;
2381
+ key: z.ZodString;
2382
+ summary: z.ZodString;
2266
2383
  url: z.ZodString;
2267
2384
  }, z.core.$strip>;
2268
2385
  }, z.core.$strip>, z.ZodObject<{
@@ -2322,6 +2439,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
2322
2439
  type: z.ZodLiteral<"face">;
2323
2440
  data: z.ZodObject<{
2324
2441
  face_id: z.ZodString;
2442
+ is_large: z.ZodBoolean;
2325
2443
  }, z.core.$strip>;
2326
2444
  }, z.core.$strip>, z.ZodObject<{
2327
2445
  type: z.ZodLiteral<"reply">;
@@ -2369,10 +2487,17 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
2369
2487
  type: z.ZodLiteral<"forward">;
2370
2488
  data: z.ZodObject<{
2371
2489
  forward_id: z.ZodString;
2490
+ title: z.ZodString;
2491
+ preview: z.ZodArray<z.ZodString>;
2492
+ summary: z.ZodString;
2372
2493
  }, z.core.$strip>;
2373
2494
  }, z.core.$strip>, z.ZodObject<{
2374
2495
  type: z.ZodLiteral<"market_face">;
2375
2496
  data: z.ZodObject<{
2497
+ emoji_package_id: z.ZodNumber;
2498
+ emoji_id: z.ZodNumber;
2499
+ key: z.ZodString;
2500
+ summary: z.ZodString;
2376
2501
  url: z.ZodString;
2377
2502
  }, z.core.$strip>;
2378
2503
  }, z.core.$strip>, z.ZodObject<{
@@ -2426,6 +2551,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
2426
2551
  type: z.ZodLiteral<"face">;
2427
2552
  data: z.ZodObject<{
2428
2553
  face_id: z.ZodString;
2554
+ is_large: z.ZodBoolean;
2429
2555
  }, z.core.$strip>;
2430
2556
  }, z.core.$strip>, z.ZodObject<{
2431
2557
  type: z.ZodLiteral<"reply">;
@@ -2473,10 +2599,17 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
2473
2599
  type: z.ZodLiteral<"forward">;
2474
2600
  data: z.ZodObject<{
2475
2601
  forward_id: z.ZodString;
2602
+ title: z.ZodString;
2603
+ preview: z.ZodArray<z.ZodString>;
2604
+ summary: z.ZodString;
2476
2605
  }, z.core.$strip>;
2477
2606
  }, z.core.$strip>, z.ZodObject<{
2478
2607
  type: z.ZodLiteral<"market_face">;
2479
2608
  data: z.ZodObject<{
2609
+ emoji_package_id: z.ZodNumber;
2610
+ emoji_id: z.ZodNumber;
2611
+ key: z.ZodString;
2612
+ summary: z.ZodString;
2480
2613
  url: z.ZodString;
2481
2614
  }, z.core.$strip>;
2482
2615
  }, z.core.$strip>, z.ZodObject<{
@@ -2542,6 +2675,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
2542
2675
  type: z.ZodLiteral<"face">;
2543
2676
  data: z.ZodObject<{
2544
2677
  face_id: z.ZodString;
2678
+ is_large: z.ZodBoolean;
2545
2679
  }, z.core.$strip>;
2546
2680
  }, z.core.$strip>, z.ZodObject<{
2547
2681
  type: z.ZodLiteral<"reply">;
@@ -2589,10 +2723,17 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
2589
2723
  type: z.ZodLiteral<"forward">;
2590
2724
  data: z.ZodObject<{
2591
2725
  forward_id: z.ZodString;
2726
+ title: z.ZodString;
2727
+ preview: z.ZodArray<z.ZodString>;
2728
+ summary: z.ZodString;
2592
2729
  }, z.core.$strip>;
2593
2730
  }, z.core.$strip>, z.ZodObject<{
2594
2731
  type: z.ZodLiteral<"market_face">;
2595
2732
  data: z.ZodObject<{
2733
+ emoji_package_id: z.ZodNumber;
2734
+ emoji_id: z.ZodNumber;
2735
+ key: z.ZodString;
2736
+ summary: z.ZodString;
2596
2737
  url: z.ZodString;
2597
2738
  }, z.core.$strip>;
2598
2739
  }, z.core.$strip>, z.ZodObject<{
@@ -2652,6 +2793,7 @@ declare const GetForwardedMessagesOutput: z.ZodObject<{
2652
2793
  type: z.ZodLiteral<"face">;
2653
2794
  data: z.ZodObject<{
2654
2795
  face_id: z.ZodString;
2796
+ is_large: z.ZodBoolean;
2655
2797
  }, z.core.$strip>;
2656
2798
  }, z.core.$strip>, z.ZodObject<{
2657
2799
  type: z.ZodLiteral<"reply">;
@@ -2699,10 +2841,17 @@ declare const GetForwardedMessagesOutput: z.ZodObject<{
2699
2841
  type: z.ZodLiteral<"forward">;
2700
2842
  data: z.ZodObject<{
2701
2843
  forward_id: z.ZodString;
2844
+ title: z.ZodString;
2845
+ preview: z.ZodArray<z.ZodString>;
2846
+ summary: z.ZodString;
2702
2847
  }, z.core.$strip>;
2703
2848
  }, z.core.$strip>, z.ZodObject<{
2704
2849
  type: z.ZodLiteral<"market_face">;
2705
2850
  data: z.ZodObject<{
2851
+ emoji_package_id: z.ZodNumber;
2852
+ emoji_id: z.ZodNumber;
2853
+ key: z.ZodString;
2854
+ summary: z.ZodString;
2706
2855
  url: z.ZodString;
2707
2856
  }, z.core.$strip>;
2708
2857
  }, z.core.$strip>, z.ZodObject<{
@@ -2742,6 +2891,10 @@ declare const SendProfileLikeInput: z.ZodObject<{
2742
2891
  count: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
2743
2892
  }, z.core.$strip>;
2744
2893
  type SendProfileLikeInput = z.infer<typeof SendProfileLikeInput>;
2894
+ declare const DeleteFriendInput: z.ZodObject<{
2895
+ user_id: z.ZodNumber;
2896
+ }, z.core.$strip>;
2897
+ type DeleteFriendInput = z.infer<typeof DeleteFriendInput>;
2745
2898
  declare const GetFriendRequestsInput: z.ZodObject<{
2746
2899
  limit: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
2747
2900
  is_filtered: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
@@ -2882,6 +3035,7 @@ declare const GetGroupEssenceMessagesOutput: z.ZodObject<{
2882
3035
  type: z.ZodLiteral<"face">;
2883
3036
  data: z.ZodObject<{
2884
3037
  face_id: z.ZodString;
3038
+ is_large: z.ZodBoolean;
2885
3039
  }, z.core.$strip>;
2886
3040
  }, z.core.$strip>, z.ZodObject<{
2887
3041
  type: z.ZodLiteral<"reply">;
@@ -2929,10 +3083,17 @@ declare const GetGroupEssenceMessagesOutput: z.ZodObject<{
2929
3083
  type: z.ZodLiteral<"forward">;
2930
3084
  data: z.ZodObject<{
2931
3085
  forward_id: z.ZodString;
3086
+ title: z.ZodString;
3087
+ preview: z.ZodArray<z.ZodString>;
3088
+ summary: z.ZodString;
2932
3089
  }, z.core.$strip>;
2933
3090
  }, z.core.$strip>, z.ZodObject<{
2934
3091
  type: z.ZodLiteral<"market_face">;
2935
3092
  data: z.ZodObject<{
3093
+ emoji_package_id: z.ZodNumber;
3094
+ emoji_id: z.ZodNumber;
3095
+ key: z.ZodString;
3096
+ summary: z.ZodString;
2936
3097
  url: z.ZodString;
2937
3098
  }, z.core.$strip>;
2938
3099
  }, z.core.$strip>, z.ZodObject<{
@@ -3171,8 +3332,8 @@ declare const DeleteGroupFolderInput: z.ZodObject<{
3171
3332
  }, z.core.$strip>;
3172
3333
  type DeleteGroupFolderInput = z.infer<typeof DeleteGroupFolderInput>;
3173
3334
 
3174
- declare const milkyVersion = "1.0";
3175
3335
  declare const milkyPackageVersion: string;
3336
+ declare const milkyVersion: string;
3176
3337
 
3177
3338
  type types_AcceptFriendRequestInput = AcceptFriendRequestInput;
3178
3339
  type types_AcceptGroupInvitationInput = AcceptGroupInvitationInput;
@@ -3180,6 +3341,7 @@ type types_AcceptGroupRequestInput = AcceptGroupRequestInput;
3180
3341
  type types_BotOfflineEvent = BotOfflineEvent;
3181
3342
  type types_CreateGroupFolderInput = CreateGroupFolderInput;
3182
3343
  type types_CreateGroupFolderOutput = CreateGroupFolderOutput;
3344
+ type types_DeleteFriendInput = DeleteFriendInput;
3183
3345
  type types_DeleteGroupAnnouncementInput = DeleteGroupAnnouncementInput;
3184
3346
  type types_DeleteGroupFileInput = DeleteGroupFileInput;
3185
3347
  type types_DeleteGroupFolderInput = DeleteGroupFolderInput;
@@ -3193,6 +3355,7 @@ type types_FriendRequestEvent = FriendRequestEvent;
3193
3355
  type types_GetCSRFTokenOutput = GetCSRFTokenOutput;
3194
3356
  type types_GetCookiesInput = GetCookiesInput;
3195
3357
  type types_GetCookiesOutput = GetCookiesOutput;
3358
+ type types_GetCustomFaceUrlListOutput = GetCustomFaceUrlListOutput;
3196
3359
  type types_GetForwardedMessagesInput = GetForwardedMessagesInput;
3197
3360
  type types_GetForwardedMessagesOutput = GetForwardedMessagesOutput;
3198
3361
  type types_GetFriendInfoInput = GetFriendInfoInput;
@@ -3279,6 +3442,8 @@ type types_SendGroupNudgeInput = SendGroupNudgeInput;
3279
3442
  type types_SendPrivateMessageInput = SendPrivateMessageInput;
3280
3443
  type types_SendPrivateMessageOutput = SendPrivateMessageOutput;
3281
3444
  type types_SendProfileLikeInput = SendProfileLikeInput;
3445
+ type types_SetAvatarInput = SetAvatarInput;
3446
+ type types_SetBioInput = SetBioInput;
3282
3447
  type types_SetGroupAvatarInput = SetGroupAvatarInput;
3283
3448
  type types_SetGroupEssenceMessageInput = SetGroupEssenceMessageInput;
3284
3449
  type types_SetGroupMemberAdminInput = SetGroupMemberAdminInput;
@@ -3287,7 +3452,7 @@ type types_SetGroupMemberMuteInput = SetGroupMemberMuteInput;
3287
3452
  type types_SetGroupMemberSpecialTitleInput = SetGroupMemberSpecialTitleInput;
3288
3453
  type types_SetGroupNameInput = SetGroupNameInput;
3289
3454
  type types_SetGroupWholeMuteInput = SetGroupWholeMuteInput;
3290
- declare const types_SharedSegment: typeof SharedSegment;
3455
+ type types_SetNicknameInput = SetNicknameInput;
3291
3456
  type types_UploadGroupFileInput = UploadGroupFileInput;
3292
3457
  type types_UploadGroupFileOutput = UploadGroupFileOutput;
3293
3458
  type types_UploadPrivateFileInput = UploadPrivateFileInput;
@@ -3300,10 +3465,11 @@ declare const types_ZInt64: typeof ZInt64;
3300
3465
  declare const types_ZInt64WithDefault: typeof ZInt64WithDefault;
3301
3466
  declare const types_ZString: typeof ZString;
3302
3467
  declare const types_ZStringWithDefault: typeof ZStringWithDefault;
3468
+ declare const types_ZUin: typeof ZUin;
3303
3469
  declare const types_milkyPackageVersion: typeof milkyPackageVersion;
3304
3470
  declare const types_milkyVersion: typeof milkyVersion;
3305
3471
  declare namespace types {
3306
- export { type types_AcceptFriendRequestInput as AcceptFriendRequestInput, type types_AcceptGroupInvitationInput as AcceptGroupInvitationInput, type types_AcceptGroupRequestInput as AcceptGroupRequestInput, type types_BotOfflineEvent as BotOfflineEvent, type types_CreateGroupFolderInput as CreateGroupFolderInput, type types_CreateGroupFolderOutput as CreateGroupFolderOutput, type types_DeleteGroupAnnouncementInput as DeleteGroupAnnouncementInput, type types_DeleteGroupFileInput as DeleteGroupFileInput, type types_DeleteGroupFolderInput as DeleteGroupFolderInput, type types_Event as Event, type types_FriendCategoryEntity as FriendCategoryEntity, type types_FriendEntity as FriendEntity, type types_FriendFileUploadEvent as FriendFileUploadEvent, type types_FriendNudgeEvent as FriendNudgeEvent, type types_FriendRequest as FriendRequest, type types_FriendRequestEvent as FriendRequestEvent, type types_GetCSRFTokenOutput as GetCSRFTokenOutput, type types_GetCookiesInput as GetCookiesInput, type types_GetCookiesOutput as GetCookiesOutput, type types_GetForwardedMessagesInput as GetForwardedMessagesInput, type types_GetForwardedMessagesOutput as GetForwardedMessagesOutput, type types_GetFriendInfoInput as GetFriendInfoInput, type types_GetFriendInfoOutput as GetFriendInfoOutput, type types_GetFriendListInput as GetFriendListInput, type types_GetFriendListOutput as GetFriendListOutput, type types_GetFriendRequestsInput as GetFriendRequestsInput, type types_GetFriendRequestsOutput as GetFriendRequestsOutput, type types_GetGroupAnnouncementsInput as GetGroupAnnouncementsInput, type types_GetGroupAnnouncementsOutput as GetGroupAnnouncementsOutput, type types_GetGroupEssenceMessagesInput as GetGroupEssenceMessagesInput, type types_GetGroupEssenceMessagesOutput as GetGroupEssenceMessagesOutput, type types_GetGroupFileDownloadUrlInput as GetGroupFileDownloadUrlInput, type types_GetGroupFileDownloadUrlOutput as GetGroupFileDownloadUrlOutput, type types_GetGroupFilesInput as GetGroupFilesInput, type types_GetGroupFilesOutput as GetGroupFilesOutput, type types_GetGroupInfoInput as GetGroupInfoInput, type types_GetGroupInfoOutput as GetGroupInfoOutput, type types_GetGroupListInput as GetGroupListInput, type types_GetGroupListOutput as GetGroupListOutput, type types_GetGroupMemberInfoInput as GetGroupMemberInfoInput, type types_GetGroupMemberInfoOutput as GetGroupMemberInfoOutput, type types_GetGroupMemberListInput as GetGroupMemberListInput, type types_GetGroupMemberListOutput as GetGroupMemberListOutput, type types_GetGroupNotificationsInput as GetGroupNotificationsInput, type types_GetGroupNotificationsOutput as GetGroupNotificationsOutput, type types_GetHistoryMessagesInput as GetHistoryMessagesInput, type types_GetHistoryMessagesOutput as GetHistoryMessagesOutput, type types_GetImplInfoOutput as GetImplInfoOutput, type types_GetLoginInfoOutput as GetLoginInfoOutput, type types_GetMessageInput as GetMessageInput, type types_GetMessageOutput as GetMessageOutput, type types_GetPrivateFileDownloadUrlInput as GetPrivateFileDownloadUrlInput, type types_GetPrivateFileDownloadUrlOutput as GetPrivateFileDownloadUrlOutput, type types_GetResourceTempUrlInput as GetResourceTempUrlInput, type types_GetResourceTempUrlOutput as GetResourceTempUrlOutput, type types_GetUserProfileInput as GetUserProfileInput, type types_GetUserProfileOutput as GetUserProfileOutput, type types_GroupAdminChangeEvent as GroupAdminChangeEvent, type types_GroupAnnouncementEntity as GroupAnnouncementEntity, type types_GroupEntity as GroupEntity, type types_GroupEssenceMessage as GroupEssenceMessage, type types_GroupEssenceMessageChangeEvent as GroupEssenceMessageChangeEvent, type types_GroupFileEntity as GroupFileEntity, type types_GroupFileUploadEvent as GroupFileUploadEvent, type types_GroupFolderEntity as GroupFolderEntity, type types_GroupInvitationEvent as GroupInvitationEvent, type types_GroupInvitedJoinRequestEvent as GroupInvitedJoinRequestEvent, type types_GroupJoinRequestEvent as GroupJoinRequestEvent, type types_GroupMemberDecreaseEvent as GroupMemberDecreaseEvent, type types_GroupMemberEntity as GroupMemberEntity, type types_GroupMemberIncreaseEvent as GroupMemberIncreaseEvent, type types_GroupMessageReactionEvent as GroupMessageReactionEvent, type types_GroupMuteEvent as GroupMuteEvent, type types_GroupNameChangeEvent as GroupNameChangeEvent, type types_GroupNotification as GroupNotification, type types_GroupNudgeEvent as GroupNudgeEvent, type types_GroupWholeMuteEvent as GroupWholeMuteEvent, type types_IncomingForwardedMessage as IncomingForwardedMessage, type types_IncomingMessage as IncomingMessage, types_IncomingResourceSegmentBase as IncomingResourceSegmentBase, type types_IncomingSegment as IncomingSegment, type types_KickGroupMemberInput as KickGroupMemberInput, type types_MarkMessageAsReadInput as MarkMessageAsReadInput, type types_MessageRecallEvent as MessageRecallEvent, type types_MoveGroupFileInput as MoveGroupFileInput, type types_OutgoingForwardedMessage as OutgoingForwardedMessage, types_OutgoingResourceSegmentBase as OutgoingResourceSegmentBase, type types_OutgoingSegment as OutgoingSegment, type types_QuitGroupInput as QuitGroupInput, type types_RecallGroupMessageInput as RecallGroupMessageInput, type types_RecallPrivateMessageInput as RecallPrivateMessageInput, type types_RejectFriendRequestInput as RejectFriendRequestInput, type types_RejectGroupInvitationInput as RejectGroupInvitationInput, type types_RejectGroupRequestInput as RejectGroupRequestInput, type types_RenameGroupFileInput as RenameGroupFileInput, type types_RenameGroupFolderInput as RenameGroupFolderInput, type types_SendFriendNudgeInput as SendFriendNudgeInput, type types_SendGroupAnnouncementInput as SendGroupAnnouncementInput, type types_SendGroupMessageInput as SendGroupMessageInput, type types_SendGroupMessageOutput as SendGroupMessageOutput, type types_SendGroupMessageReactionInput as SendGroupMessageReactionInput, type types_SendGroupNudgeInput as SendGroupNudgeInput, type types_SendPrivateMessageInput as SendPrivateMessageInput, type types_SendPrivateMessageOutput as SendPrivateMessageOutput, type types_SendProfileLikeInput as SendProfileLikeInput, type types_SetGroupAvatarInput as SetGroupAvatarInput, type types_SetGroupEssenceMessageInput as SetGroupEssenceMessageInput, type types_SetGroupMemberAdminInput as SetGroupMemberAdminInput, type types_SetGroupMemberCardInput as SetGroupMemberCardInput, type types_SetGroupMemberMuteInput as SetGroupMemberMuteInput, type types_SetGroupMemberSpecialTitleInput as SetGroupMemberSpecialTitleInput, type types_SetGroupNameInput as SetGroupNameInput, type types_SetGroupWholeMuteInput as SetGroupWholeMuteInput, types_SharedSegment as SharedSegment, type types_UploadGroupFileInput as UploadGroupFileInput, type types_UploadGroupFileOutput as UploadGroupFileOutput, type types_UploadPrivateFileInput as UploadPrivateFileInput, type types_UploadPrivateFileOutput as UploadPrivateFileOutput, types_ZBoolean as ZBoolean, types_ZBooleanWithDefault as ZBooleanWithDefault, types_ZInt32 as ZInt32, types_ZInt32WithDefault as ZInt32WithDefault, types_ZInt64 as ZInt64, types_ZInt64WithDefault as ZInt64WithDefault, types_ZString as ZString, types_ZStringWithDefault as ZStringWithDefault, types_milkyPackageVersion as milkyPackageVersion, types_milkyVersion as milkyVersion };
3472
+ export { type types_AcceptFriendRequestInput as AcceptFriendRequestInput, type types_AcceptGroupInvitationInput as AcceptGroupInvitationInput, type types_AcceptGroupRequestInput as AcceptGroupRequestInput, type types_BotOfflineEvent as BotOfflineEvent, type types_CreateGroupFolderInput as CreateGroupFolderInput, type types_CreateGroupFolderOutput as CreateGroupFolderOutput, type types_DeleteFriendInput as DeleteFriendInput, type types_DeleteGroupAnnouncementInput as DeleteGroupAnnouncementInput, type types_DeleteGroupFileInput as DeleteGroupFileInput, type types_DeleteGroupFolderInput as DeleteGroupFolderInput, type types_Event as Event, type types_FriendCategoryEntity as FriendCategoryEntity, type types_FriendEntity as FriendEntity, type types_FriendFileUploadEvent as FriendFileUploadEvent, type types_FriendNudgeEvent as FriendNudgeEvent, type types_FriendRequest as FriendRequest, type types_FriendRequestEvent as FriendRequestEvent, type types_GetCSRFTokenOutput as GetCSRFTokenOutput, type types_GetCookiesInput as GetCookiesInput, type types_GetCookiesOutput as GetCookiesOutput, type types_GetCustomFaceUrlListOutput as GetCustomFaceUrlListOutput, type types_GetForwardedMessagesInput as GetForwardedMessagesInput, type types_GetForwardedMessagesOutput as GetForwardedMessagesOutput, type types_GetFriendInfoInput as GetFriendInfoInput, type types_GetFriendInfoOutput as GetFriendInfoOutput, type types_GetFriendListInput as GetFriendListInput, type types_GetFriendListOutput as GetFriendListOutput, type types_GetFriendRequestsInput as GetFriendRequestsInput, type types_GetFriendRequestsOutput as GetFriendRequestsOutput, type types_GetGroupAnnouncementsInput as GetGroupAnnouncementsInput, type types_GetGroupAnnouncementsOutput as GetGroupAnnouncementsOutput, type types_GetGroupEssenceMessagesInput as GetGroupEssenceMessagesInput, type types_GetGroupEssenceMessagesOutput as GetGroupEssenceMessagesOutput, type types_GetGroupFileDownloadUrlInput as GetGroupFileDownloadUrlInput, type types_GetGroupFileDownloadUrlOutput as GetGroupFileDownloadUrlOutput, type types_GetGroupFilesInput as GetGroupFilesInput, type types_GetGroupFilesOutput as GetGroupFilesOutput, type types_GetGroupInfoInput as GetGroupInfoInput, type types_GetGroupInfoOutput as GetGroupInfoOutput, type types_GetGroupListInput as GetGroupListInput, type types_GetGroupListOutput as GetGroupListOutput, type types_GetGroupMemberInfoInput as GetGroupMemberInfoInput, type types_GetGroupMemberInfoOutput as GetGroupMemberInfoOutput, type types_GetGroupMemberListInput as GetGroupMemberListInput, type types_GetGroupMemberListOutput as GetGroupMemberListOutput, type types_GetGroupNotificationsInput as GetGroupNotificationsInput, type types_GetGroupNotificationsOutput as GetGroupNotificationsOutput, type types_GetHistoryMessagesInput as GetHistoryMessagesInput, type types_GetHistoryMessagesOutput as GetHistoryMessagesOutput, type types_GetImplInfoOutput as GetImplInfoOutput, type types_GetLoginInfoOutput as GetLoginInfoOutput, type types_GetMessageInput as GetMessageInput, type types_GetMessageOutput as GetMessageOutput, type types_GetPrivateFileDownloadUrlInput as GetPrivateFileDownloadUrlInput, type types_GetPrivateFileDownloadUrlOutput as GetPrivateFileDownloadUrlOutput, type types_GetResourceTempUrlInput as GetResourceTempUrlInput, type types_GetResourceTempUrlOutput as GetResourceTempUrlOutput, type types_GetUserProfileInput as GetUserProfileInput, type types_GetUserProfileOutput as GetUserProfileOutput, type types_GroupAdminChangeEvent as GroupAdminChangeEvent, type types_GroupAnnouncementEntity as GroupAnnouncementEntity, type types_GroupEntity as GroupEntity, type types_GroupEssenceMessage as GroupEssenceMessage, type types_GroupEssenceMessageChangeEvent as GroupEssenceMessageChangeEvent, type types_GroupFileEntity as GroupFileEntity, type types_GroupFileUploadEvent as GroupFileUploadEvent, type types_GroupFolderEntity as GroupFolderEntity, type types_GroupInvitationEvent as GroupInvitationEvent, type types_GroupInvitedJoinRequestEvent as GroupInvitedJoinRequestEvent, type types_GroupJoinRequestEvent as GroupJoinRequestEvent, type types_GroupMemberDecreaseEvent as GroupMemberDecreaseEvent, type types_GroupMemberEntity as GroupMemberEntity, type types_GroupMemberIncreaseEvent as GroupMemberIncreaseEvent, type types_GroupMessageReactionEvent as GroupMessageReactionEvent, type types_GroupMuteEvent as GroupMuteEvent, type types_GroupNameChangeEvent as GroupNameChangeEvent, type types_GroupNotification as GroupNotification, type types_GroupNudgeEvent as GroupNudgeEvent, type types_GroupWholeMuteEvent as GroupWholeMuteEvent, type types_IncomingForwardedMessage as IncomingForwardedMessage, type types_IncomingMessage as IncomingMessage, types_IncomingResourceSegmentBase as IncomingResourceSegmentBase, type types_IncomingSegment as IncomingSegment, type types_KickGroupMemberInput as KickGroupMemberInput, type types_MarkMessageAsReadInput as MarkMessageAsReadInput, type types_MessageRecallEvent as MessageRecallEvent, type types_MoveGroupFileInput as MoveGroupFileInput, type types_OutgoingForwardedMessage as OutgoingForwardedMessage, types_OutgoingResourceSegmentBase as OutgoingResourceSegmentBase, type types_OutgoingSegment as OutgoingSegment, type types_QuitGroupInput as QuitGroupInput, type types_RecallGroupMessageInput as RecallGroupMessageInput, type types_RecallPrivateMessageInput as RecallPrivateMessageInput, type types_RejectFriendRequestInput as RejectFriendRequestInput, type types_RejectGroupInvitationInput as RejectGroupInvitationInput, type types_RejectGroupRequestInput as RejectGroupRequestInput, type types_RenameGroupFileInput as RenameGroupFileInput, type types_RenameGroupFolderInput as RenameGroupFolderInput, type types_SendFriendNudgeInput as SendFriendNudgeInput, type types_SendGroupAnnouncementInput as SendGroupAnnouncementInput, type types_SendGroupMessageInput as SendGroupMessageInput, type types_SendGroupMessageOutput as SendGroupMessageOutput, type types_SendGroupMessageReactionInput as SendGroupMessageReactionInput, type types_SendGroupNudgeInput as SendGroupNudgeInput, type types_SendPrivateMessageInput as SendPrivateMessageInput, type types_SendPrivateMessageOutput as SendPrivateMessageOutput, type types_SendProfileLikeInput as SendProfileLikeInput, type types_SetAvatarInput as SetAvatarInput, type types_SetBioInput as SetBioInput, type types_SetGroupAvatarInput as SetGroupAvatarInput, type types_SetGroupEssenceMessageInput as SetGroupEssenceMessageInput, type types_SetGroupMemberAdminInput as SetGroupMemberAdminInput, type types_SetGroupMemberCardInput as SetGroupMemberCardInput, type types_SetGroupMemberMuteInput as SetGroupMemberMuteInput, type types_SetGroupMemberSpecialTitleInput as SetGroupMemberSpecialTitleInput, type types_SetGroupNameInput as SetGroupNameInput, type types_SetGroupWholeMuteInput as SetGroupWholeMuteInput, type types_SetNicknameInput as SetNicknameInput, type types_UploadGroupFileInput as UploadGroupFileInput, type types_UploadGroupFileOutput as UploadGroupFileOutput, type types_UploadPrivateFileInput as UploadPrivateFileInput, type types_UploadPrivateFileOutput as UploadPrivateFileOutput, types_ZBoolean as ZBoolean, types_ZBooleanWithDefault as ZBooleanWithDefault, types_ZInt32 as ZInt32, types_ZInt32WithDefault as ZInt32WithDefault, types_ZInt64 as ZInt64, types_ZInt64WithDefault as ZInt64WithDefault, types_ZString as ZString, types_ZStringWithDefault as ZStringWithDefault, types_ZUin as ZUin, types_milkyPackageVersion as milkyPackageVersion, types_milkyVersion as milkyVersion };
3307
3473
  }
3308
3474
 
3309
- export { GetFriendInfoOutput as $, FriendFileUploadEvent as A, BotOfflineEvent as B, GroupAdminChangeEvent as C, GroupEssenceMessageChangeEvent as D, GroupMemberIncreaseEvent as E, FriendCategoryEntity as F, GroupEntity as G, GroupMemberDecreaseEvent as H, IncomingResourceSegmentBase as I, GroupNameChangeEvent as J, GroupMessageReactionEvent as K, GroupMuteEvent as L, MessageRecallEvent as M, GroupWholeMuteEvent as N, OutgoingResourceSegmentBase as O, GroupNudgeEvent as P, GroupFileUploadEvent as Q, Event as R, SharedSegment as S, GetLoginInfoOutput as T, GetImplInfoOutput as U, GetUserProfileInput as V, GetUserProfileOutput as W, GetFriendListInput as X, GetFriendListOutput as Y, ZInt32 as Z, GetFriendInfoInput as _, ZInt64 as a, GetGroupFileDownloadUrlOutput as a$, GetGroupListInput as a0, GetGroupListOutput as a1, GetGroupInfoInput as a2, GetGroupInfoOutput as a3, GetGroupMemberListInput as a4, GetGroupMemberListOutput as a5, GetGroupMemberInfoInput as a6, GetGroupMemberInfoOutput as a7, GetCookiesInput as a8, GetCookiesOutput as a9, SetGroupMemberAdminInput as aA, SetGroupMemberMuteInput as aB, SetGroupWholeMuteInput as aC, KickGroupMemberInput as aD, GetGroupAnnouncementsInput as aE, GetGroupAnnouncementsOutput as aF, SendGroupAnnouncementInput as aG, DeleteGroupAnnouncementInput as aH, GetGroupEssenceMessagesInput as aI, GetGroupEssenceMessagesOutput as aJ, SetGroupEssenceMessageInput as aK, QuitGroupInput as aL, SendGroupMessageReactionInput as aM, SendGroupNudgeInput as aN, GetGroupNotificationsInput as aO, GetGroupNotificationsOutput as aP, AcceptGroupRequestInput as aQ, RejectGroupRequestInput as aR, AcceptGroupInvitationInput as aS, RejectGroupInvitationInput as aT, UploadPrivateFileInput as aU, UploadPrivateFileOutput as aV, UploadGroupFileInput as aW, UploadGroupFileOutput as aX, GetPrivateFileDownloadUrlInput as aY, GetPrivateFileDownloadUrlOutput as aZ, GetGroupFileDownloadUrlInput as a_, GetCSRFTokenOutput as aa, SendPrivateMessageInput as ab, SendPrivateMessageOutput as ac, SendGroupMessageInput as ad, SendGroupMessageOutput as ae, RecallPrivateMessageInput as af, RecallGroupMessageInput as ag, GetMessageInput as ah, GetMessageOutput as ai, GetHistoryMessagesInput as aj, GetHistoryMessagesOutput as ak, GetResourceTempUrlInput as al, GetResourceTempUrlOutput as am, GetForwardedMessagesInput as an, GetForwardedMessagesOutput as ao, MarkMessageAsReadInput as ap, SendFriendNudgeInput as aq, SendProfileLikeInput as ar, GetFriendRequestsInput as as, GetFriendRequestsOutput as at, AcceptFriendRequestInput as au, RejectFriendRequestInput as av, SetGroupNameInput as aw, SetGroupAvatarInput as ax, SetGroupMemberCardInput as ay, SetGroupMemberSpecialTitleInput as az, ZBoolean as b, GetGroupFilesInput as b0, GetGroupFilesOutput as b1, MoveGroupFileInput as b2, RenameGroupFileInput as b3, DeleteGroupFileInput as b4, CreateGroupFolderInput as b5, CreateGroupFolderOutput as b6, RenameGroupFolderInput as b7, DeleteGroupFolderInput as b8, milkyVersion as b9, milkyPackageVersion as ba, ZString as c, ZInt32WithDefault as d, ZInt64WithDefault as e, ZBooleanWithDefault as f, ZStringWithDefault as g, FriendEntity as h, GroupMemberEntity as i, GroupAnnouncementEntity as j, GroupFileEntity as k, GroupFolderEntity as l, FriendRequest as m, GroupNotification as n, IncomingSegment as o, IncomingForwardedMessage as p, OutgoingSegment as q, OutgoingForwardedMessage as r, IncomingMessage as s, types as t, GroupEssenceMessage as u, FriendRequestEvent as v, GroupJoinRequestEvent as w, GroupInvitedJoinRequestEvent as x, GroupInvitationEvent as y, FriendNudgeEvent as z };
3475
+ export { GetFriendInfoOutput as $, FriendNudgeEvent as A, BotOfflineEvent as B, FriendFileUploadEvent as C, GroupAdminChangeEvent as D, GroupEssenceMessageChangeEvent as E, FriendCategoryEntity as F, GroupEntity as G, GroupMemberIncreaseEvent as H, IncomingResourceSegmentBase as I, GroupMemberDecreaseEvent as J, GroupNameChangeEvent as K, GroupMessageReactionEvent as L, MessageRecallEvent as M, GroupMuteEvent as N, OutgoingResourceSegmentBase as O, GroupWholeMuteEvent as P, GroupNudgeEvent as Q, GroupFileUploadEvent as R, Event as S, GetLoginInfoOutput as T, GetImplInfoOutput as U, GetUserProfileInput as V, GetUserProfileOutput as W, GetFriendListInput as X, GetFriendListOutput as Y, ZInt32 as Z, GetFriendInfoInput as _, ZInt64 as a, UploadGroupFileInput as a$, GetGroupListInput as a0, GetGroupListOutput as a1, GetGroupInfoInput as a2, GetGroupInfoOutput as a3, GetGroupMemberListInput as a4, GetGroupMemberListOutput as a5, GetGroupMemberInfoInput as a6, GetGroupMemberInfoOutput as a7, SetAvatarInput as a8, SetNicknameInput as a9, RejectFriendRequestInput as aA, SetGroupNameInput as aB, SetGroupAvatarInput as aC, SetGroupMemberCardInput as aD, SetGroupMemberSpecialTitleInput as aE, SetGroupMemberAdminInput as aF, SetGroupMemberMuteInput as aG, SetGroupWholeMuteInput as aH, KickGroupMemberInput as aI, GetGroupAnnouncementsInput as aJ, GetGroupAnnouncementsOutput as aK, SendGroupAnnouncementInput as aL, DeleteGroupAnnouncementInput as aM, GetGroupEssenceMessagesInput as aN, GetGroupEssenceMessagesOutput as aO, SetGroupEssenceMessageInput as aP, QuitGroupInput as aQ, SendGroupMessageReactionInput as aR, SendGroupNudgeInput as aS, GetGroupNotificationsInput as aT, GetGroupNotificationsOutput as aU, AcceptGroupRequestInput as aV, RejectGroupRequestInput as aW, AcceptGroupInvitationInput as aX, RejectGroupInvitationInput as aY, UploadPrivateFileInput as aZ, UploadPrivateFileOutput as a_, SetBioInput as aa, GetCustomFaceUrlListOutput as ab, GetCookiesInput as ac, GetCookiesOutput as ad, GetCSRFTokenOutput as ae, SendPrivateMessageInput as af, SendPrivateMessageOutput as ag, SendGroupMessageInput as ah, SendGroupMessageOutput as ai, RecallPrivateMessageInput as aj, RecallGroupMessageInput as ak, GetMessageInput as al, GetMessageOutput as am, GetHistoryMessagesInput as an, GetHistoryMessagesOutput as ao, GetResourceTempUrlInput as ap, GetResourceTempUrlOutput as aq, GetForwardedMessagesInput as ar, GetForwardedMessagesOutput as as, MarkMessageAsReadInput as at, SendFriendNudgeInput as au, SendProfileLikeInput as av, DeleteFriendInput as aw, GetFriendRequestsInput as ax, GetFriendRequestsOutput as ay, AcceptFriendRequestInput as az, ZBoolean as b, UploadGroupFileOutput as b0, GetPrivateFileDownloadUrlInput as b1, GetPrivateFileDownloadUrlOutput as b2, GetGroupFileDownloadUrlInput as b3, GetGroupFileDownloadUrlOutput as b4, GetGroupFilesInput as b5, GetGroupFilesOutput as b6, MoveGroupFileInput as b7, RenameGroupFileInput as b8, DeleteGroupFileInput as b9, CreateGroupFolderInput as ba, CreateGroupFolderOutput as bb, RenameGroupFolderInput as bc, DeleteGroupFolderInput as bd, milkyPackageVersion as be, milkyVersion as bf, ZString as c, ZUin as d, ZInt32WithDefault as e, ZInt64WithDefault as f, ZBooleanWithDefault as g, ZStringWithDefault as h, FriendEntity as i, GroupMemberEntity as j, GroupAnnouncementEntity as k, GroupFileEntity as l, GroupFolderEntity as m, FriendRequest as n, GroupNotification as o, IncomingSegment as p, IncomingForwardedMessage as q, OutgoingSegment as r, OutgoingForwardedMessage as s, types as t, IncomingMessage as u, GroupEssenceMessage as v, FriendRequestEvent as w, GroupJoinRequestEvent as x, GroupInvitedJoinRequestEvent as y, GroupInvitationEvent as z };