@saltify/milky-types 1.0.0-draft.14 → 1.0.0-draft.15

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.
@@ -1,4 +1,4 @@
1
- import { t as types } from './index-K0tPH0xY.js';
1
+ import { t as types } from './index-B57VsYta.js';
2
2
  import 'zod';
3
3
 
4
4
  type TypeName = keyof typeof types;
@@ -52,7 +52,7 @@ declare const GroupMemberEntity: z.ZodObject<{
52
52
  }>;
53
53
  join_time: z.ZodNumber;
54
54
  last_sent_time: z.ZodNumber;
55
- shut_up_end_time: z.ZodOptional<z.ZodNumber>;
55
+ shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
56
56
  }, z.core.$strip>;
57
57
  type GroupMemberEntity = z.infer<typeof GroupMemberEntity>;
58
58
  declare const GroupAnnouncementEntity: z.ZodObject<{
@@ -61,7 +61,7 @@ declare const GroupAnnouncementEntity: z.ZodObject<{
61
61
  user_id: z.ZodNumber;
62
62
  time: z.ZodNumber;
63
63
  content: z.ZodString;
64
- image_url: z.ZodOptional<z.ZodString>;
64
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
65
65
  }, z.core.$strip>;
66
66
  type GroupAnnouncementEntity = z.infer<typeof GroupAnnouncementEntity>;
67
67
  declare const GroupFileEntity: z.ZodObject<{
@@ -71,7 +71,7 @@ declare const GroupFileEntity: z.ZodObject<{
71
71
  parent_folder_id: z.ZodString;
72
72
  file_size: z.ZodNumber;
73
73
  uploaded_time: z.ZodNumber;
74
- expire_time: z.ZodOptional<z.ZodNumber>;
74
+ expire_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
75
75
  uploader_id: z.ZodNumber;
76
76
  downloaded_times: z.ZodNumber;
77
77
  }, z.core.$strip>;
@@ -116,7 +116,7 @@ declare const GroupNotification: z.ZodDiscriminatedUnion<[z.ZodObject<{
116
116
  rejected: "rejected";
117
117
  ignored: "ignored";
118
118
  }>;
119
- operator_id: z.ZodOptional<z.ZodNumber>;
119
+ operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
120
120
  comment: z.ZodString;
121
121
  }, z.core.$strip>, z.ZodObject<{
122
122
  type: z.ZodLiteral<"admin_change">;
@@ -148,7 +148,7 @@ declare const GroupNotification: z.ZodDiscriminatedUnion<[z.ZodObject<{
148
148
  rejected: "rejected";
149
149
  ignored: "ignored";
150
150
  }>;
151
- operator_id: z.ZodOptional<z.ZodNumber>;
151
+ operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
152
152
  }, z.core.$strip>], "type">;
153
153
  type GroupNotification = z.infer<typeof GroupNotification>;
154
154
 
@@ -265,7 +265,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
265
265
  type: z.ZodLiteral<"image">;
266
266
  data: z.ZodObject<{
267
267
  uri: z.ZodString;
268
- summary: z.ZodOptional<z.ZodString>;
268
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
269
269
  sub_type: z.ZodEnum<{
270
270
  normal: "normal";
271
271
  sticker: "sticker";
@@ -280,7 +280,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
280
280
  type: z.ZodLiteral<"video">;
281
281
  data: z.ZodObject<{
282
282
  uri: z.ZodString;
283
- thumb_uri: z.ZodOptional<z.ZodString>;
283
+ thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
284
284
  }, z.core.$strip>;
285
285
  }, z.core.$strip>, z.ZodObject<{
286
286
  type: z.ZodLiteral<"forward">;
@@ -315,7 +315,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
315
315
  type: z.ZodLiteral<"image">;
316
316
  data: z.ZodObject<{
317
317
  uri: z.ZodString;
318
- summary: z.ZodOptional<z.ZodString>;
318
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
319
319
  sub_type: z.ZodEnum<{
320
320
  normal: "normal";
321
321
  sticker: "sticker";
@@ -330,7 +330,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
330
330
  type: z.ZodLiteral<"video">;
331
331
  data: z.ZodObject<{
332
332
  uri: z.ZodString;
333
- thumb_uri: z.ZodOptional<z.ZodString>;
333
+ thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
334
334
  }, z.core.$strip>;
335
335
  }, z.core.$strip>, z.ZodObject</*elided*/ any, z.core.$strip>], "type">>>;
336
336
  }, z.core.$strip>>>;
@@ -539,7 +539,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
539
539
  }>;
540
540
  join_time: z.ZodNumber;
541
541
  last_sent_time: z.ZodNumber;
542
- shut_up_end_time: z.ZodOptional<z.ZodNumber>;
542
+ shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
543
543
  }, z.core.$strip>>;
544
544
  }, z.core.$strip>, z.ZodObject<{
545
545
  message_scene: z.ZodLiteral<"temp">;
@@ -622,12 +622,12 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
622
622
  xml_payload: z.ZodString;
623
623
  }, z.core.$strip>;
624
624
  }, z.core.$strip>], "type">>>;
625
- group: z.ZodOptional<z.ZodLazy<z.ZodObject<{
625
+ group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
626
626
  group_id: z.ZodNumber;
627
627
  group_name: z.ZodString;
628
628
  member_count: z.ZodNumber;
629
629
  max_member_count: z.ZodNumber;
630
- }, z.core.$strip>>>;
630
+ }, z.core.$strip>>>>;
631
631
  }, z.core.$strip>], "message_scene">;
632
632
  type IncomingMessage = z.infer<typeof IncomingMessage>;
