@saltify/milky-types 1.0.0-draft.14 → 1.0.0-draft.16
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/dist/api-endpoints.d.ts +1 -1
- package/dist/{index-K0tPH0xY.d.ts → index-DN2wVEjK.d.ts} +88 -80
- package/dist/index.d.ts +1 -1
- package/dist/index.js +50 -42
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -4,6 +4,10 @@ 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 ZInt32WithDefault: (defaultValue: number) => z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
8
|
+
declare const ZInt64WithDefault: (defaultValue: number) => z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
9
|
+
declare const ZBooleanWithDefault: (defaultValue: boolean) => z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
10
|
+
declare const ZStringWithDefault: (defaultValue: string) => z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>, z.ZodTransform<string, string | null>>;
|
|
7
11
|
|
|
8
12
|
declare const FriendCategoryEntity: z.ZodObject<{
|
|
9
13
|
category_id: z.ZodNumber;
|
|
@@ -52,7 +56,7 @@ declare const GroupMemberEntity: z.ZodObject<{
|
|
|
52
56
|
}>;
|
|
53
57
|
join_time: z.ZodNumber;
|
|
54
58
|
last_sent_time: z.ZodNumber;
|
|
55
|
-
shut_up_end_time: z.ZodOptional<z.ZodNumber
|
|
59
|
+
shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
56
60
|
}, z.core.$strip>;
|
|
57
61
|
type GroupMemberEntity = z.infer<typeof GroupMemberEntity>;
|
|
58
62
|
declare const GroupAnnouncementEntity: z.ZodObject<{
|
|
@@ -61,7 +65,7 @@ declare const GroupAnnouncementEntity: z.ZodObject<{
|
|
|
61
65
|
user_id: z.ZodNumber;
|
|
62
66
|
time: z.ZodNumber;
|
|
63
67
|
content: z.ZodString;
|
|
64
|
-
image_url: z.ZodOptional<z.ZodString
|
|
68
|
+
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
65
69
|
}, z.core.$strip>;
|
|
66
70
|
type GroupAnnouncementEntity = z.infer<typeof GroupAnnouncementEntity>;
|
|
67
71
|
declare const GroupFileEntity: z.ZodObject<{
|
|
@@ -71,7 +75,7 @@ declare const GroupFileEntity: z.ZodObject<{
|
|
|
71
75
|
parent_folder_id: z.ZodString;
|
|
72
76
|
file_size: z.ZodNumber;
|
|
73
77
|
uploaded_time: z.ZodNumber;
|
|
74
|
-
expire_time: z.ZodOptional<z.ZodNumber
|
|
78
|
+
expire_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
75
79
|
uploader_id: z.ZodNumber;
|
|
76
80
|
downloaded_times: z.ZodNumber;
|
|
77
81
|
}, z.core.$strip>;
|
|
@@ -116,7 +120,7 @@ declare const GroupNotification: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
116
120
|
rejected: "rejected";
|
|
117
121
|
ignored: "ignored";
|
|
118
122
|
}>;
|
|
119
|
-
operator_id: z.ZodOptional<z.ZodNumber
|
|
123
|
+
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
120
124
|
comment: z.ZodString;
|
|
121
125
|
}, z.core.$strip>, z.ZodObject<{
|
|
122
126
|
type: z.ZodLiteral<"admin_change">;
|
|
@@ -148,7 +152,7 @@ declare const GroupNotification: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
148
152
|
rejected: "rejected";
|
|
149
153
|
ignored: "ignored";
|
|
150
154
|
}>;
|
|
151
|
-
operator_id: z.ZodOptional<z.ZodNumber
|
|
155
|
+
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
152
156
|
}, z.core.$strip>], "type">;
|
|
153
157
|
type GroupNotification = z.infer<typeof GroupNotification>;
|
|
154
158
|
|
|
@@ -265,7 +269,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
265
269
|
type: z.ZodLiteral<"image">;
|
|
266
270
|
data: z.ZodObject<{
|
|
267
271
|
uri: z.ZodString;
|
|
268
|
-
summary: z.ZodOptional<z.ZodString
|
|
272
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
269
273
|
sub_type: z.ZodEnum<{
|
|
270
274
|
normal: "normal";
|
|
271
275
|
sticker: "sticker";
|
|
@@ -280,7 +284,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
280
284
|
type: z.ZodLiteral<"video">;
|
|
281
285
|
data: z.ZodObject<{
|
|
282
286
|
uri: z.ZodString;
|
|
283
|
-
thumb_uri: z.ZodOptional<z.ZodString
|
|
287
|
+
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
284
288
|
}, z.core.$strip>;
|
|
285
289
|
}, z.core.$strip>, z.ZodObject<{
|
|
286
290
|
type: z.ZodLiteral<"forward">;
|
|
@@ -315,7 +319,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
315
319
|
type: z.ZodLiteral<"image">;
|
|
316
320
|
data: z.ZodObject<{
|
|
317
321
|
uri: z.ZodString;
|
|
318
|
-
summary: z.ZodOptional<z.ZodString
|
|
322
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
319
323
|
sub_type: z.ZodEnum<{
|
|
320
324
|
normal: "normal";
|
|
321
325
|
sticker: "sticker";
|
|
@@ -330,7 +334,7 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
330
334
|
type: z.ZodLiteral<"video">;
|
|
331
335
|
data: z.ZodObject<{
|
|
332
336
|
uri: z.ZodString;
|
|
333
|
-
thumb_uri: z.ZodOptional<z.ZodString
|
|
337
|
+
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
334
338
|
}, z.core.$strip>;
|
|
335
339
|
}, z.core.$strip>, z.ZodObject</*elided*/ any, z.core.$strip>], "type">>>;
|
|
336
340
|
}, z.core.$strip>>>;
|
|
@@ -539,7 +543,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
539
543
|
}>;
|
|
540
544
|
join_time: z.ZodNumber;
|
|
541
545
|
last_sent_time: z.ZodNumber;
|
|
542
|
-
shut_up_end_time: z.ZodOptional<z.ZodNumber
|
|
546
|
+
shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
543
547
|
}, z.core.$strip>>;
|
|
544
548
|
}, z.core.$strip>, z.ZodObject<{
|
|
545
549
|
message_scene: z.ZodLiteral<"temp">;
|
|
@@ -622,12 +626,12 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
622
626
|
xml_payload: z.ZodString;
|
|
623
627
|
}, z.core.$strip>;
|
|
624
628
|
}, z.core.$strip>], "type">>>;
|
|
625
|
-
group: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
629
|
+
group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
626
630
|
group_id: z.ZodNumber;
|
|
627
631
|
group_name: z.ZodString;
|
|
628
632
|
member_count: z.ZodNumber;
|
|
629
633
|
max_member_count: z.ZodNumber;
|
|
630
|
-
}, z.core.$strip
|
|
634
|
+
}, z.core.$strip>>>>;
|
|
631
635
|
}, z.core.$strip>], "message_scene">;
|
|
632
636
|
type IncomingMessage = z.infer<typeof IncomingMessage>;
|
|
633
637
|
declare const GroupEssenceMessage: z.ZodObject<{
|
|
@@ -827,7 +831,7 @@ declare const OutgoingForwardedMessage: z.ZodObject<{
|
|
|
827
831
|
type: z.ZodLiteral<"image">;
|
|
828
832
|
data: z.ZodObject<{
|
|
829
833
|
uri: z.ZodString;
|
|
830
|
-
summary: z.ZodOptional<z.ZodString
|
|
834
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
831
835
|
sub_type: z.ZodEnum<{
|
|
832
836
|
normal: "normal";
|
|
833
837
|
sticker: "sticker";
|
|
@@ -842,7 +846,7 @@ declare const OutgoingForwardedMessage: z.ZodObject<{
|
|
|
842
846
|
type: z.ZodLiteral<"video">;
|
|
843
847
|
data: z.ZodObject<{
|
|
844
848
|
uri: z.ZodString;
|
|
845
|
-
thumb_uri: z.ZodOptional<z.ZodString
|
|
849
|
+
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
846
850
|
}, z.core.$strip>;
|
|
847
851
|
}, z.core.$strip>, z.ZodObject<{
|
|
848
852
|
type: z.ZodLiteral<"forward">;
|
|
@@ -931,14 +935,14 @@ type GroupEssenceMessageChangeEvent = z.infer<typeof GroupEssenceMessageChangeEv
|
|
|
931
935
|
declare const GroupMemberIncreaseEvent: z.ZodObject<{
|
|
932
936
|
group_id: z.ZodNumber;
|
|
933
937
|
user_id: z.ZodNumber;
|
|
934
|
-
operator_id: z.ZodOptional<z.ZodNumber
|
|
935
|
-
invitor_id: z.ZodOptional<z.ZodNumber
|
|
938
|
+
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
939
|
+
invitor_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
936
940
|
}, z.core.$strip>;
|
|
937
941
|
type GroupMemberIncreaseEvent = z.infer<typeof GroupMemberIncreaseEvent>;
|
|
938
942
|
declare const GroupMemberDecreaseEvent: z.ZodObject<{
|
|
939
943
|
group_id: z.ZodNumber;
|
|
940
944
|
user_id: z.ZodNumber;
|
|
941
|
-
operator_id: z.ZodOptional<z.ZodNumber
|
|
945
|
+
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
942
946
|
}, z.core.$strip>;
|
|
943
947
|
type GroupMemberDecreaseEvent = z.infer<typeof GroupMemberDecreaseEvent>;
|
|
944
948
|
declare const GroupNameChangeEvent: z.ZodObject<{
|
|
@@ -1198,7 +1202,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1198
1202
|
}>;
|
|
1199
1203
|
join_time: z.ZodNumber;
|
|
1200
1204
|
last_sent_time: z.ZodNumber;
|
|
1201
|
-
shut_up_end_time: z.ZodOptional<z.ZodNumber
|
|
1205
|
+
shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1202
1206
|
}, z.core.$strip>>;
|
|
1203
1207
|
}, z.core.$strip>, z.ZodObject<{
|
|
1204
1208
|
message_scene: z.ZodLiteral<"temp">;
|
|
@@ -1281,12 +1285,12 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1281
1285
|
xml_payload: z.ZodString;
|
|
1282
1286
|
}, z.core.$strip>;
|
|
1283
1287
|
}, z.core.$strip>], "type">>>;
|
|
1284
|
-
group: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
1288
|
+
group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
1285
1289
|
group_id: z.ZodNumber;
|
|
1286
1290
|
group_name: z.ZodString;
|
|
1287
1291
|
member_count: z.ZodNumber;
|
|
1288
1292
|
max_member_count: z.ZodNumber;
|
|
1289
|
-
}, z.core.$strip
|
|
1293
|
+
}, z.core.$strip>>>>;
|
|
1290
1294
|
}, z.core.$strip>], "message_scene">;
|
|
1291
1295
|
}, z.core.$strip>, z.ZodObject<{
|
|
1292
1296
|
event_type: z.ZodLiteral<"message_recall">;
|
|
@@ -1393,8 +1397,8 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1393
1397
|
data: z.ZodObject<{
|
|
1394
1398
|
group_id: z.ZodNumber;
|
|
1395
1399
|
user_id: z.ZodNumber;
|
|
1396
|
-
operator_id: z.ZodOptional<z.ZodNumber
|
|
1397
|
-
invitor_id: z.ZodOptional<z.ZodNumber
|
|
1400
|
+
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1401
|
+
invitor_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1398
1402
|
}, z.core.$strip>;
|
|
1399
1403
|
}, z.core.$strip>, z.ZodObject<{
|
|
1400
1404
|
event_type: z.ZodLiteral<"group_member_decrease">;
|
|
@@ -1403,7 +1407,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1403
1407
|
data: z.ZodObject<{
|
|
1404
1408
|
group_id: z.ZodNumber;
|
|
1405
1409
|
user_id: z.ZodNumber;
|
|
1406
|
-
operator_id: z.ZodOptional<z.ZodNumber
|
|
1410
|
+
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1407
1411
|
}, z.core.$strip>;
|
|
1408
1412
|
}, z.core.$strip>, z.ZodObject<{
|
|
1409
1413
|
event_type: z.ZodLiteral<"group_name_change">;
|
|
@@ -1515,7 +1519,7 @@ declare const GetUserProfileOutput: z.ZodObject<{
|
|
|
1515
1519
|
}, z.core.$strip>;
|
|
1516
1520
|
type GetUserProfileOutput = z.infer<typeof GetUserProfileOutput>;
|
|
1517
1521
|
declare const GetFriendListInput: z.ZodObject<{
|
|
1518
|
-
no_cache: z.ZodDefault<z.ZodBoolean
|
|
1522
|
+
no_cache: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
1519
1523
|
}, z.core.$strip>;
|
|
1520
1524
|
type GetFriendListInput = z.infer<typeof GetFriendListInput>;
|
|
1521
1525
|
declare const GetFriendListOutput: z.ZodObject<{
|
|
@@ -1538,7 +1542,7 @@ declare const GetFriendListOutput: z.ZodObject<{
|
|
|
1538
1542
|
type GetFriendListOutput = z.infer<typeof GetFriendListOutput>;
|
|
1539
1543
|
declare const GetFriendInfoInput: z.ZodObject<{
|
|
1540
1544
|
user_id: z.ZodNumber;
|
|
1541
|
-
no_cache: z.ZodDefault<z.ZodBoolean
|
|
1545
|
+
no_cache: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
1542
1546
|
}, z.core.$strip>;
|
|
1543
1547
|
type GetFriendInfoInput = z.infer<typeof GetFriendInfoInput>;
|
|
1544
1548
|
declare const GetFriendInfoOutput: z.ZodObject<{
|
|
@@ -1560,7 +1564,7 @@ declare const GetFriendInfoOutput: z.ZodObject<{
|
|
|
1560
1564
|
}, z.core.$strip>;
|
|
1561
1565
|
type GetFriendInfoOutput = z.infer<typeof GetFriendInfoOutput>;
|
|
1562
1566
|
declare const GetGroupListInput: z.ZodObject<{
|
|
1563
|
-
no_cache: z.ZodDefault<z.ZodBoolean
|
|
1567
|
+
no_cache: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
1564
1568
|
}, z.core.$strip>;
|
|
1565
1569
|
type GetGroupListInput = z.infer<typeof GetGroupListInput>;
|
|
1566
1570
|
declare const GetGroupListOutput: z.ZodObject<{
|
|
@@ -1574,7 +1578,7 @@ declare const GetGroupListOutput: z.ZodObject<{
|
|
|
1574
1578
|
type GetGroupListOutput = z.infer<typeof GetGroupListOutput>;
|
|
1575
1579
|
declare const GetGroupInfoInput: z.ZodObject<{
|
|
1576
1580
|
group_id: z.ZodNumber;
|
|
1577
|
-
no_cache: z.ZodDefault<z.ZodBoolean
|
|
1581
|
+
no_cache: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
1578
1582
|
}, z.core.$strip>;
|
|
1579
1583
|
type GetGroupInfoInput = z.infer<typeof GetGroupInfoInput>;
|
|
1580
1584
|
declare const GetGroupInfoOutput: z.ZodObject<{
|
|
@@ -1588,7 +1592,7 @@ declare const GetGroupInfoOutput: z.ZodObject<{
|
|
|
1588
1592
|
type GetGroupInfoOutput = z.infer<typeof GetGroupInfoOutput>;
|
|
1589
1593
|
declare const GetGroupMemberListInput: z.ZodObject<{
|
|
1590
1594
|
group_id: z.ZodNumber;
|
|
1591
|
-
no_cache: z.ZodDefault<z.ZodBoolean
|
|
1595
|
+
no_cache: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
1592
1596
|
}, z.core.$strip>;
|
|
1593
1597
|
type GetGroupMemberListInput = z.infer<typeof GetGroupMemberListInput>;
|
|
1594
1598
|
declare const GetGroupMemberListOutput: z.ZodObject<{
|
|
@@ -1611,14 +1615,14 @@ declare const GetGroupMemberListOutput: z.ZodObject<{
|
|
|
1611
1615
|
}>;
|
|
1612
1616
|
join_time: z.ZodNumber;
|
|
1613
1617
|
last_sent_time: z.ZodNumber;
|
|
1614
|
-
shut_up_end_time: z.ZodOptional<z.ZodNumber
|
|
1618
|
+
shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1615
1619
|
}, z.core.$strip>>>;
|
|
1616
1620
|
}, z.core.$strip>;
|
|
1617
1621
|
type GetGroupMemberListOutput = z.infer<typeof GetGroupMemberListOutput>;
|
|
1618
1622
|
declare const GetGroupMemberInfoInput: z.ZodObject<{
|
|
1619
1623
|
group_id: z.ZodNumber;
|
|
1620
1624
|
user_id: z.ZodNumber;
|
|
1621
|
-
no_cache: z.ZodDefault<z.ZodBoolean
|
|
1625
|
+
no_cache: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
1622
1626
|
}, z.core.$strip>;
|
|
1623
1627
|
type GetGroupMemberInfoInput = z.infer<typeof GetGroupMemberInfoInput>;
|
|
1624
1628
|
declare const GetGroupMemberInfoOutput: z.ZodObject<{
|
|
@@ -1641,7 +1645,7 @@ declare const GetGroupMemberInfoOutput: z.ZodObject<{
|
|
|
1641
1645
|
}>;
|
|
1642
1646
|
join_time: z.ZodNumber;
|
|
1643
1647
|
last_sent_time: z.ZodNumber;
|
|
1644
|
-
shut_up_end_time: z.ZodOptional<z.ZodNumber
|
|
1648
|
+
shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1645
1649
|
}, z.core.$strip>>;
|
|
1646
1650
|
}, z.core.$strip>;
|
|
1647
1651
|
type GetGroupMemberInfoOutput = z.infer<typeof GetGroupMemberInfoOutput>;
|
|
@@ -1687,7 +1691,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1687
1691
|
type: z.ZodLiteral<"image">;
|
|
1688
1692
|
data: z.ZodObject<{
|
|
1689
1693
|
uri: z.ZodString;
|
|
1690
|
-
summary: z.ZodOptional<z.ZodString
|
|
1694
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1691
1695
|
sub_type: z.ZodEnum<{
|
|
1692
1696
|
normal: "normal";
|
|
1693
1697
|
sticker: "sticker";
|
|
@@ -1702,7 +1706,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1702
1706
|
type: z.ZodLiteral<"video">;
|
|
1703
1707
|
data: z.ZodObject<{
|
|
1704
1708
|
uri: z.ZodString;
|
|
1705
|
-
thumb_uri: z.ZodOptional<z.ZodString
|
|
1709
|
+
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1706
1710
|
}, z.core.$strip>;
|
|
1707
1711
|
}, z.core.$strip>, z.ZodObject<{
|
|
1708
1712
|
type: z.ZodLiteral<"forward">;
|
|
@@ -1737,7 +1741,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1737
1741
|
type: z.ZodLiteral<"image">;
|
|
1738
1742
|
data: z.ZodObject<{
|
|
1739
1743
|
uri: z.ZodString;
|
|
1740
|
-
summary: z.ZodOptional<z.ZodString
|
|
1744
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1741
1745
|
sub_type: z.ZodEnum<{
|
|
1742
1746
|
normal: "normal";
|
|
1743
1747
|
sticker: "sticker";
|
|
@@ -1752,7 +1756,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1752
1756
|
type: z.ZodLiteral<"video">;
|
|
1753
1757
|
data: z.ZodObject<{
|
|
1754
1758
|
uri: z.ZodString;
|
|
1755
|
-
thumb_uri: z.ZodOptional<z.ZodString
|
|
1759
|
+
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1756
1760
|
}, z.core.$strip>;
|
|
1757
1761
|
}, z.core.$strip>, z.ZodObject</*elided*/ any, z.core.$strip>], "type">>>;
|
|
1758
1762
|
}, z.core.$strip>>>;
|
|
@@ -1794,7 +1798,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
1794
1798
|
type: z.ZodLiteral<"image">;
|
|
1795
1799
|
data: z.ZodObject<{
|
|
1796
1800
|
uri: z.ZodString;
|
|
1797
|
-
summary: z.ZodOptional<z.ZodString
|
|
1801
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1798
1802
|
sub_type: z.ZodEnum<{
|
|
1799
1803
|
normal: "normal";
|
|
1800
1804
|
sticker: "sticker";
|
|
@@ -1809,7 +1813,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
1809
1813
|
type: z.ZodLiteral<"video">;
|
|
1810
1814
|
data: z.ZodObject<{
|
|
1811
1815
|
uri: z.ZodString;
|
|
1812
|
-
thumb_uri: z.ZodOptional<z.ZodString
|
|
1816
|
+
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1813
1817
|
}, z.core.$strip>;
|
|
1814
1818
|
}, z.core.$strip>, z.ZodObject<{
|
|
1815
1819
|
type: z.ZodLiteral<"forward">;
|
|
@@ -1844,7 +1848,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
1844
1848
|
type: z.ZodLiteral<"image">;
|
|
1845
1849
|
data: z.ZodObject<{
|
|
1846
1850
|
uri: z.ZodString;
|
|
1847
|
-
summary: z.ZodOptional<z.ZodString
|
|
1851
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1848
1852
|
sub_type: z.ZodEnum<{
|
|
1849
1853
|
normal: "normal";
|
|
1850
1854
|
sticker: "sticker";
|
|
@@ -1859,7 +1863,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
1859
1863
|
type: z.ZodLiteral<"video">;
|
|
1860
1864
|
data: z.ZodObject<{
|
|
1861
1865
|
uri: z.ZodString;
|
|
1862
|
-
thumb_uri: z.ZodOptional<z.ZodString
|
|
1866
|
+
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1863
1867
|
}, z.core.$strip>;
|
|
1864
1868
|
}, z.core.$strip>, z.ZodObject</*elided*/ any, z.core.$strip>], "type">>>;
|
|
1865
1869
|
}, z.core.$strip>>>;
|
|
@@ -2095,7 +2099,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2095
2099
|
}>;
|
|
2096
2100
|
join_time: z.ZodNumber;
|
|
2097
2101
|
last_sent_time: z.ZodNumber;
|
|
2098
|
-
shut_up_end_time: z.ZodOptional<z.ZodNumber
|
|
2102
|
+
shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2099
2103
|
}, z.core.$strip>>;
|
|
2100
2104
|
}, z.core.$strip>, z.ZodObject<{
|
|
2101
2105
|
message_scene: z.ZodLiteral<"temp">;
|
|
@@ -2178,12 +2182,12 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2178
2182
|
xml_payload: z.ZodString;
|
|
2179
2183
|
}, z.core.$strip>;
|
|
2180
2184
|
}, z.core.$strip>], "type">>>;
|
|
2181
|
-
group: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
2185
|
+
group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
2182
2186
|
group_id: z.ZodNumber;
|
|
2183
2187
|
group_name: z.ZodString;
|
|
2184
2188
|
member_count: z.ZodNumber;
|
|
2185
2189
|
max_member_count: z.ZodNumber;
|
|
2186
|
-
}, z.core.$strip
|
|
2190
|
+
}, z.core.$strip>>>>;
|
|
2187
2191
|
}, z.core.$strip>], "message_scene">>;
|
|
2188
2192
|
}, z.core.$strip>;
|
|
2189
2193
|
type GetMessageOutput = z.infer<typeof GetMessageOutput>;
|
|
@@ -2194,8 +2198,8 @@ declare const GetHistoryMessagesInput: z.ZodObject<{
|
|
|
2194
2198
|
temp: "temp";
|
|
2195
2199
|
}>;
|
|
2196
2200
|
peer_id: z.ZodNumber;
|
|
2197
|
-
start_message_seq: z.ZodOptional<z.ZodNumber
|
|
2198
|
-
limit: z.ZodDefault<z.ZodNumber
|
|
2201
|
+
start_message_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2202
|
+
limit: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
2199
2203
|
}, z.core.$strip>;
|
|
2200
2204
|
type GetHistoryMessagesInput = z.infer<typeof GetHistoryMessagesInput>;
|
|
2201
2205
|
declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
@@ -2401,7 +2405,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2401
2405
|
}>;
|
|
2402
2406
|
join_time: z.ZodNumber;
|
|
2403
2407
|
last_sent_time: z.ZodNumber;
|
|
2404
|
-
shut_up_end_time: z.ZodOptional<z.ZodNumber
|
|
2408
|
+
shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2405
2409
|
}, z.core.$strip>>;
|
|
2406
2410
|
}, z.core.$strip>, z.ZodObject<{
|
|
2407
2411
|
message_scene: z.ZodLiteral<"temp">;
|
|
@@ -2484,14 +2488,14 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2484
2488
|
xml_payload: z.ZodString;
|
|
2485
2489
|
}, z.core.$strip>;
|
|
2486
2490
|
}, z.core.$strip>], "type">>>;
|
|
2487
|
-
group: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
2491
|
+
group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
2488
2492
|
group_id: z.ZodNumber;
|
|
2489
2493
|
group_name: z.ZodString;
|
|
2490
2494
|
member_count: z.ZodNumber;
|
|
2491
2495
|
max_member_count: z.ZodNumber;
|
|
2492
|
-
}, z.core.$strip
|
|
2496
|
+
}, z.core.$strip>>>>;
|
|
2493
2497
|
}, z.core.$strip>], "message_scene">>>;
|
|
2494
|
-
next_message_seq: z.ZodOptional<z.ZodNumber
|
|
2498
|
+
next_message_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2495
2499
|
}, z.core.$strip>;
|
|
2496
2500
|
type GetHistoryMessagesOutput = z.infer<typeof GetHistoryMessagesOutput>;
|
|
2497
2501
|
declare const GetResourceTempUrlInput: z.ZodObject<{
|
|
@@ -2602,17 +2606,17 @@ type MarkMessageAsReadInput = z.infer<typeof MarkMessageAsReadInput>;
|
|
|
2602
2606
|
|
|
2603
2607
|
declare const SendFriendNudgeInput: z.ZodObject<{
|
|
2604
2608
|
user_id: z.ZodNumber;
|
|
2605
|
-
is_self: z.ZodDefault<z.ZodBoolean
|
|
2609
|
+
is_self: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2606
2610
|
}, z.core.$strip>;
|
|
2607
2611
|
type SendFriendNudgeInput = z.infer<typeof SendFriendNudgeInput>;
|
|
2608
2612
|
declare const SendProfileLikeInput: z.ZodObject<{
|
|
2609
2613
|
user_id: z.ZodNumber;
|
|
2610
|
-
count: z.ZodDefault<z.ZodNumber
|
|
2614
|
+
count: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
2611
2615
|
}, z.core.$strip>;
|
|
2612
2616
|
type SendProfileLikeInput = z.infer<typeof SendProfileLikeInput>;
|
|
2613
2617
|
declare const GetFriendRequestsInput: z.ZodObject<{
|
|
2614
|
-
limit: z.ZodDefault<z.ZodNumber
|
|
2615
|
-
is_filtered: z.ZodDefault<z.ZodBoolean
|
|
2618
|
+
limit: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
2619
|
+
is_filtered: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2616
2620
|
}, z.core.$strip>;
|
|
2617
2621
|
type GetFriendRequestsInput = z.infer<typeof GetFriendRequestsInput>;
|
|
2618
2622
|
declare const GetFriendRequestsOutput: z.ZodObject<{
|
|
@@ -2636,13 +2640,13 @@ declare const GetFriendRequestsOutput: z.ZodObject<{
|
|
|
2636
2640
|
type GetFriendRequestsOutput = z.infer<typeof GetFriendRequestsOutput>;
|
|
2637
2641
|
declare const AcceptFriendRequestInput: z.ZodObject<{
|
|
2638
2642
|
initiator_uid: z.ZodString;
|
|
2639
|
-
is_filtered: z.ZodDefault<z.ZodBoolean
|
|
2643
|
+
is_filtered: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2640
2644
|
}, z.core.$strip>;
|
|
2641
2645
|
type AcceptFriendRequestInput = z.infer<typeof AcceptFriendRequestInput>;
|
|
2642
2646
|
declare const RejectFriendRequestInput: z.ZodObject<{
|
|
2643
2647
|
initiator_uid: z.ZodString;
|
|
2644
|
-
is_filtered: z.ZodDefault<z.ZodBoolean
|
|
2645
|
-
reason: z.ZodOptional<z.ZodString
|
|
2648
|
+
is_filtered: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2649
|
+
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2646
2650
|
}, z.core.$strip>;
|
|
2647
2651
|
type RejectFriendRequestInput = z.infer<typeof RejectFriendRequestInput>;
|
|
2648
2652
|
|
|
@@ -2671,24 +2675,24 @@ type SetGroupMemberSpecialTitleInput = z.infer<typeof SetGroupMemberSpecialTitle
|
|
|
2671
2675
|
declare const SetGroupMemberAdminInput: z.ZodObject<{
|
|
2672
2676
|
group_id: z.ZodNumber;
|
|
2673
2677
|
user_id: z.ZodNumber;
|
|
2674
|
-
is_set: z.ZodDefault<z.ZodBoolean
|
|
2678
|
+
is_set: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2675
2679
|
}, z.core.$strip>;
|
|
2676
2680
|
type SetGroupMemberAdminInput = z.infer<typeof SetGroupMemberAdminInput>;
|
|
2677
2681
|
declare const SetGroupMemberMuteInput: z.ZodObject<{
|
|
2678
2682
|
group_id: z.ZodNumber;
|
|
2679
2683
|
user_id: z.ZodNumber;
|
|
2680
|
-
duration: z.ZodDefault<z.ZodNumber
|
|
2684
|
+
duration: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
2681
2685
|
}, z.core.$strip>;
|
|
2682
2686
|
type SetGroupMemberMuteInput = z.infer<typeof SetGroupMemberMuteInput>;
|
|
2683
2687
|
declare const SetGroupWholeMuteInput: z.ZodObject<{
|
|
2684
2688
|
group_id: z.ZodNumber;
|
|
2685
|
-
is_mute: z.ZodDefault<z.ZodBoolean
|
|
2689
|
+
is_mute: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2686
2690
|
}, z.core.$strip>;
|
|
2687
2691
|
type SetGroupWholeMuteInput = z.infer<typeof SetGroupWholeMuteInput>;
|
|
2688
2692
|
declare const KickGroupMemberInput: z.ZodObject<{
|
|
2689
2693
|
group_id: z.ZodNumber;
|
|
2690
2694
|
user_id: z.ZodNumber;
|
|
2691
|
-
reject_add_request: z.ZodDefault<z.ZodBoolean
|
|
2695
|
+
reject_add_request: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2692
2696
|
}, z.core.$strip>;
|
|
2693
2697
|
type KickGroupMemberInput = z.infer<typeof KickGroupMemberInput>;
|
|
2694
2698
|
declare const GetGroupAnnouncementListInput: z.ZodObject<{
|
|
@@ -2702,14 +2706,14 @@ declare const GetGroupAnnouncementListOutput: z.ZodObject<{
|
|
|
2702
2706
|
user_id: z.ZodNumber;
|
|
2703
2707
|
time: z.ZodNumber;
|
|
2704
2708
|
content: z.ZodString;
|
|
2705
|
-
image_url: z.ZodOptional<z.ZodString
|
|
2709
|
+
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2706
2710
|
}, z.core.$strip>>>;
|
|
2707
2711
|
}, z.core.$strip>;
|
|
2708
2712
|
type GetGroupAnnouncementListOutput = z.infer<typeof GetGroupAnnouncementListOutput>;
|
|
2709
2713
|
declare const SendGroupAnnouncementInput: z.ZodObject<{
|
|
2710
2714
|
group_id: z.ZodNumber;
|
|
2711
2715
|
content: z.ZodString;
|
|
2712
|
-
image_uri: z.ZodOptional<z.ZodString
|
|
2716
|
+
image_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2713
2717
|
}, z.core.$strip>;
|
|
2714
2718
|
type SendGroupAnnouncementInput = z.infer<typeof SendGroupAnnouncementInput>;
|
|
2715
2719
|
declare const DeleteGroupAnnouncementInput: z.ZodObject<{
|
|
@@ -2815,7 +2819,7 @@ type GetGroupEssenceMessagesOutput = z.infer<typeof GetGroupEssenceMessagesOutpu
|
|
|
2815
2819
|
declare const SetGroupEssenceMessageInput: z.ZodObject<{
|
|
2816
2820
|
group_id: z.ZodNumber;
|
|
2817
2821
|
message_seq: z.ZodNumber;
|
|
2818
|
-
is_set: z.ZodDefault<z.ZodBoolean
|
|
2822
|
+
is_set: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2819
2823
|
}, z.core.$strip>;
|
|
2820
2824
|
type SetGroupEssenceMessageInput = z.infer<typeof SetGroupEssenceMessageInput>;
|
|
2821
2825
|
declare const QuitGroupInput: z.ZodObject<{
|
|
@@ -2826,7 +2830,7 @@ declare const SendGroupMessageReactionInput: z.ZodObject<{
|
|
|
2826
2830
|
group_id: z.ZodNumber;
|
|
2827
2831
|
message_seq: z.ZodNumber;
|
|
2828
2832
|
reaction: z.ZodString;
|
|
2829
|
-
is_add: z.ZodDefault<z.ZodBoolean
|
|
2833
|
+
is_add: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2830
2834
|
}, z.core.$strip>;
|
|
2831
2835
|
type SendGroupMessageReactionInput = z.infer<typeof SendGroupMessageReactionInput>;
|
|
2832
2836
|
declare const SendGroupNudgeInput: z.ZodObject<{
|
|
@@ -2835,9 +2839,9 @@ declare const SendGroupNudgeInput: z.ZodObject<{
|
|
|
2835
2839
|
}, z.core.$strip>;
|
|
2836
2840
|
type SendGroupNudgeInput = z.infer<typeof SendGroupNudgeInput>;
|
|
2837
2841
|
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
|
|
2842
|
+
start_notification_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2843
|
+
is_filtered: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2844
|
+
limit: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
2841
2845
|
}, z.core.$strip>;
|
|
2842
2846
|
type GetGroupNotificationsInput = z.infer<typeof GetGroupNotificationsInput>;
|
|
2843
2847
|
declare const GetGroupNotificationsOutput: z.ZodObject<{
|
|
@@ -2853,7 +2857,7 @@ declare const GetGroupNotificationsOutput: z.ZodObject<{
|
|
|
2853
2857
|
rejected: "rejected";
|
|
2854
2858
|
ignored: "ignored";
|
|
2855
2859
|
}>;
|
|
2856
|
-
operator_id: z.ZodOptional<z.ZodNumber
|
|
2860
|
+
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2857
2861
|
comment: z.ZodString;
|
|
2858
2862
|
}, z.core.$strip>, z.ZodObject<{
|
|
2859
2863
|
type: z.ZodLiteral<"admin_change">;
|
|
@@ -2885,9 +2889,9 @@ declare const GetGroupNotificationsOutput: z.ZodObject<{
|
|
|
2885
2889
|
rejected: "rejected";
|
|
2886
2890
|
ignored: "ignored";
|
|
2887
2891
|
}>;
|
|
2888
|
-
operator_id: z.ZodOptional<z.ZodNumber
|
|
2892
|
+
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2889
2893
|
}, z.core.$strip>], "type">>>;
|
|
2890
|
-
next_notification_seq: z.ZodOptional<z.ZodNumber
|
|
2894
|
+
next_notification_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2891
2895
|
}, z.core.$strip>;
|
|
2892
2896
|
type GetGroupNotificationsOutput = z.infer<typeof GetGroupNotificationsOutput>;
|
|
2893
2897
|
declare const AcceptGroupRequestInput: z.ZodObject<{
|
|
@@ -2897,7 +2901,7 @@ declare const AcceptGroupRequestInput: z.ZodObject<{
|
|
|
2897
2901
|
invited_join_request: "invited_join_request";
|
|
2898
2902
|
}>;
|
|
2899
2903
|
group_id: z.ZodNumber;
|
|
2900
|
-
is_filtered: z.ZodDefault<z.ZodBoolean
|
|
2904
|
+
is_filtered: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2901
2905
|
}, z.core.$strip>;
|
|
2902
2906
|
type AcceptGroupRequestInput = z.infer<typeof AcceptGroupRequestInput>;
|
|
2903
2907
|
declare const RejectGroupRequestInput: z.ZodObject<{
|
|
@@ -2907,8 +2911,8 @@ declare const RejectGroupRequestInput: z.ZodObject<{
|
|
|
2907
2911
|
invited_join_request: "invited_join_request";
|
|
2908
2912
|
}>;
|
|
2909
2913
|
group_id: z.ZodNumber;
|
|
2910
|
-
is_filtered: z.ZodDefault<z.ZodBoolean
|
|
2911
|
-
reason: z.ZodOptional<z.ZodString
|
|
2914
|
+
is_filtered: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2915
|
+
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2912
2916
|
}, z.core.$strip>;
|
|
2913
2917
|
type RejectGroupRequestInput = z.infer<typeof RejectGroupRequestInput>;
|
|
2914
2918
|
declare const AcceptGroupInvitationInput: z.ZodObject<{
|
|
@@ -2934,7 +2938,7 @@ declare const UploadPrivateFileOutput: z.ZodObject<{
|
|
|
2934
2938
|
type UploadPrivateFileOutput = z.infer<typeof UploadPrivateFileOutput>;
|
|
2935
2939
|
declare const UploadGroupFileInput: z.ZodObject<{
|
|
2936
2940
|
group_id: z.ZodNumber;
|
|
2937
|
-
parent_folder_id: z.ZodDefault<z.ZodString
|
|
2941
|
+
parent_folder_id: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>, z.ZodTransform<string, string | null>>;
|
|
2938
2942
|
file_uri: z.ZodString;
|
|
2939
2943
|
file_name: z.ZodString;
|
|
2940
2944
|
}, z.core.$strip>;
|
|
@@ -2964,7 +2968,7 @@ declare const GetGroupFileDownloadUrlOutput: z.ZodObject<{
|
|
|
2964
2968
|
type GetGroupFileDownloadUrlOutput = z.infer<typeof GetGroupFileDownloadUrlOutput>;
|
|
2965
2969
|
declare const GetGroupFilesInput: z.ZodObject<{
|
|
2966
2970
|
group_id: z.ZodNumber;
|
|
2967
|
-
parent_folder_id: z.ZodDefault<z.ZodString
|
|
2971
|
+
parent_folder_id: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>, z.ZodTransform<string, string | null>>;
|
|
2968
2972
|
}, z.core.$strip>;
|
|
2969
2973
|
type GetGroupFilesInput = z.infer<typeof GetGroupFilesInput>;
|
|
2970
2974
|
declare const GetGroupFilesOutput: z.ZodObject<{
|
|
@@ -2975,7 +2979,7 @@ declare const GetGroupFilesOutput: z.ZodObject<{
|
|
|
2975
2979
|
parent_folder_id: z.ZodString;
|
|
2976
2980
|
file_size: z.ZodNumber;
|
|
2977
2981
|
uploaded_time: z.ZodNumber;
|
|
2978
|
-
expire_time: z.ZodOptional<z.ZodNumber
|
|
2982
|
+
expire_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2979
2983
|
uploader_id: z.ZodNumber;
|
|
2980
2984
|
downloaded_times: z.ZodNumber;
|
|
2981
2985
|
}, z.core.$strip>>>;
|
|
@@ -2994,14 +2998,14 @@ type GetGroupFilesOutput = z.infer<typeof GetGroupFilesOutput>;
|
|
|
2994
2998
|
declare const MoveGroupFileInput: z.ZodObject<{
|
|
2995
2999
|
group_id: z.ZodNumber;
|
|
2996
3000
|
file_id: z.ZodString;
|
|
2997
|
-
parent_folder_id: z.ZodDefault<z.ZodString
|
|
2998
|
-
target_folder_id: z.ZodDefault<z.ZodString
|
|
3001
|
+
parent_folder_id: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>, z.ZodTransform<string, string | null>>;
|
|
3002
|
+
target_folder_id: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>, z.ZodTransform<string, string | null>>;
|
|
2999
3003
|
}, z.core.$strip>;
|
|
3000
3004
|
type MoveGroupFileInput = z.infer<typeof MoveGroupFileInput>;
|
|
3001
3005
|
declare const RenameGroupFileInput: z.ZodObject<{
|
|
3002
3006
|
group_id: z.ZodNumber;
|
|
3003
3007
|
file_id: z.ZodString;
|
|
3004
|
-
parent_folder_id: z.ZodDefault<z.ZodString
|
|
3008
|
+
parent_folder_id: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>, z.ZodTransform<string, string | null>>;
|
|
3005
3009
|
new_file_name: z.ZodString;
|
|
3006
3010
|
}, z.core.$strip>;
|
|
3007
3011
|
type RenameGroupFileInput = z.infer<typeof RenameGroupFileInput>;
|
|
@@ -3153,13 +3157,17 @@ type types_UploadGroupFileOutput = UploadGroupFileOutput;
|
|
|
3153
3157
|
type types_UploadPrivateFileInput = UploadPrivateFileInput;
|
|
3154
3158
|
type types_UploadPrivateFileOutput = UploadPrivateFileOutput;
|
|
3155
3159
|
declare const types_ZBoolean: typeof ZBoolean;
|
|
3160
|
+
declare const types_ZBooleanWithDefault: typeof ZBooleanWithDefault;
|
|
3156
3161
|
declare const types_ZInt32: typeof ZInt32;
|
|
3162
|
+
declare const types_ZInt32WithDefault: typeof ZInt32WithDefault;
|
|
3157
3163
|
declare const types_ZInt64: typeof ZInt64;
|
|
3164
|
+
declare const types_ZInt64WithDefault: typeof ZInt64WithDefault;
|
|
3158
3165
|
declare const types_ZString: typeof ZString;
|
|
3166
|
+
declare const types_ZStringWithDefault: typeof ZStringWithDefault;
|
|
3159
3167
|
declare const types_milkyPackageVersion: typeof milkyPackageVersion;
|
|
3160
3168
|
declare const types_milkyVersion: typeof milkyVersion;
|
|
3161
3169
|
declare namespace types {
|
|
3162
|
-
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_GetGroupAnnouncementListInput as GetGroupAnnouncementListInput, type types_GetGroupAnnouncementListOutput as GetGroupAnnouncementListOutput, 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_ZInt32 as ZInt32, types_ZInt64 as ZInt64, types_ZString as ZString, types_milkyPackageVersion as milkyPackageVersion, types_milkyVersion as milkyVersion };
|
|
3170
|
+
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_GetGroupAnnouncementListInput as GetGroupAnnouncementListInput, type types_GetGroupAnnouncementListOutput as GetGroupAnnouncementListOutput, 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 };
|
|
3163
3171
|
}
|
|
3164
3172
|
|
|
3165
|
-
export {
|
|
3173
|
+
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, GetGroupAnnouncementListInput as aE, GetGroupAnnouncementListOutput 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 };
|