@saltify/milky-types 1.0.0 → 1.1.0-rc.2
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/api-endpoints.js +30 -0
- package/dist/api-endpoints.js.map +1 -1
- package/dist/{index-D5fMPyRS.d.ts → index-BYP4VNOL.d.ts} +198 -28
- package/dist/index.d.ts +1 -1
- package/dist/index.js +234 -205
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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">;
|
|
@@ -971,12 +1020,14 @@ type FriendFileUploadEvent = z.infer<typeof FriendFileUploadEvent>;
|
|
|
971
1020
|
declare const GroupAdminChangeEvent: z.ZodObject<{
|
|
972
1021
|
group_id: z.ZodNumber;
|
|
973
1022
|
user_id: z.ZodNumber;
|
|
1023
|
+
operator_id: z.ZodNumber;
|
|
974
1024
|
is_set: z.ZodBoolean;
|
|
975
1025
|
}, z.core.$strip>;
|
|
976
1026
|
type GroupAdminChangeEvent = z.infer<typeof GroupAdminChangeEvent>;
|
|
977
1027
|
declare const GroupEssenceMessageChangeEvent: z.ZodObject<{
|
|
978
1028
|
group_id: z.ZodNumber;
|
|
979
1029
|
message_seq: z.ZodNumber;
|
|
1030
|
+
operator_id: z.ZodNumber;
|
|
980
1031
|
is_set: z.ZodBoolean;
|
|
981
1032
|
}, z.core.$strip>;
|
|
982
1033
|
type GroupEssenceMessageChangeEvent = z.infer<typeof GroupEssenceMessageChangeEvent>;
|
|
@@ -1071,6 +1122,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1071
1122
|
type: z.ZodLiteral<"face">;
|
|
1072
1123
|
data: z.ZodObject<{
|
|
1073
1124
|
face_id: z.ZodString;
|
|
1125
|
+
is_large: z.ZodBoolean;
|
|
1074
1126
|
}, z.core.$strip>;
|
|
1075
1127
|
}, z.core.$strip>, z.ZodObject<{
|
|
1076
1128
|
type: z.ZodLiteral<"reply">;
|
|
@@ -1118,10 +1170,17 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1118
1170
|
type: z.ZodLiteral<"forward">;
|
|
1119
1171
|
data: z.ZodObject<{
|
|
1120
1172
|
forward_id: z.ZodString;
|
|
1173
|
+
title: z.ZodString;
|
|
1174
|
+
preview: z.ZodArray<z.ZodString>;
|
|
1175
|
+
summary: z.ZodString;
|
|
1121
1176
|
}, z.core.$strip>;
|
|
1122
1177
|
}, z.core.$strip>, z.ZodObject<{
|
|
1123
1178
|
type: z.ZodLiteral<"market_face">;
|
|
1124
1179
|
data: z.ZodObject<{
|
|
1180
|
+
emoji_package_id: z.ZodNumber;
|
|
1181
|
+
emoji_id: z.ZodNumber;
|
|
1182
|
+
key: z.ZodString;
|
|
1183
|
+
summary: z.ZodString;
|
|
1125
1184
|
url: z.ZodString;
|
|
1126
1185
|
}, z.core.$strip>;
|
|
1127
1186
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1175,6 +1234,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1175
1234
|
type: z.ZodLiteral<"face">;
|
|
1176
1235
|
data: z.ZodObject<{
|
|
1177
1236
|
face_id: z.ZodString;
|
|
1237
|
+
is_large: z.ZodBoolean;
|
|
1178
1238
|
}, z.core.$strip>;
|
|
1179
1239
|
}, z.core.$strip>, z.ZodObject<{
|
|
1180
1240
|
type: z.ZodLiteral<"reply">;
|
|
@@ -1222,10 +1282,17 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1222
1282
|
type: z.ZodLiteral<"forward">;
|
|
1223
1283
|
data: z.ZodObject<{
|
|
1224
1284
|
forward_id: z.ZodString;
|
|
1285
|
+
title: z.ZodString;
|
|
1286
|
+
preview: z.ZodArray<z.ZodString>;
|
|
1287
|
+
summary: z.ZodString;
|
|
1225
1288
|
}, z.core.$strip>;
|
|
1226
1289
|
}, z.core.$strip>, z.ZodObject<{
|
|
1227
1290
|
type: z.ZodLiteral<"market_face">;
|
|
1228
1291
|
data: z.ZodObject<{
|
|
1292
|
+
emoji_package_id: z.ZodNumber;
|
|
1293
|
+
emoji_id: z.ZodNumber;
|
|
1294
|
+
key: z.ZodString;
|
|
1295
|
+
summary: z.ZodString;
|
|
1229
1296
|
url: z.ZodString;
|
|
1230
1297
|
}, z.core.$strip>;
|
|
1231
1298
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1291,6 +1358,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1291
1358
|
type: z.ZodLiteral<"face">;
|
|
1292
1359
|
data: z.ZodObject<{
|
|
1293
1360
|
face_id: z.ZodString;
|
|
1361
|
+
is_large: z.ZodBoolean;
|
|
1294
1362
|
}, z.core.$strip>;
|
|
1295
1363
|
}, z.core.$strip>, z.ZodObject<{
|
|
1296
1364
|
type: z.ZodLiteral<"reply">;
|
|
@@ -1338,10 +1406,17 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1338
1406
|
type: z.ZodLiteral<"forward">;
|
|
1339
1407
|
data: z.ZodObject<{
|
|
1340
1408
|
forward_id: z.ZodString;
|
|
1409
|
+
title: z.ZodString;
|
|
1410
|
+
preview: z.ZodArray<z.ZodString>;
|
|
1411
|
+
summary: z.ZodString;
|
|
1341
1412
|
}, z.core.$strip>;
|
|
1342
1413
|
}, z.core.$strip>, z.ZodObject<{
|
|
1343
1414
|
type: z.ZodLiteral<"market_face">;
|
|
1344
1415
|
data: z.ZodObject<{
|
|
1416
|
+
emoji_package_id: z.ZodNumber;
|
|
1417
|
+
emoji_id: z.ZodNumber;
|
|
1418
|
+
key: z.ZodString;
|
|
1419
|
+
summary: z.ZodString;
|
|
1345
1420
|
url: z.ZodString;
|
|
1346
1421
|
}, z.core.$strip>;
|
|
1347
1422
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1451,6 +1526,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1451
1526
|
data: z.ZodObject<{
|
|
1452
1527
|
group_id: z.ZodNumber;
|
|
1453
1528
|
user_id: z.ZodNumber;
|
|
1529
|
+
operator_id: z.ZodNumber;
|
|
1454
1530
|
is_set: z.ZodBoolean;
|
|
1455
1531
|
}, z.core.$strip>;
|
|
1456
1532
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1460,6 +1536,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1460
1536
|
data: z.ZodObject<{
|
|
1461
1537
|
group_id: z.ZodNumber;
|
|
1462
1538
|
message_seq: z.ZodNumber;
|
|
1539
|
+
operator_id: z.ZodNumber;
|
|
1463
1540
|
is_set: z.ZodBoolean;
|
|
1464
1541
|
}, z.core.$strip>;
|
|
1465
1542
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1721,6 +1798,22 @@ declare const GetGroupMemberInfoOutput: z.ZodObject<{
|
|
|
1721
1798
|
}, z.core.$strip>>;
|
|
1722
1799
|
}, z.core.$strip>;
|
|
1723
1800
|
type GetGroupMemberInfoOutput = z.infer<typeof GetGroupMemberInfoOutput>;
|
|
1801
|
+
declare const SetAvatarInput: z.ZodObject<{
|
|
1802
|
+
uri: z.ZodString;
|
|
1803
|
+
}, z.core.$strip>;
|
|
1804
|
+
type SetAvatarInput = z.infer<typeof SetAvatarInput>;
|
|
1805
|
+
declare const SetNicknameInput: z.ZodObject<{
|
|
1806
|
+
new_card: z.ZodString;
|
|
1807
|
+
}, z.core.$strip>;
|
|
1808
|
+
type SetNicknameInput = z.infer<typeof SetNicknameInput>;
|
|
1809
|
+
declare const SetBioInput: z.ZodObject<{
|
|
1810
|
+
new_bio: z.ZodString;
|
|
1811
|
+
}, z.core.$strip>;
|
|
1812
|
+
type SetBioInput = z.infer<typeof SetBioInput>;
|
|
1813
|
+
declare const GetCustomFaceUrlListOutput: z.ZodObject<{
|
|
1814
|
+
urls: z.ZodArray<z.ZodString>;
|
|
1815
|
+
}, z.core.$strip>;
|
|
1816
|
+
type GetCustomFaceUrlListOutput = z.infer<typeof GetCustomFaceUrlListOutput>;
|
|
1724
1817
|
declare const GetCookiesInput: z.ZodObject<{
|
|
1725
1818
|
domain: z.ZodString;
|
|
1726
1819
|
}, z.core.$strip>;
|
|
@@ -1753,6 +1846,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1753
1846
|
type: z.ZodLiteral<"face">;
|
|
1754
1847
|
data: z.ZodObject<{
|
|
1755
1848
|
face_id: z.ZodString;
|
|
1849
|
+
is_large: z.ZodDefault<z.ZodBoolean>;
|
|
1756
1850
|
}, z.core.$strip>;
|
|
1757
1851
|
}, z.core.$strip>, z.ZodObject<{
|
|
1758
1852
|
type: z.ZodLiteral<"reply">;
|
|
@@ -1763,11 +1857,11 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1763
1857
|
type: z.ZodLiteral<"image">;
|
|
1764
1858
|
data: z.ZodObject<{
|
|
1765
1859
|
uri: z.ZodString;
|
|
1766
|
-
|
|
1767
|
-
sub_type: z.ZodEnum<{
|
|
1860
|
+
sub_type: z.ZodDefault<z.ZodEnum<{
|
|
1768
1861
|
normal: "normal";
|
|
1769
1862
|
sticker: "sticker";
|
|
1770
|
-
}
|
|
1863
|
+
}>>;
|
|
1864
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1771
1865
|
}, z.core.$strip>;
|
|
1772
1866
|
}, z.core.$strip>, z.ZodObject<{
|
|
1773
1867
|
type: z.ZodLiteral<"record">;
|
|
@@ -1803,6 +1897,7 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1803
1897
|
type: z.ZodLiteral<"face">;
|
|
1804
1898
|
data: z.ZodObject<{
|
|
1805
1899
|
face_id: z.ZodString;
|
|
1900
|
+
is_large: z.ZodDefault<z.ZodBoolean>;
|
|
1806
1901
|
}, z.core.$strip>;
|
|
1807
1902
|
}, z.core.$strip>, z.ZodObject<{
|
|
1808
1903
|
type: z.ZodLiteral<"reply">;
|
|
@@ -1813,11 +1908,11 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1813
1908
|
type: z.ZodLiteral<"image">;
|
|
1814
1909
|
data: z.ZodObject<{
|
|
1815
1910
|
uri: z.ZodString;
|
|
1816
|
-
|
|
1817
|
-
sub_type: z.ZodEnum<{
|
|
1911
|
+
sub_type: z.ZodDefault<z.ZodEnum<{
|
|
1818
1912
|
normal: "normal";
|
|
1819
1913
|
sticker: "sticker";
|
|
1820
|
-
}
|
|
1914
|
+
}>>;
|
|
1915
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1821
1916
|
}, z.core.$strip>;
|
|
1822
1917
|
}, z.core.$strip>, z.ZodObject<{
|
|
1823
1918
|
type: z.ZodLiteral<"record">;
|
|
@@ -1860,6 +1955,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
1860
1955
|
type: z.ZodLiteral<"face">;
|
|
1861
1956
|
data: z.ZodObject<{
|
|
1862
1957
|
face_id: z.ZodString;
|
|
1958
|
+
is_large: z.ZodDefault<z.ZodBoolean>;
|
|
1863
1959
|
}, z.core.$strip>;
|
|
1864
1960
|
}, z.core.$strip>, z.ZodObject<{
|
|
1865
1961
|
type: z.ZodLiteral<"reply">;
|
|
@@ -1870,11 +1966,11 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
1870
1966
|
type: z.ZodLiteral<"image">;
|
|
1871
1967
|
data: z.ZodObject<{
|
|
1872
1968
|
uri: z.ZodString;
|
|
1873
|
-
|
|
1874
|
-
sub_type: z.ZodEnum<{
|
|
1969
|
+
sub_type: z.ZodDefault<z.ZodEnum<{
|
|
1875
1970
|
normal: "normal";
|
|
1876
1971
|
sticker: "sticker";
|
|
1877
|
-
}
|
|
1972
|
+
}>>;
|
|
1973
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1878
1974
|
}, z.core.$strip>;
|
|
1879
1975
|
}, z.core.$strip>, z.ZodObject<{
|
|
1880
1976
|
type: z.ZodLiteral<"record">;
|
|
@@ -1910,6 +2006,7 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
1910
2006
|
type: z.ZodLiteral<"face">;
|
|
1911
2007
|
data: z.ZodObject<{
|
|
1912
2008
|
face_id: z.ZodString;
|
|
2009
|
+
is_large: z.ZodDefault<z.ZodBoolean>;
|
|
1913
2010
|
}, z.core.$strip>;
|
|
1914
2011
|
}, z.core.$strip>, z.ZodObject<{
|
|
1915
2012
|
type: z.ZodLiteral<"reply">;
|
|
@@ -1920,11 +2017,11 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
1920
2017
|
type: z.ZodLiteral<"image">;
|
|
1921
2018
|
data: z.ZodObject<{
|
|
1922
2019
|
uri: z.ZodString;
|
|
1923
|
-
|
|
1924
|
-
sub_type: z.ZodEnum<{
|
|
2020
|
+
sub_type: z.ZodDefault<z.ZodEnum<{
|
|
1925
2021
|
normal: "normal";
|
|
1926
2022
|
sticker: "sticker";
|
|
1927
|
-
}
|
|
2023
|
+
}>>;
|
|
2024
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1928
2025
|
}, z.core.$strip>;
|
|
1929
2026
|
}, z.core.$strip>, z.ZodObject<{
|
|
1930
2027
|
type: z.ZodLiteral<"record">;
|
|
@@ -1992,6 +2089,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
1992
2089
|
type: z.ZodLiteral<"face">;
|
|
1993
2090
|
data: z.ZodObject<{
|
|
1994
2091
|
face_id: z.ZodString;
|
|
2092
|
+
is_large: z.ZodBoolean;
|
|
1995
2093
|
}, z.core.$strip>;
|
|
1996
2094
|
}, z.core.$strip>, z.ZodObject<{
|
|
1997
2095
|
type: z.ZodLiteral<"reply">;
|
|
@@ -2039,10 +2137,17 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2039
2137
|
type: z.ZodLiteral<"forward">;
|
|
2040
2138
|
data: z.ZodObject<{
|
|
2041
2139
|
forward_id: z.ZodString;
|
|
2140
|
+
title: z.ZodString;
|
|
2141
|
+
preview: z.ZodArray<z.ZodString>;
|
|
2142
|
+
summary: z.ZodString;
|
|
2042
2143
|
}, z.core.$strip>;
|
|
2043
2144
|
}, z.core.$strip>, z.ZodObject<{
|
|
2044
2145
|
type: z.ZodLiteral<"market_face">;
|
|
2045
2146
|
data: z.ZodObject<{
|
|
2147
|
+
emoji_package_id: z.ZodNumber;
|
|
2148
|
+
emoji_id: z.ZodNumber;
|
|
2149
|
+
key: z.ZodString;
|
|
2150
|
+
summary: z.ZodString;
|
|
2046
2151
|
url: z.ZodString;
|
|
2047
2152
|
}, z.core.$strip>;
|
|
2048
2153
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2096,6 +2201,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2096
2201
|
type: z.ZodLiteral<"face">;
|
|
2097
2202
|
data: z.ZodObject<{
|
|
2098
2203
|
face_id: z.ZodString;
|
|
2204
|
+
is_large: z.ZodBoolean;
|
|
2099
2205
|
}, z.core.$strip>;
|
|
2100
2206
|
}, z.core.$strip>, z.ZodObject<{
|
|
2101
2207
|
type: z.ZodLiteral<"reply">;
|
|
@@ -2143,10 +2249,17 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2143
2249
|
type: z.ZodLiteral<"forward">;
|
|
2144
2250
|
data: z.ZodObject<{
|
|
2145
2251
|
forward_id: z.ZodString;
|
|
2252
|
+
title: z.ZodString;
|
|
2253
|
+
preview: z.ZodArray<z.ZodString>;
|
|
2254
|
+
summary: z.ZodString;
|
|
2146
2255
|
}, z.core.$strip>;
|
|
2147
2256
|
}, z.core.$strip>, z.ZodObject<{
|
|
2148
2257
|
type: z.ZodLiteral<"market_face">;
|
|
2149
2258
|
data: z.ZodObject<{
|
|
2259
|
+
emoji_package_id: z.ZodNumber;
|
|
2260
|
+
emoji_id: z.ZodNumber;
|
|
2261
|
+
key: z.ZodString;
|
|
2262
|
+
summary: z.ZodString;
|
|
2150
2263
|
url: z.ZodString;
|
|
2151
2264
|
}, z.core.$strip>;
|
|
2152
2265
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2212,6 +2325,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2212
2325
|
type: z.ZodLiteral<"face">;
|
|
2213
2326
|
data: z.ZodObject<{
|
|
2214
2327
|
face_id: z.ZodString;
|
|
2328
|
+
is_large: z.ZodBoolean;
|
|
2215
2329
|
}, z.core.$strip>;
|
|
2216
2330
|
}, z.core.$strip>, z.ZodObject<{
|
|
2217
2331
|
type: z.ZodLiteral<"reply">;
|
|
@@ -2259,10 +2373,17 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2259
2373
|
type: z.ZodLiteral<"forward">;
|
|
2260
2374
|
data: z.ZodObject<{
|
|
2261
2375
|
forward_id: z.ZodString;
|
|
2376
|
+
title: z.ZodString;
|
|
2377
|
+
preview: z.ZodArray<z.ZodString>;
|
|
2378
|
+
summary: z.ZodString;
|
|
2262
2379
|
}, z.core.$strip>;
|
|
2263
2380
|
}, z.core.$strip>, z.ZodObject<{
|
|
2264
2381
|
type: z.ZodLiteral<"market_face">;
|
|
2265
2382
|
data: z.ZodObject<{
|
|
2383
|
+
emoji_package_id: z.ZodNumber;
|
|
2384
|
+
emoji_id: z.ZodNumber;
|
|
2385
|
+
key: z.ZodString;
|
|
2386
|
+
summary: z.ZodString;
|
|
2266
2387
|
url: z.ZodString;
|
|
2267
2388
|
}, z.core.$strip>;
|
|
2268
2389
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2322,6 +2443,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2322
2443
|
type: z.ZodLiteral<"face">;
|
|
2323
2444
|
data: z.ZodObject<{
|
|
2324
2445
|
face_id: z.ZodString;
|
|
2446
|
+
is_large: z.ZodBoolean;
|
|
2325
2447
|
}, z.core.$strip>;
|
|
2326
2448
|
}, z.core.$strip>, z.ZodObject<{
|
|
2327
2449
|
type: z.ZodLiteral<"reply">;
|
|
@@ -2369,10 +2491,17 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2369
2491
|
type: z.ZodLiteral<"forward">;
|
|
2370
2492
|
data: z.ZodObject<{
|
|
2371
2493
|
forward_id: z.ZodString;
|
|
2494
|
+
title: z.ZodString;
|
|
2495
|
+
preview: z.ZodArray<z.ZodString>;
|
|
2496
|
+
summary: z.ZodString;
|
|
2372
2497
|
}, z.core.$strip>;
|
|
2373
2498
|
}, z.core.$strip>, z.ZodObject<{
|
|
2374
2499
|
type: z.ZodLiteral<"market_face">;
|
|
2375
2500
|
data: z.ZodObject<{
|
|
2501
|
+
emoji_package_id: z.ZodNumber;
|
|
2502
|
+
emoji_id: z.ZodNumber;
|
|
2503
|
+
key: z.ZodString;
|
|
2504
|
+
summary: z.ZodString;
|
|
2376
2505
|
url: z.ZodString;
|
|
2377
2506
|
}, z.core.$strip>;
|
|
2378
2507
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2426,6 +2555,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2426
2555
|
type: z.ZodLiteral<"face">;
|
|
2427
2556
|
data: z.ZodObject<{
|
|
2428
2557
|
face_id: z.ZodString;
|
|
2558
|
+
is_large: z.ZodBoolean;
|
|
2429
2559
|
}, z.core.$strip>;
|
|
2430
2560
|
}, z.core.$strip>, z.ZodObject<{
|
|
2431
2561
|
type: z.ZodLiteral<"reply">;
|
|
@@ -2473,10 +2603,17 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2473
2603
|
type: z.ZodLiteral<"forward">;
|
|
2474
2604
|
data: z.ZodObject<{
|
|
2475
2605
|
forward_id: z.ZodString;
|
|
2606
|
+
title: z.ZodString;
|
|
2607
|
+
preview: z.ZodArray<z.ZodString>;
|
|
2608
|
+
summary: z.ZodString;
|
|
2476
2609
|
}, z.core.$strip>;
|
|
2477
2610
|
}, z.core.$strip>, z.ZodObject<{
|
|
2478
2611
|
type: z.ZodLiteral<"market_face">;
|
|
2479
2612
|
data: z.ZodObject<{
|
|
2613
|
+
emoji_package_id: z.ZodNumber;
|
|
2614
|
+
emoji_id: z.ZodNumber;
|
|
2615
|
+
key: z.ZodString;
|
|
2616
|
+
summary: z.ZodString;
|
|
2480
2617
|
url: z.ZodString;
|
|
2481
2618
|
}, z.core.$strip>;
|
|
2482
2619
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2542,6 +2679,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2542
2679
|
type: z.ZodLiteral<"face">;
|
|
2543
2680
|
data: z.ZodObject<{
|
|
2544
2681
|
face_id: z.ZodString;
|
|
2682
|
+
is_large: z.ZodBoolean;
|
|
2545
2683
|
}, z.core.$strip>;
|
|
2546
2684
|
}, z.core.$strip>, z.ZodObject<{
|
|
2547
2685
|
type: z.ZodLiteral<"reply">;
|
|
@@ -2589,10 +2727,17 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2589
2727
|
type: z.ZodLiteral<"forward">;
|
|
2590
2728
|
data: z.ZodObject<{
|
|
2591
2729
|
forward_id: z.ZodString;
|
|
2730
|
+
title: z.ZodString;
|
|
2731
|
+
preview: z.ZodArray<z.ZodString>;
|
|
2732
|
+
summary: z.ZodString;
|
|
2592
2733
|
}, z.core.$strip>;
|
|
2593
2734
|
}, z.core.$strip>, z.ZodObject<{
|
|
2594
2735
|
type: z.ZodLiteral<"market_face">;
|
|
2595
2736
|
data: z.ZodObject<{
|
|
2737
|
+
emoji_package_id: z.ZodNumber;
|
|
2738
|
+
emoji_id: z.ZodNumber;
|
|
2739
|
+
key: z.ZodString;
|
|
2740
|
+
summary: z.ZodString;
|
|
2596
2741
|
url: z.ZodString;
|
|
2597
2742
|
}, z.core.$strip>;
|
|
2598
2743
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2652,6 +2797,7 @@ declare const GetForwardedMessagesOutput: z.ZodObject<{
|
|
|
2652
2797
|
type: z.ZodLiteral<"face">;
|
|
2653
2798
|
data: z.ZodObject<{
|
|
2654
2799
|
face_id: z.ZodString;
|
|
2800
|
+
is_large: z.ZodBoolean;
|
|
2655
2801
|
}, z.core.$strip>;
|
|
2656
2802
|
}, z.core.$strip>, z.ZodObject<{
|
|
2657
2803
|
type: z.ZodLiteral<"reply">;
|
|
@@ -2699,10 +2845,17 @@ declare const GetForwardedMessagesOutput: z.ZodObject<{
|
|
|
2699
2845
|
type: z.ZodLiteral<"forward">;
|
|
2700
2846
|
data: z.ZodObject<{
|
|
2701
2847
|
forward_id: z.ZodString;
|
|
2848
|
+
title: z.ZodString;
|
|
2849
|
+
preview: z.ZodArray<z.ZodString>;
|
|
2850
|
+
summary: z.ZodString;
|
|
2702
2851
|
}, z.core.$strip>;
|
|
2703
2852
|
}, z.core.$strip>, z.ZodObject<{
|
|
2704
2853
|
type: z.ZodLiteral<"market_face">;
|
|
2705
2854
|
data: z.ZodObject<{
|
|
2855
|
+
emoji_package_id: z.ZodNumber;
|
|
2856
|
+
emoji_id: z.ZodNumber;
|
|
2857
|
+
key: z.ZodString;
|
|
2858
|
+
summary: z.ZodString;
|
|
2706
2859
|
url: z.ZodString;
|
|
2707
2860
|
}, z.core.$strip>;
|
|
2708
2861
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2742,6 +2895,10 @@ declare const SendProfileLikeInput: z.ZodObject<{
|
|
|
2742
2895
|
count: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
2743
2896
|
}, z.core.$strip>;
|
|
2744
2897
|
type SendProfileLikeInput = z.infer<typeof SendProfileLikeInput>;
|
|
2898
|
+
declare const DeleteFriendInput: z.ZodObject<{
|
|
2899
|
+
user_id: z.ZodNumber;
|
|
2900
|
+
}, z.core.$strip>;
|
|
2901
|
+
type DeleteFriendInput = z.infer<typeof DeleteFriendInput>;
|
|
2745
2902
|
declare const GetFriendRequestsInput: z.ZodObject<{
|
|
2746
2903
|
limit: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
2747
2904
|
is_filtered: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
@@ -2882,6 +3039,7 @@ declare const GetGroupEssenceMessagesOutput: z.ZodObject<{
|
|
|
2882
3039
|
type: z.ZodLiteral<"face">;
|
|
2883
3040
|
data: z.ZodObject<{
|
|
2884
3041
|
face_id: z.ZodString;
|
|
3042
|
+
is_large: z.ZodBoolean;
|
|
2885
3043
|
}, z.core.$strip>;
|
|
2886
3044
|
}, z.core.$strip>, z.ZodObject<{
|
|
2887
3045
|
type: z.ZodLiteral<"reply">;
|
|
@@ -2929,10 +3087,17 @@ declare const GetGroupEssenceMessagesOutput: z.ZodObject<{
|
|
|
2929
3087
|
type: z.ZodLiteral<"forward">;
|
|
2930
3088
|
data: z.ZodObject<{
|
|
2931
3089
|
forward_id: z.ZodString;
|
|
3090
|
+
title: z.ZodString;
|
|
3091
|
+
preview: z.ZodArray<z.ZodString>;
|
|
3092
|
+
summary: z.ZodString;
|
|
2932
3093
|
}, z.core.$strip>;
|
|
2933
3094
|
}, z.core.$strip>, z.ZodObject<{
|
|
2934
3095
|
type: z.ZodLiteral<"market_face">;
|
|
2935
3096
|
data: z.ZodObject<{
|
|
3097
|
+
emoji_package_id: z.ZodNumber;
|
|
3098
|
+
emoji_id: z.ZodNumber;
|
|
3099
|
+
key: z.ZodString;
|
|
3100
|
+
summary: z.ZodString;
|
|
2936
3101
|
url: z.ZodString;
|
|
2937
3102
|
}, z.core.$strip>;
|
|
2938
3103
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3171,8 +3336,8 @@ declare const DeleteGroupFolderInput: z.ZodObject<{
|
|
|
3171
3336
|
}, z.core.$strip>;
|
|
3172
3337
|
type DeleteGroupFolderInput = z.infer<typeof DeleteGroupFolderInput>;
|
|
3173
3338
|
|
|
3174
|
-
declare const milkyVersion = "1.0";
|
|
3175
3339
|
declare const milkyPackageVersion: string;
|
|
3340
|
+
declare const milkyVersion: string;
|
|
3176
3341
|
|
|
3177
3342
|
type types_AcceptFriendRequestInput = AcceptFriendRequestInput;
|
|
3178
3343
|
type types_AcceptGroupInvitationInput = AcceptGroupInvitationInput;
|
|
@@ -3180,6 +3345,7 @@ type types_AcceptGroupRequestInput = AcceptGroupRequestInput;
|
|
|
3180
3345
|
type types_BotOfflineEvent = BotOfflineEvent;
|
|
3181
3346
|
type types_CreateGroupFolderInput = CreateGroupFolderInput;
|
|
3182
3347
|
type types_CreateGroupFolderOutput = CreateGroupFolderOutput;
|
|
3348
|
+
type types_DeleteFriendInput = DeleteFriendInput;
|
|
3183
3349
|
type types_DeleteGroupAnnouncementInput = DeleteGroupAnnouncementInput;
|
|
3184
3350
|
type types_DeleteGroupFileInput = DeleteGroupFileInput;
|
|
3185
3351
|
type types_DeleteGroupFolderInput = DeleteGroupFolderInput;
|
|
@@ -3193,6 +3359,7 @@ type types_FriendRequestEvent = FriendRequestEvent;
|
|
|
3193
3359
|
type types_GetCSRFTokenOutput = GetCSRFTokenOutput;
|
|
3194
3360
|
type types_GetCookiesInput = GetCookiesInput;
|
|
3195
3361
|
type types_GetCookiesOutput = GetCookiesOutput;
|
|
3362
|
+
type types_GetCustomFaceUrlListOutput = GetCustomFaceUrlListOutput;
|
|
3196
3363
|
type types_GetForwardedMessagesInput = GetForwardedMessagesInput;
|
|
3197
3364
|
type types_GetForwardedMessagesOutput = GetForwardedMessagesOutput;
|
|
3198
3365
|
type types_GetFriendInfoInput = GetFriendInfoInput;
|
|
@@ -3279,6 +3446,8 @@ type types_SendGroupNudgeInput = SendGroupNudgeInput;
|
|
|
3279
3446
|
type types_SendPrivateMessageInput = SendPrivateMessageInput;
|
|
3280
3447
|
type types_SendPrivateMessageOutput = SendPrivateMessageOutput;
|
|
3281
3448
|
type types_SendProfileLikeInput = SendProfileLikeInput;
|
|
3449
|
+
type types_SetAvatarInput = SetAvatarInput;
|
|
3450
|
+
type types_SetBioInput = SetBioInput;
|
|
3282
3451
|
type types_SetGroupAvatarInput = SetGroupAvatarInput;
|
|
3283
3452
|
type types_SetGroupEssenceMessageInput = SetGroupEssenceMessageInput;
|
|
3284
3453
|
type types_SetGroupMemberAdminInput = SetGroupMemberAdminInput;
|
|
@@ -3287,7 +3456,7 @@ type types_SetGroupMemberMuteInput = SetGroupMemberMuteInput;
|
|
|
3287
3456
|
type types_SetGroupMemberSpecialTitleInput = SetGroupMemberSpecialTitleInput;
|
|
3288
3457
|
type types_SetGroupNameInput = SetGroupNameInput;
|
|
3289
3458
|
type types_SetGroupWholeMuteInput = SetGroupWholeMuteInput;
|
|
3290
|
-
|
|
3459
|
+
type types_SetNicknameInput = SetNicknameInput;
|
|
3291
3460
|
type types_UploadGroupFileInput = UploadGroupFileInput;
|
|
3292
3461
|
type types_UploadGroupFileOutput = UploadGroupFileOutput;
|
|
3293
3462
|
type types_UploadPrivateFileInput = UploadPrivateFileInput;
|
|
@@ -3300,10 +3469,11 @@ declare const types_ZInt64: typeof ZInt64;
|
|
|
3300
3469
|
declare const types_ZInt64WithDefault: typeof ZInt64WithDefault;
|
|
3301
3470
|
declare const types_ZString: typeof ZString;
|
|
3302
3471
|
declare const types_ZStringWithDefault: typeof ZStringWithDefault;
|
|
3472
|
+
declare const types_ZUin: typeof ZUin;
|
|
3303
3473
|
declare const types_milkyPackageVersion: typeof milkyPackageVersion;
|
|
3304
3474
|
declare const types_milkyVersion: typeof milkyVersion;
|
|
3305
3475
|
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,
|
|
3476
|
+
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
3477
|
}
|
|
3308
3478
|
|
|
3309
|
-
export { GetFriendInfoOutput as $,
|
|
3479
|
+
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 };
|