633
633
  declare const GroupEssenceMessage: z.ZodObject<{
@@ -827,7 +827,7 @@ declare const OutgoingForwardedMessage: z.ZodObject<{
827
827
  type: z.ZodLiteral<"image">;
828
828
  data: z.ZodObject<{
829
829
  uri: z.ZodString;
830
- summary: z.ZodOptional<z.ZodString>;
830
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
831
831
  sub_type: z.ZodEnum<{
832
832
  normal: "normal";
833
833
  sticker: "sticker";
@@ -842,7 +842,7 @@ declare const OutgoingForwardedMessage: z.ZodObject<{
842
842
  type: z.ZodLiteral<"video">;
843
843
  data: z.ZodObject<{
844
844
  uri: z.ZodString;
845
- thumb_uri: z.ZodOptional<z.ZodString>;
845
+ thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
846
846
  }, z.core.$strip>;
847
847
  }, z.core.$strip>, z.ZodObject<{
848
848
  type: z.ZodLiteral<"forward">;
@@ -931,14 +931,14 @@ type GroupEssenceMessageChangeEvent = z.infer<typeof GroupEssenceMessageChangeEv
931
931
  declare const GroupMemberIncreaseEvent: z.ZodObject<{
932
932
  group_id: z.ZodNumber;
933
933
  user_id: z.ZodNumber;
934
- operator_id: z.ZodOptional<z.ZodNumber>;
935
- invitor_id: z.ZodOptional<z.ZodNumber>;
934
+ operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
935
+ invitor_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
936
936
  }, z.core.$strip>;
937
937
  type GroupMemberIncreaseEvent = z.infer<typeof GroupMemberIncreaseEvent>;
938
938
  declare const GroupMemberDecreaseEvent: z.ZodObject<{
939
939
  group_id: z.ZodNumber;
940
940
  user_id: z.ZodNumber;
941
- operator_id: z.ZodOptional<z.ZodNumber>;
941
+ operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
942
942
  }, z.core.$strip>;
943
943
  type GroupMemberDecreaseEvent = z.infer<typeof GroupMemberDecreaseEvent>;
944
944
  declare const GroupNameChangeEvent: z.ZodObject<{
@@ -1198,7 +1198,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1198
1198
  }>;
1199
1199
  join_time: z.ZodNumber;
1200
1200
  last_sent_time: z.ZodNumber;
1201
- shut_up_end_time: z.ZodOptional<z.ZodNumber>;
1201
+ shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1202
1202
  }, z.core.$strip>>;
1203
1203
  }, z.core.$strip>, z.ZodObject<{
1204
1204
  message_scene: z.ZodLiteral<"temp">;
@@ -1281,12 +1281,12 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1281
1281
  xml_payload: z.ZodString;
1282
1282
  }, z.core.$strip>;
1283
1283
  }, z.core.$strip>], "type">>>;
1284
- group: z.ZodOptional<z.ZodLazy<z.ZodObject<{
1284
+ group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
1285
1285
  group_id: z.ZodNumber;
1286
1286
  group_name: z.ZodString;
1287
1287
  member_count: z.ZodNumber;
1288
1288
  max_member_count: z.ZodNumber;
1289
- }, z.core.$strip>>>;
1289
+ }, z.core.$strip>>>>;
1290
1290
  }, z.core.$strip>], "message_scene">;
1291
1291
  }, z.core.$strip>, z.ZodObject<{
1292
1292
  event_type: z.ZodLiteral<"message_recall">;
@@ -1393,8 +1393,8 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1393
1393
  data: z.ZodObject<{
1394
1394
  group_id: z.ZodNumber;
1395
1395
  user_id: z.ZodNumber;
1396
- operator_id: z.ZodOptional<z.ZodNumber>;
1397
- invitor_id: z.ZodOptional<z.ZodNumber>;
1396
+ operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1397
+ invitor_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1398
1398
  }, z.core.$strip>;
1399
1399
  }, z.core.$strip>, z.ZodObject<{
1400
1400
  event_type: z.ZodLiteral<"group_member_decrease">;
@@ -1403,7 +1403,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
1403
1403
  data: z.ZodObject<{
1404
1404
  group_id: z.ZodNumber;
1405
1405
  user_id: z.ZodNumber;
1406
- operator_id: z.ZodOptional<z.ZodNumber>;
1406
+ operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1407
1407
  }, z.core.$strip>;
1408
1408
  }, z.core.$strip>, z.ZodObject<{
1409
1409
  event_type: z.ZodLiteral<"group_name_change">;
@@ -1515,7 +1515,7 @@ declare const GetUserProfileOutput: z.ZodObject<{
1515
1515
  }, z.core.$strip>;
1516
1516
  type GetUserProfileOutput = z.infer<typeof GetUserProfileOutput>;
1517
1517
  declare const GetFriendListInput: z.ZodObject<{
1518
- no_cache: z.ZodDefault<z.ZodBoolean>;
1518
+ no_cache: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1519
1519
  }, z.core.$strip>;
1520
1520
  type GetFriendListInput = z.infer<typeof GetFriendListInput>;
1521
1521
  declare const GetFriendListOutput: z.ZodObject<{
@@ -1538,7 +1538,7 @@ declare const GetFriendListOutput: z.ZodObject<{
1538
1538
  type GetFriendListOutput = z.infer<typeof GetFriendListOutput>;
1539
1539
  declare const GetFriendInfoInput: z.ZodObject<{
1540
1540
  user_id: z.ZodNumber;
1541
- no_cache: z.ZodDefault<z.ZodBoolean>;
1541
+ no_cache: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1542
1542
  }, z.core.$strip>;
1543
1543
  type GetFriendInfoInput = z.infer<typeof GetFriendInfoInput>;
1544
1544
  declare const GetFriendInfoOutput: z.ZodObject<{
@@ -1560,7 +1560,7 @@ declare const GetFriendInfoOutput: z.ZodObject<{
1560
1560
  }, z.core.$strip>;
1561
1561
  type GetFriendInfoOutput = z.infer<typeof GetFriendInfoOutput>;
1562
1562
  declare const GetGroupListInput: z.ZodObject<{
1563
- no_cache: z.ZodDefault<z.ZodBoolean>;
1563
+ no_cache: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1564
1564
  }, z.core.$strip>;
1565
1565
  type GetGroupListInput = z.infer<typeof GetGroupListInput>;
1566
1566
  declare const GetGroupListOutput: z.ZodObject<{
@@ -1574,7 +1574,7 @@ declare const GetGroupListOutput: z.ZodObject<{
1574
1574
  type GetGroupListOutput = z.infer<typeof GetGroupListOutput>;
1575
1575
  declare const GetGroupInfoInput: z.ZodObject<{
1576
1576
  group_id: z.ZodNumber;
1577
- no_cache: z.ZodDefault<z.ZodBoolean>;
1577
+ no_cache: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1578
1578
  }, z.core.$strip>;
1579
1579
  type GetGroupInfoInput = z.infer<typeof GetGroupInfoInput>;
1580
1580
  declare const GetGroupInfoOutput: z.ZodObject<{
@@ -1588,7 +1588,7 @@ declare const GetGroupInfoOutput: z.ZodObject<{
1588
1588
  type GetGroupInfoOutput = z.infer<typeof GetGroupInfoOutput>;
1589
1589
  declare const GetGroupMemberListInput: z.ZodObject<{
1590
1590
  group_id: z.ZodNumber;
1591
- no_cache: z.ZodDefault<z.ZodBoolean>;
1591
+ no_cache: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1592
1592
  }, z.core.$strip>;
1593
1593
  type GetGroupMemberListInput = z.infer<typeof GetGroupMemberListInput>;
1594
1594
  declare const GetGroupMemberListOutput: z.ZodObject<{
@@ -1611,14 +1611,14 @@ declare const GetGroupMemberListOutput: z.ZodObject<{
1611
1611
  }>;
1612
1612
  join_time: z.ZodNumber;
1613
1613
  last_sent_time: z.ZodNumber;
1614
- shut_up_end_time: z.ZodOptional<z.ZodNumber>;
1614
+ shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1615
1615
  }, z.core.$strip>>>;
1616
1616
  }, z.core.$strip>;
1617
1617
  type GetGroupMemberListOutput = z.infer<typeof GetGroupMemberListOutput>;
1618
1618
  declare const GetGroupMemberInfoInput: z.ZodObject<{
1619
1619
  group_id: z.ZodNumber;
1620
1620
  user_id: z.ZodNumber;
1621
- no_cache: z.ZodDefault<z.ZodBoolean>;
1621
+ no_cache: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1622
1622
  }, z.core.$strip>;
1623
1623
  type GetGroupMemberInfoInput = z.infer<typeof GetGroupMemberInfoInput>;
1624
1624
  declare const GetGroupMemberInfoOutput: z.ZodObject<{
@@ -1641,7 +1641,7 @@ declare const GetGroupMemberInfoOutput: z.ZodObject<{
1641
1641
  }>;
1642
1642
  join_time: z.ZodNumber;
1643
1643
  last_sent_time: z.ZodNumber;
1644
- shut_up_end_time: z.ZodOptional<z.ZodNumber>;
1644
+ shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1645
1645
  }, z.core.$strip>>;
1646
1646
  }, z.core.$strip>;
1647
1647
  type GetGroupMemberInfoOutput = z.infer<typeof GetGroupMemberInfoOutput>;
@@ -1687,7 +1687,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
1687
1687
  type: z.ZodLiteral<"image">;
1688
1688
  data: z.ZodObject<{
1689
1689
  uri: z.ZodString;
1690
- summary: z.ZodOptional<z.ZodString>;
1690
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1691
1691
  sub_type: z.ZodEnum<{
1692
1692
  normal: "normal";
1693
1693
  sticker: "sticker";
@@ -1702,7 +1702,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
1702
1702
  type: z.ZodLiteral<"video">;
1703
1703
  data: z.ZodObject<{
1704
1704
  uri: z.ZodString;
1705
- thumb_uri: z.ZodOptional<z.ZodString>;
1705
+ thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1706
1706
  }, z.core.$strip>;
1707
1707
  }, z.core.$strip>, z.ZodObject<{
1708
1708
  type: z.ZodLiteral<"forward">;
@@ -1737,7 +1737,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
1737
1737
  type: z.ZodLiteral<"image">;
1738
1738
  data: z.ZodObject<{
1739
1739
  uri: z.ZodString;
1740
- summary: z.ZodOptional<z.ZodString>;
1740
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1741
1741
  sub_type: z.ZodEnum<{
1742
1742
  normal: "normal";
1743
1743
  sticker: "sticker";
@@ -1752,7 +1752,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
1752
1752
  type: z.ZodLiteral<"video">;
1753
1753
  data: z.ZodObject<{
1754
1754
  uri: z.ZodString;
1755
- thumb_uri: z.ZodOptional<z.ZodString>;
1755
+ thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1756
1756
  }, z.core.$strip>;
1757
1757
  }, z.core.$strip>, z.ZodObject</*elided*/ any, z.core.$strip>], "type">>>;
1758
1758
  }, z.core.$strip>>>;
@@ -1794,7 +1794,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
1794
1794
  type: z.ZodLiteral<"image">;
1795
1795
  data: z.ZodObject<{
1796
1796
  uri: z.ZodString;
1797
- summary: z.ZodOptional<z.ZodString>;
1797
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1798
1798
  sub_type: z.ZodEnum<{
1799
1799
  normal: "normal";
1800
1800
  sticker: "sticker";
@@ -1809,7 +1809,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
1809
1809
  type: z.ZodLiteral<"video">;
1810
1810
  data: z.ZodObject<{
1811
1811
  uri: z.ZodString;
1812
- thumb_uri: z.ZodOptional<z.ZodString>;
1812
+ thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1813
1813
  }, z.core.$strip>;
1814
1814
  }, z.core.$strip>, z.ZodObject<{
1815
1815
  type: z.ZodLiteral<"forward">;
@@ -1844,7 +1844,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
1844
1844
  type: z.ZodLiteral<"image">;
1845
1845
  data: z.ZodObject<{
1846
1846
  uri: z.ZodString;
1847
- summary: z.ZodOptional<z.ZodString>;
1847
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1848
1848
  sub_type: z.ZodEnum<{
1849
1849
  normal: "normal";
1850
1850
  sticker: "sticker";
@@ -1859,7 +1859,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
1859
1859
  type: z.ZodLiteral<"video">;
1860
1860
  data: z.ZodObject<{
1861
1861
  uri: z.ZodString;
1862
- thumb_uri: z.ZodOptional<z.ZodString>;
1862
+ thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1863
1863
  }, z.core.$strip>;
1864
1864
  }, z.core.$strip>, z.ZodObject</*elided*/ any, z.core.$strip>], "type">>>;
1865
1865
  }, z.core.$strip>>>;
@@ -2095,7 +2095,7 @@ declare const GetMessageOutput: z.ZodObject<{
2095
2095
  }>;
2096
2096
  join_time: z.ZodNumber;
2097
2097
  last_sent_time: z.ZodNumber;
2098
- shut_up_end_time: z.ZodOptional<z.ZodNumber>;
2098
+ shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2099
2099
  }, z.core.$strip>>;
2100
2100
  }, z.core.$strip>, z.ZodObject<{
2101
2101
  message_scene: z.ZodLiteral<"temp">;
@@ -2178,12 +2178,12 @@ declare const GetMessageOutput: z.ZodObject<{
2178
2178
  xml_payload: z.ZodString;
2179
2179
  }, z.core.$strip>;
2180
2180
  }, z.core.$strip>], "type">>>;
2181
- group: z.ZodOptional<z.ZodLazy<z.ZodObject<{
2181
+ group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
2182
2182
  group_id: z.ZodNumber;
2183
2183
  group_name: z.ZodString;
2184
2184
  member_count: z.ZodNumber;
2185
2185
  max_member_count: z.ZodNumber;
2186
- }, z.core.$strip>>>;
2186
+ }, z.core.$strip>>>>;
2187
2187
  }, z.core.$strip>], "message_scene">>;
2188
2188
  }, z.core.$strip>;
2189
2189
  type GetMessageOutput = z.infer<typeof GetMessageOutput>;
@@ -2194,8 +2194,8 @@ declare const GetHistoryMessagesInput: z.ZodObject<{
2194
2194
  temp: "temp";
2195
2195
  }>;
2196
2196
  peer_id: z.ZodNumber;
2197
- start_message_seq: z.ZodOptional<z.ZodNumber>;
2198
- limit: z.ZodDefault<z.ZodNumber>;
2197
+ start_message_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2198
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
2199
2199
  }, z.core.$strip>;
2200
2200
  type GetHistoryMessagesInput = z.infer<typeof GetHistoryMessagesInput>;
2201
2201
  declare const GetHistoryMessagesOutput: z.ZodObject<{
@@ -2401,7 +2401,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
2401
2401
  }>;
2402
2402
  join_time: z.ZodNumber;
2403
2403
  last_sent_time: z.ZodNumber;
2404
- shut_up_end_time: z.ZodOptional<z.ZodNumber>;
2404
+ shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2405
2405
  }, z.core.$strip>>;
2406
2406
  }, z.core.$strip>, z.ZodObject<{
2407
2407
  message_scene: z.ZodLiteral<"temp">;
@@ -2484,14 +2484,14 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
2484
2484
  xml_payload: z.ZodString;
2485
2485
  }, z.core.$strip>;
2486
2486
  }, z.core.$strip>], "type">>>;
2487
- group: z.ZodOptional<z.ZodLazy<z.ZodObject<{
2487
+ group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
2488
2488
  group_id: z.ZodNumber;
2489
2489
  group_name: z.ZodString;
2490
2490
  member_count: z.ZodNumber;
2491
2491
  max_member_count: z.ZodNumber;
2492
- }, z.core.$strip>>>;
2492
+ }, z.core.$strip>>>>;
2493
2493
  }, z.core.$strip>], "message_scene">>>;
2494
- next_message_seq: z.ZodOptional<z.ZodNumber>;
2494
+ next_message_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2495
2495
  }, z.core.$strip>;
2496
2496
  type GetHistoryMessagesOutput = z.infer<typeof GetHistoryMessagesOutput>;
2497
2497
  declare const GetResourceTempUrlInput: z.ZodObject<{
@@ -2602,17 +2602,17 @@ type MarkMessageAsReadInput = z.infer<typeof MarkMessageAsReadInput>;
2602
2602
 
2603
2603
  declare const SendFriendNudgeInput: z.ZodObject<{
2604
2604
  user_id: z.ZodNumber;
2605
- is_self: z.ZodDefault<z.ZodBoolean>;
2605
+ is_self: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2606
2606
  }, z.core.$strip>;
2607
2607
  type SendFriendNudgeInput = z.infer<typeof SendFriendNudgeInput>;
2608
2608
  declare const SendProfileLikeInput: z.ZodObject<{
2609
2609
  user_id: z.ZodNumber;
2610
- count: z.ZodDefault<z.ZodNumber>;
2610
+ count: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
2611
2611
  }, z.core.$strip>;
2612
2612
  type SendProfileLikeInput = z.infer<typeof SendProfileLikeInput>;
2613
2613
  declare const GetFriendRequestsInput: z.ZodObject<{
2614
- limit: z.ZodDefault<z.ZodNumber>;
2615
- is_filtered: z.ZodDefault<z.ZodBoolean>;
2614
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
2615
+ is_filtered: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2616
2616
  }, z.core.$strip>;
2617
2617
  type GetFriendRequestsInput = z.infer<typeof GetFriendRequestsInput>;
2618
2618
  declare const GetFriendRequestsOutput: z.ZodObject<{
@@ -2636,13 +2636,13 @@ declare const GetFriendRequestsOutput: z.ZodObject<{
2636
2636
  type GetFriendRequestsOutput = z.infer<typeof GetFriendRequestsOutput>;
2637
2637
  declare const AcceptFriendRequestInput: z.ZodObject<{
2638
2638
  initiator_uid: z.ZodString;
2639
- is_filtered: z.ZodDefault<z.ZodBoolean>;
2639
+ is_filtered: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2640
2640
  }, z.core.$strip>;
2641
2641
  type AcceptFriendRequestInput = z.infer<typeof AcceptFriendRequestInput>;
2642
2642
  declare const RejectFriendRequestInput: z.ZodObject<{
2643
2643
  initiator_uid: z.ZodString;
2644
- is_filtered: z.ZodDefault<z.ZodBoolean>;
2645
- reason: z.ZodOptional<z.ZodString>;
2644
+ is_filtered: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2645
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2646
2646
  }, z.core.$strip>;
2647
2647
  type RejectFriendRequestInput = z.infer<typeof RejectFriendRequestInput>;
2648
2648
 
@@ -2671,24 +2671,24 @@ type SetGroupMemberSpecialTitleInput = z.infer<typeof SetGroupMemberSpecialTitle
2671
2671
  declare const SetGroupMemberAdminInput: z.ZodObject<{
2672
2672
  group_id: z.ZodNumber;
2673
2673
  user_id: z.ZodNumber;
2674
- is_set: z.ZodDefault<z.ZodBoolean>;
2674
+ is_set: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2675
2675
  }, z.core.$strip>;
2676
2676
  type SetGroupMemberAdminInput = z.infer<typeof SetGroupMemberAdminInput>;
2677
2677
  declare const SetGroupMemberMuteInput: z.ZodObject<{
2678
2678
  group_id: z.ZodNumber;
2679
2679
  user_id: z.ZodNumber;
2680
- duration: z.ZodDefault<z.ZodNumber>;
2680
+ duration: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
2681
2681
  }, z.core.$strip>;
2682
2682
  type SetGroupMemberMuteInput = z.infer<typeof SetGroupMemberMuteInput>;
2683
2683
  declare const SetGroupWholeMuteInput: z.ZodObject<{
2684
2684
  group_id: z.ZodNumber;
2685
- is_mute: z.ZodDefault<z.ZodBoolean>;
2685
+ is_mute: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2686
2686
  }, z.core.$strip>;
2687
2687
  type SetGroupWholeMuteInput = z.infer<typeof SetGroupWholeMuteInput>;
2688
2688
  declare const KickGroupMemberInput: z.ZodObject<{
2689
2689
  group_id: z.ZodNumber;
2690
2690
  user_id: z.ZodNumber;
2691
- reject_add_request: z.ZodDefault<z.ZodBoolean>;
2691
+ reject_add_request: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2692
2692
  }, z.core.$strip>;
2693
2693
  type KickGroupMemberInput = z.infer<typeof KickGroupMemberInput>;
2694
2694
  declare const GetGroupAnnouncementListInput: z.ZodObject<{
@@ -2702,14 +2702,14 @@ declare const GetGroupAnnouncementListOutput: z.ZodObject<{
2702
2702
  user_id: z.ZodNumber;
2703
2703
  time: z.ZodNumber;
2704
2704
  content: z.ZodString;
2705
- image_url: z.ZodOptional<z.ZodString>;
2705
+ image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2706
2706
  }, z.core.$strip>>>;
2707
2707
  }, z.core.$strip>;
2708
2708
  type GetGroupAnnouncementListOutput = z.infer<typeof GetGroupAnnouncementListOutput>;
2709
2709
  declare const SendGroupAnnouncementInput: z.ZodObject<{
2710
2710
  group_id: z.ZodNumber;
2711
2711
  content: z.ZodString;
2712
- image_uri: z.ZodOptional<z.ZodString>;
2712
+ image_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2713
2713
  }, z.core.$strip>;
2714
2714
  type SendGroupAnnouncementInput = z.infer<typeof SendGroupAnnouncementInput>;
2715
2715
  declare const DeleteGroupAnnouncementInput: z.ZodObject<{
@@ -2815,7 +2815,7 @@ type GetGroupEssenceMessagesOutput = z.infer<typeof GetGroupEssenceMessagesOutpu
2815
2815
  declare const SetGroupEssenceMessageInput: z.ZodObject<{
2816
2816
  group_id: z.ZodNumber;
2817
2817
  message_seq: z.ZodNumber;
2818
- is_set: z.ZodDefault<z.ZodBoolean>;
2818
+ is_set: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2819
2819
  }, z.core.$strip>;
2820
2820
  type SetGroupEssenceMessageInput = z.infer<typeof SetGroupEssenceMessageInput>;
2821
2821
  declare const QuitGroupInput: z.ZodObject<{
@@ -2826,7 +2826,7 @@ declare const SendGroupMessageReactionInput: z.ZodObject<{
2826
2826
  group_id: z.ZodNumber;
2827
2827
  message_seq: z.ZodNumber;
2828
2828
  reaction: z.ZodString;
2829
- is_add: z.ZodDefault<z.ZodBoolean>;
2829
+ is_add: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2830
2830
  }, z.core.$strip>;
2831
2831
  type SendGroupMessageReactionInput = z.infer<typeof SendGroupMessageReactionInput>;
2832
2832
  declare const SendGroupNudgeInput: z.ZodObject<{
@@ -2835,9 +2835,9 @@ declare const SendGroupNudgeInput: z.ZodObject<{
2835
2835
  }, z.core.$strip>;
2836
2836
  type SendGroupNudgeInput = z.infer<typeof SendGroupNudgeInput>;
2837
2837
  declare const GetGroupNotificationsInput: z.ZodObject<{
2838
- start_notification_seq: z.ZodOptional<z.ZodNumber>;
2839
- is_filtered: z.ZodDefault<z.ZodBoolean>;
2840
- limit: z.ZodDefault<z.ZodNumber>;
2838
+ start_notification_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2839
+ is_filtered: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2840
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
2841
2841
  }, z.core.$strip>;
2842
2842
  type GetGroupNotificationsInput = z.infer<typeof GetGroupNotificationsInput>;
2843
2843
  declare const GetGroupNotificationsOutput: z.ZodObject<{
@@ -2853,7 +2853,7 @@ declare const GetGroupNotificationsOutput: z.ZodObject<{
2853
2853
  rejected: "rejected";
2854
2854
  ignored: "ignored";
2855
2855
  }>;
2856
- operator_id: z.ZodOptional<z.ZodNumber>;
2856
+ operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2857
2857
  comment: z.ZodString;
2858
2858
  }, z.core.$strip>, z.ZodObject<{
2859
2859
  type: z.ZodLiteral<"admin_change">;
@@ -2885,9 +2885,9 @@ declare const GetGroupNotificationsOutput: z.ZodObject<{
2885
2885
  rejected: "rejected";
2886
2886
  ignored: "ignored";
2887
2887
  }>;
2888
- operator_id: z.ZodOptional<z.ZodNumber>;
2888
+ operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2889
2889
  }, z.core.$strip>], "type">>>;
2890
- next_notification_seq: z.ZodOptional<z.ZodNumber>;
2890
+ next_notification_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2891
2891
  }, z.core.$strip>;
2892
2892
  type GetGroupNotificationsOutput = z.infer<typeof GetGroupNotificationsOutput>;
2893
2893
  declare const AcceptGroupRequestInput: z.ZodObject<{
@@ -2897,7 +2897,7 @@ declare const AcceptGroupRequestInput: z.ZodObject<{
2897
2897
  invited_join_request: "invited_join_request";
2898
2898
  }>;
2899
2899
  group_id: z.ZodNumber;
2900
- is_filtered: z.ZodDefault<z.ZodBoolean>;
2900
+ is_filtered: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2901
2901
  }, z.core.$strip>;
2902
2902
  type AcceptGroupRequestInput = z.infer<typeof AcceptGroupRequestInput>;
2903
2903
  declare const RejectGroupRequestInput: z.ZodObject<{
@@ -2907,8 +2907,8 @@ declare const RejectGroupRequestInput: z.ZodObject<{
2907
2907
  invited_join_request: "invited_join_request";
2908
2908
  }>;
2909
2909
  group_id: z.ZodNumber;
2910
- is_filtered: z.ZodDefault<z.ZodBoolean>;
2911
- reason: z.ZodOptional<z.ZodString>;
2910
+ is_filtered: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2911
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2912
2912
  }, z.core.$strip>;
2913
2913
  type RejectGroupRequestInput = z.infer<typeof RejectGroupRequestInput>;
2914
2914
  declare const AcceptGroupInvitationInput: z.ZodObject<{
@@ -2934,7 +2934,7 @@ declare const UploadPrivateFileOutput: z.ZodObject<{
2934
2934
  type UploadPrivateFileOutput = z.infer<typeof UploadPrivateFileOutput>;
2935
2935
  declare const UploadGroupFileInput: z.ZodObject<{
2936
2936
  group_id: z.ZodNumber;
2937
- parent_folder_id: z.ZodDefault<z.ZodString>;
2937
+ parent_folder_id: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
2938
2938
  file_uri: z.ZodString;
2939
2939
  file_name: z.ZodString;
2940
2940
  }, z.core.$strip>;
@@ -2964,7 +2964,7 @@ declare const GetGroupFileDownloadUrlOutput: z.ZodObject<{
2964
2964
  type GetGroupFileDownloadUrlOutput = z.infer<typeof GetGroupFileDownloadUrlOutput>;
2965
2965
  declare const GetGroupFilesInput: z.ZodObject<{
2966
2966
  group_id: z.ZodNumber;
2967
- parent_folder_id: z.ZodDefault<z.ZodString>;
2967
+ parent_folder_id: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
2968
2968
  }, z.core.$strip>;
2969
2969
  type GetGroupFilesInput = z.infer<typeof GetGroupFilesInput>;
2970
2970
  declare const GetGroupFilesOutput: z.ZodObject<{
@@ -2975,7 +2975,7 @@ declare const GetGroupFilesOutput: z.ZodObject<{
2975
2975
  parent_folder_id: z.ZodString;
2976
2976
  file_size: z.ZodNumber;
2977
2977
  uploaded_time: z.ZodNumber;
2978
- expire_time: z.ZodOptional<z.ZodNumber>;
2978
+ expire_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2979
2979
  uploader_id: z.ZodNumber;
2980
2980
  downloaded_times: z.ZodNumber;
2981
2981
  }, z.core.$strip>>>;
@@ -2994,14 +2994,14 @@ type GetGroupFilesOutput = z.infer<typeof GetGroupFilesOutput>;
2994
2994
  declare const MoveGroupFileInput: z.ZodObject<{
2995
2995
  group_id: z.ZodNumber;
2996
2996
  file_id: z.ZodString;
2997
- parent_folder_id: z.ZodDefault<z.ZodString>;
2998
- target_folder_id: z.ZodDefault<z.ZodString>;
2997
+ parent_folder_id: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
2998
+ target_folder_id: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
2999
2999
  }, z.core.$strip>;
3000
3000
  type MoveGroupFileInput = z.infer<typeof MoveGroupFileInput>;
3001
3001
  declare const RenameGroupFileInput: z.ZodObject<{
3002
3002
  group_id: z.ZodNumber;
3003
3003
  file_id: z.ZodString;
3004
- parent_folder_id: z.ZodDefault<z.ZodString>;
3004
+ parent_folder_id: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
3005
3005
  new_file_name: z.ZodString;
3006
3006
  }, z.core.$strip>;
3007
3007
  type RenameGroupFileInput = z.infer<typeof RenameGroupFileInput>;
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export { aq as AcceptFriendRequestInput, aO as AcceptGroupInvitationInput, aM as AcceptGroupRequestInput, B as BotOfflineEvent, b1 as CreateGroupFolderInput, b2 as CreateGroupFolderOutput, aD as DeleteGroupAnnouncementInput, b0 as DeleteGroupFileInput, b4 as DeleteGroupFolderInput, L as Event, F as FriendCategoryEntity, d as FriendEntity, w as FriendFileUploadEvent, v as FriendNudgeEvent, i as FriendRequest, q as FriendRequestEvent, a6 as GetCSRFTokenOutput, a4 as GetCookiesInput, a5 as GetCookiesOutput, aj as GetForwardedMessagesInput, ak as GetForwardedMessagesOutput, V as GetFriendInfoInput, W as GetFriendInfoOutput, T as GetFriendListInput, U as GetFriendListOutput, ao as GetFriendRequestsInput, ap as GetFriendRequestsOutput, aA as GetGroupAnnouncementListInput, aB as GetGroupAnnouncementListOutput, aE as GetGroupEssenceMessagesInput, aF as GetGroupEssenceMessagesOutput, aW as GetGroupFileDownloadUrlInput, aX as GetGroupFileDownloadUrlOutput, aY as GetGroupFilesInput, aZ as GetGroupFilesOutput, _ as GetGroupInfoInput, $ as GetGroupInfoOutput, X as GetGroupListInput, Y as GetGroupListOutput, a2 as GetGroupMemberInfoInput, a3 as GetGroupMemberInfoOutput, a0 as GetGroupMemberListInput, a1 as GetGroupMemberListOutput, aK as GetGroupNotificationsInput, aL as GetGroupNotificationsOutput, af as GetHistoryMessagesInput, ag as GetHistoryMessagesOutput, P as GetImplInfoOutput, N as GetLoginInfoOutput, ad as GetMessageInput, ae as GetMessageOutput, aU as GetPrivateFileDownloadUrlInput, aV as GetPrivateFileDownloadUrlOutput, ah as GetResourceTempUrlInput, ai as GetResourceTempUrlOutput, Q as GetUserProfileInput, R as GetUserProfileOutput, x as GroupAdminChangeEvent, f as GroupAnnouncementEntity, G as GroupEntity, p as GroupEssenceMessage, y as GroupEssenceMessageChangeEvent, g as GroupFileEntity, K as GroupFileUploadEvent, h as GroupFolderEntity, u as GroupInvitationEvent, s as GroupInvitedJoinRequestEvent, r as GroupJoinRequestEvent, A as GroupMemberDecreaseEvent, e as GroupMemberEntity, z as GroupMemberIncreaseEvent, D as GroupMessageReactionEvent, E as GroupMuteEvent, C as GroupNameChangeEvent, j as GroupNotification, J as GroupNudgeEvent, H as GroupWholeMuteEvent, l as IncomingForwardedMessage, o as IncomingMessage, I as IncomingResourceSegmentBase, k as IncomingSegment, az as KickGroupMemberInput, al as MarkMessageAsReadInput, M as MessageRecallEvent, a_ as MoveGroupFileInput, n as OutgoingForwardedMessage, O as OutgoingResourceSegmentBase, m as OutgoingSegment, aH as QuitGroupInput, ac as RecallGroupMessageInput, ab as RecallPrivateMessageInput, ar as RejectFriendRequestInput, aP as RejectGroupInvitationInput, aN as RejectGroupRequestInput, a$ as RenameGroupFileInput, b3 as RenameGroupFolderInput, am as SendFriendNudgeInput, aC as SendGroupAnnouncementInput, a9 as SendGroupMessageInput, aa as SendGroupMessageOutput, aI as SendGroupMessageReactionInput, aJ as SendGroupNudgeInput, a7 as SendPrivateMessageInput, a8 as SendPrivateMessageOutput, an as SendProfileLikeInput, at as SetGroupAvatarInput, aG as SetGroupEssenceMessageInput, aw as SetGroupMemberAdminInput, au as SetGroupMemberCardInput, ax as SetGroupMemberMuteInput, av as SetGroupMemberSpecialTitleInput, as as SetGroupNameInput, ay as SetGroupWholeMuteInput, S as SharedSegment, aS as UploadGroupFileInput, aT as UploadGroupFileOutput, aQ as UploadPrivateFileInput, aR as UploadPrivateFileOutput, b as ZBoolean, Z as ZInt32, a as ZInt64, c as ZString, b6 as milkyPackageVersion, b5 as milkyVersion } from './index-K0tPH0xY.js';
1
+ export { aq as AcceptFriendRequestInput, aO as AcceptGroupInvitationInput, aM as AcceptGroupRequestInput, B as BotOfflineEvent, b1 as CreateGroupFolderInput, b2 as CreateGroupFolderOutput, aD as DeleteGroupAnnouncementInput, b0 as DeleteGroupFileInput, b4 as DeleteGroupFolderInput, L as Event, F as FriendCategoryEntity, d as FriendEntity, w as FriendFileUploadEvent, v as FriendNudgeEvent, i as FriendRequest, q as FriendRequestEvent, a6 as GetCSRFTokenOutput, a4 as GetCookiesInput, a5 as GetCookiesOutput, aj as GetForwardedMessagesInput, ak as GetForwardedMessagesOutput, V as GetFriendInfoInput, W as GetFriendInfoOutput, T as GetFriendListInput, U as GetFriendListOutput, ao as GetFriendRequestsInput, ap as GetFriendRequestsOutput, aA as GetGroupAnnouncementListInput, aB as GetGroupAnnouncementListOutput, aE as GetGroupEssenceMessagesInput, aF as GetGroupEssenceMessagesOutput, aW as GetGroupFileDownloadUrlInput, aX as GetGroupFileDownloadUrlOutput, aY as GetGroupFilesInput, aZ as GetGroupFilesOutput, _ as GetGroupInfoInput, $ as GetGroupInfoOutput, X as GetGroupListInput, Y as GetGroupListOutput, a2 as GetGroupMemberInfoInput, a3 as GetGroupMemberInfoOutput, a0 as GetGroupMemberListInput, a1 as GetGroupMemberListOutput, aK as GetGroupNotificationsInput, aL as GetGroupNotificationsOutput, af as GetHistoryMessagesInput, ag as GetHistoryMessagesOutput, P as GetImplInfoOutput, N as GetLoginInfoOutput, ad as GetMessageInput, ae as GetMessageOutput, aU as GetPrivateFileDownloadUrlInput, aV as GetPrivateFileDownloadUrlOutput, ah as GetResourceTempUrlInput, ai as GetResourceTempUrlOutput, Q as GetUserProfileInput, R as GetUserProfileOutput, x as GroupAdminChangeEvent, f as GroupAnnouncementEntity, G as GroupEntity, p as GroupEssenceMessage, y as GroupEssenceMessageChangeEvent, g as GroupFileEntity, K as GroupFileUploadEvent, h as GroupFolderEntity, u as GroupInvitationEvent, s as GroupInvitedJoinRequestEvent, r as GroupJoinRequestEvent, A as GroupMemberDecreaseEvent, e as GroupMemberEntity, z as GroupMemberIncreaseEvent, D as GroupMessageReactionEvent, E as GroupMuteEvent, C as GroupNameChangeEvent, j as GroupNotification, J as GroupNudgeEvent, H as GroupWholeMuteEvent, l as IncomingForwardedMessage, o as IncomingMessage, I as IncomingResourceSegmentBase, k as IncomingSegment, az as KickGroupMemberInput, al as MarkMessageAsReadInput, M as MessageRecallEvent, a_ as MoveGroupFileInput, n as OutgoingForwardedMessage, O as OutgoingResourceSegmentBase, m as OutgoingSegment, aH as QuitGroupInput, ac as RecallGroupMessageInput, ab as RecallPrivateMessageInput, ar as RejectFriendRequestInput, aP as RejectGroupInvitationInput, aN as RejectGroupRequestInput, a$ as RenameGroupFileInput, b3 as RenameGroupFolderInput, am as SendFriendNudgeInput, aC as SendGroupAnnouncementInput, a9 as SendGroupMessageInput, aa as SendGroupMessageOutput, aI as SendGroupMessageReactionInput, aJ as SendGroupNudgeInput, a7 as SendPrivateMessageInput, a8 as SendPrivateMessageOutput, an as SendProfileLikeInput, at as SetGroupAvatarInput, aG as SetGroupEssenceMessageInput, aw as SetGroupMemberAdminInput, au as SetGroupMemberCardInput, ax as SetGroupMemberMuteInput, av as SetGroupMemberSpecialTitleInput, as as SetGroupNameInput, ay as SetGroupWholeMuteInput, S as SharedSegment, aS as UploadGroupFileInput, aT as UploadGroupFileOutput, aQ as UploadPrivateFileInput, aR as UploadPrivateFileOutput, b as ZBoolean, Z as ZInt32, a as ZInt64, c as ZString, b6 as milkyPackageVersion, b5 as milkyVersion } from './index-B57VsYta.js';
2
2
  import 'zod';