@saltify/milky-types 1.1.0 → 1.2.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/{index-DRIK9fKk.d.mts → index-CH_fdLPN.d.mts} +1726 -57
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +71 -12
- package/dist/index.mjs.map +1 -1
- package/dist/namings.d.mts +20 -0
- package/dist/{api-endpoints.mjs → namings.mjs} +157 -140
- package/dist/namings.mjs.map +1 -0
- package/package.json +5 -5
- package/dist/api-endpoints.d.mts +0 -19
- package/dist/api-endpoints.mjs.map +0 -1
|
@@ -22,9 +22,9 @@ declare const FriendEntity: z.ZodObject<{
|
|
|
22
22
|
user_id: z.ZodNumber;
|
|
23
23
|
nickname: z.ZodString;
|
|
24
24
|
sex: z.ZodEnum<{
|
|
25
|
+
unknown: "unknown";
|
|
25
26
|
male: "male";
|
|
26
27
|
female: "female";
|
|
27
|
-
unknown: "unknown";
|
|
28
28
|
}>;
|
|
29
29
|
qid: z.ZodString;
|
|
30
30
|
remark: z.ZodString;
|
|
@@ -43,9 +43,9 @@ declare const GroupMemberEntity: z.ZodObject<{
|
|
|
43
43
|
user_id: z.ZodNumber;
|
|
44
44
|
nickname: z.ZodString;
|
|
45
45
|
sex: z.ZodEnum<{
|
|
46
|
+
unknown: "unknown";
|
|
46
47
|
male: "male";
|
|
47
48
|
female: "female";
|
|
48
|
-
unknown: "unknown";
|
|
49
49
|
}>;
|
|
50
50
|
group_id: z.ZodNumber;
|
|
51
51
|
card: z.ZodString;
|
|
@@ -169,7 +169,7 @@ declare const IncomingResourceSegmentBase: z.ZodObject<{
|
|
|
169
169
|
declare const OutgoingResourceSegmentBase: z.ZodObject<{
|
|
170
170
|
uri: z.ZodString;
|
|
171
171
|
}, z.core.$strip>;
|
|
172
|
-
declare const IncomingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
172
|
+
declare const IncomingSegment: z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
173
173
|
type: z.ZodLiteral<"text">;
|
|
174
174
|
data: z.ZodObject<{
|
|
175
175
|
text: z.ZodString;
|
|
@@ -178,6 +178,7 @@ declare const IncomingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
178
178
|
type: z.ZodLiteral<"mention">;
|
|
179
179
|
data: z.ZodObject<{
|
|
180
180
|
user_id: z.ZodNumber;
|
|
181
|
+
name: z.ZodString;
|
|
181
182
|
}, z.core.$strip>;
|
|
182
183
|
}, z.core.$strip>, z.ZodObject<{
|
|
183
184
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -192,6 +193,96 @@ declare const IncomingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
192
193
|
type: z.ZodLiteral<"reply">;
|
|
193
194
|
data: z.ZodObject<{
|
|
194
195
|
message_seq: z.ZodNumber;
|
|
196
|
+
sender_id: z.ZodNumber;
|
|
197
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
198
|
+
time: z.ZodNumber;
|
|
199
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
200
|
+
type: z.ZodLiteral<"text">;
|
|
201
|
+
data: z.ZodObject<{
|
|
202
|
+
text: z.ZodString;
|
|
203
|
+
}, z.core.$strip>;
|
|
204
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
205
|
+
type: z.ZodLiteral<"mention">;
|
|
206
|
+
data: z.ZodObject<{
|
|
207
|
+
user_id: z.ZodNumber;
|
|
208
|
+
name: z.ZodString;
|
|
209
|
+
}, z.core.$strip>;
|
|
210
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
211
|
+
type: z.ZodLiteral<"mention_all">;
|
|
212
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
213
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
214
|
+
type: z.ZodLiteral<"face">;
|
|
215
|
+
data: z.ZodObject<{
|
|
216
|
+
face_id: z.ZodString;
|
|
217
|
+
is_large: z.ZodBoolean;
|
|
218
|
+
}, z.core.$strip>;
|
|
219
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
220
|
+
type: z.ZodLiteral<"image">;
|
|
221
|
+
data: z.ZodObject<{
|
|
222
|
+
resource_id: z.ZodString;
|
|
223
|
+
temp_url: z.ZodString;
|
|
224
|
+
width: z.ZodNumber;
|
|
225
|
+
height: z.ZodNumber;
|
|
226
|
+
summary: z.ZodString;
|
|
227
|
+
sub_type: z.ZodEnum<{
|
|
228
|
+
normal: "normal";
|
|
229
|
+
sticker: "sticker";
|
|
230
|
+
}>;
|
|
231
|
+
}, z.core.$strip>;
|
|
232
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
233
|
+
type: z.ZodLiteral<"record">;
|
|
234
|
+
data: z.ZodObject<{
|
|
235
|
+
resource_id: z.ZodString;
|
|
236
|
+
temp_url: z.ZodString;
|
|
237
|
+
duration: z.ZodNumber;
|
|
238
|
+
}, z.core.$strip>;
|
|
239
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
240
|
+
type: z.ZodLiteral<"video">;
|
|
241
|
+
data: z.ZodObject<{
|
|
242
|
+
resource_id: z.ZodString;
|
|
243
|
+
temp_url: z.ZodString;
|
|
244
|
+
width: z.ZodNumber;
|
|
245
|
+
height: z.ZodNumber;
|
|
246
|
+
duration: z.ZodNumber;
|
|
247
|
+
}, z.core.$strip>;
|
|
248
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
249
|
+
type: z.ZodLiteral<"file">;
|
|
250
|
+
data: z.ZodObject<{
|
|
251
|
+
file_id: z.ZodString;
|
|
252
|
+
file_name: z.ZodString;
|
|
253
|
+
file_size: z.ZodNumber;
|
|
254
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
255
|
+
}, z.core.$strip>;
|
|
256
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
257
|
+
type: z.ZodLiteral<"forward">;
|
|
258
|
+
data: z.ZodObject<{
|
|
259
|
+
forward_id: z.ZodString;
|
|
260
|
+
title: z.ZodString;
|
|
261
|
+
preview: z.ZodArray<z.ZodString>;
|
|
262
|
+
summary: z.ZodString;
|
|
263
|
+
}, z.core.$strip>;
|
|
264
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
265
|
+
type: z.ZodLiteral<"market_face">;
|
|
266
|
+
data: z.ZodObject<{
|
|
267
|
+
emoji_package_id: z.ZodNumber;
|
|
268
|
+
emoji_id: z.ZodString;
|
|
269
|
+
key: z.ZodString;
|
|
270
|
+
summary: z.ZodString;
|
|
271
|
+
url: z.ZodString;
|
|
272
|
+
}, z.core.$strip>;
|
|
273
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
274
|
+
type: z.ZodLiteral<"light_app">;
|
|
275
|
+
data: z.ZodObject<{
|
|
276
|
+
app_name: z.ZodString;
|
|
277
|
+
json_payload: z.ZodString;
|
|
278
|
+
}, z.core.$strip>;
|
|
279
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
280
|
+
type: z.ZodLiteral<"xml">;
|
|
281
|
+
data: z.ZodObject<{
|
|
282
|
+
service_id: z.ZodNumber;
|
|
283
|
+
xml_payload: z.ZodString;
|
|
284
|
+
}, z.core.$strip>;
|
|
285
|
+
}, z.core.$strip>], "type">>>>;
|
|
195
286
|
}, z.core.$strip>;
|
|
196
287
|
}, z.core.$strip>, z.ZodObject<{
|
|
197
288
|
type: z.ZodLiteral<"image">;
|
|
@@ -259,12 +350,13 @@ declare const IncomingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
259
350
|
service_id: z.ZodNumber;
|
|
260
351
|
xml_payload: z.ZodString;
|
|
261
352
|
}, z.core.$strip>;
|
|
262
|
-
}, z.core.$strip>], "type"
|
|
353
|
+
}, z.core.$strip>], "type">>;
|
|
263
354
|
declare const IncomingForwardedMessage: z.ZodObject<{
|
|
355
|
+
message_seq: z.ZodNumber;
|
|
264
356
|
sender_name: z.ZodString;
|
|
265
357
|
avatar_url: z.ZodString;
|
|
266
358
|
time: z.ZodNumber;
|
|
267
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
359
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
268
360
|
type: z.ZodLiteral<"text">;
|
|
269
361
|
data: z.ZodObject<{
|
|
270
362
|
text: z.ZodString;
|
|
@@ -273,6 +365,7 @@ declare const IncomingForwardedMessage: z.ZodObject<{
|
|
|
273
365
|
type: z.ZodLiteral<"mention">;
|
|
274
366
|
data: z.ZodObject<{
|
|
275
367
|
user_id: z.ZodNumber;
|
|
368
|
+
name: z.ZodString;
|
|
276
369
|
}, z.core.$strip>;
|
|
277
370
|
}, z.core.$strip>, z.ZodObject<{
|
|
278
371
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -287,6 +380,96 @@ declare const IncomingForwardedMessage: z.ZodObject<{
|
|
|
287
380
|
type: z.ZodLiteral<"reply">;
|
|
288
381
|
data: z.ZodObject<{
|
|
289
382
|
message_seq: z.ZodNumber;
|
|
383
|
+
sender_id: z.ZodNumber;
|
|
384
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
385
|
+
time: z.ZodNumber;
|
|
386
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
387
|
+
type: z.ZodLiteral<"text">;
|
|
388
|
+
data: z.ZodObject<{
|
|
389
|
+
text: z.ZodString;
|
|
390
|
+
}, z.core.$strip>;
|
|
391
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
392
|
+
type: z.ZodLiteral<"mention">;
|
|
393
|
+
data: z.ZodObject<{
|
|
394
|
+
user_id: z.ZodNumber;
|
|
395
|
+
name: z.ZodString;
|
|
396
|
+
}, z.core.$strip>;
|
|
397
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
398
|
+
type: z.ZodLiteral<"mention_all">;
|
|
399
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
400
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
401
|
+
type: z.ZodLiteral<"face">;
|
|
402
|
+
data: z.ZodObject<{
|
|
403
|
+
face_id: z.ZodString;
|
|
404
|
+
is_large: z.ZodBoolean;
|
|
405
|
+
}, z.core.$strip>;
|
|
406
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
407
|
+
type: z.ZodLiteral<"image">;
|
|
408
|
+
data: z.ZodObject<{
|
|
409
|
+
resource_id: z.ZodString;
|
|
410
|
+
temp_url: z.ZodString;
|
|
411
|
+
width: z.ZodNumber;
|
|
412
|
+
height: z.ZodNumber;
|
|
413
|
+
summary: z.ZodString;
|
|
414
|
+
sub_type: z.ZodEnum<{
|
|
415
|
+
normal: "normal";
|
|
416
|
+
sticker: "sticker";
|
|
417
|
+
}>;
|
|
418
|
+
}, z.core.$strip>;
|
|
419
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
420
|
+
type: z.ZodLiteral<"record">;
|
|
421
|
+
data: z.ZodObject<{
|
|
422
|
+
resource_id: z.ZodString;
|
|
423
|
+
temp_url: z.ZodString;
|
|
424
|
+
duration: z.ZodNumber;
|
|
425
|
+
}, z.core.$strip>;
|
|
426
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
427
|
+
type: z.ZodLiteral<"video">;
|
|
428
|
+
data: z.ZodObject<{
|
|
429
|
+
resource_id: z.ZodString;
|
|
430
|
+
temp_url: z.ZodString;
|
|
431
|
+
width: z.ZodNumber;
|
|
432
|
+
height: z.ZodNumber;
|
|
433
|
+
duration: z.ZodNumber;
|
|
434
|
+
}, z.core.$strip>;
|
|
435
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
436
|
+
type: z.ZodLiteral<"file">;
|
|
437
|
+
data: z.ZodObject<{
|
|
438
|
+
file_id: z.ZodString;
|
|
439
|
+
file_name: z.ZodString;
|
|
440
|
+
file_size: z.ZodNumber;
|
|
441
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
442
|
+
}, z.core.$strip>;
|
|
443
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
444
|
+
type: z.ZodLiteral<"forward">;
|
|
445
|
+
data: z.ZodObject<{
|
|
446
|
+
forward_id: z.ZodString;
|
|
447
|
+
title: z.ZodString;
|
|
448
|
+
preview: z.ZodArray<z.ZodString>;
|
|
449
|
+
summary: z.ZodString;
|
|
450
|
+
}, z.core.$strip>;
|
|
451
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
452
|
+
type: z.ZodLiteral<"market_face">;
|
|
453
|
+
data: z.ZodObject<{
|
|
454
|
+
emoji_package_id: z.ZodNumber;
|
|
455
|
+
emoji_id: z.ZodString;
|
|
456
|
+
key: z.ZodString;
|
|
457
|
+
summary: z.ZodString;
|
|
458
|
+
url: z.ZodString;
|
|
459
|
+
}, z.core.$strip>;
|
|
460
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
461
|
+
type: z.ZodLiteral<"light_app">;
|
|
462
|
+
data: z.ZodObject<{
|
|
463
|
+
app_name: z.ZodString;
|
|
464
|
+
json_payload: z.ZodString;
|
|
465
|
+
}, z.core.$strip>;
|
|
466
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
467
|
+
type: z.ZodLiteral<"xml">;
|
|
468
|
+
data: z.ZodObject<{
|
|
469
|
+
service_id: z.ZodNumber;
|
|
470
|
+
xml_payload: z.ZodString;
|
|
471
|
+
}, z.core.$strip>;
|
|
472
|
+
}, z.core.$strip>], "type">>>>;
|
|
290
473
|
}, z.core.$strip>;
|
|
291
474
|
}, z.core.$strip>, z.ZodObject<{
|
|
292
475
|
type: z.ZodLiteral<"image">;
|
|
@@ -354,7 +537,7 @@ declare const IncomingForwardedMessage: z.ZodObject<{
|
|
|
354
537
|
service_id: z.ZodNumber;
|
|
355
538
|
xml_payload: z.ZodString;
|
|
356
539
|
}, z.core.$strip>;
|
|
357
|
-
}, z.core.$strip>], "type"
|
|
540
|
+
}, z.core.$strip>], "type">>>>;
|
|
358
541
|
}, z.core.$strip>;
|
|
359
542
|
declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
360
543
|
type: z.ZodLiteral<"text">;
|
|
@@ -452,8 +635,22 @@ declare const OutgoingSegment: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
452
635
|
uri: z.ZodString;
|
|
453
636
|
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
454
637
|
}, z.core.$strip>;
|
|
455
|
-
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip
|
|
638
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
639
|
+
type: z.ZodLiteral<"light_app">;
|
|
640
|
+
data: z.ZodObject<{
|
|
641
|
+
json_payload: z.ZodString;
|
|
642
|
+
}, z.core.$strip>;
|
|
643
|
+
}, z.core.$strip>], "type">>>;
|
|
456
644
|
}, z.core.$strip>>>;
|
|
645
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
646
|
+
preview: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
647
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
648
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
649
|
+
}, z.core.$strip>;
|
|
650
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
651
|
+
type: z.ZodLiteral<"light_app">;
|
|
652
|
+
data: z.ZodObject<{
|
|
653
|
+
json_payload: z.ZodString;
|
|
457
654
|
}, z.core.$strip>;
|
|
458
655
|
}, z.core.$strip>], "type">;
|
|
459
656
|
declare const OutgoingForwardedMessage: z.ZodObject<{
|
|
@@ -508,6 +705,15 @@ declare const OutgoingForwardedMessage: z.ZodObject<{
|
|
|
508
705
|
type: z.ZodLiteral<"forward">;
|
|
509
706
|
data: z.ZodObject<{
|
|
510
707
|
messages: z.ZodArray<z.ZodLazy<z.ZodObject< /*elided*/any, z.core.$strip>>>;
|
|
708
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
709
|
+
preview: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
710
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
711
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
712
|
+
}, z.core.$strip>;
|
|
713
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
714
|
+
type: z.ZodLiteral<"light_app">;
|
|
715
|
+
data: z.ZodObject<{
|
|
716
|
+
json_payload: z.ZodString;
|
|
511
717
|
}, z.core.$strip>;
|
|
512
718
|
}, z.core.$strip>], "type">>>;
|
|
513
719
|
}, z.core.$strip>;
|
|
@@ -517,7 +723,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
517
723
|
message_seq: z.ZodNumber;
|
|
518
724
|
sender_id: z.ZodNumber;
|
|
519
725
|
time: z.ZodNumber;
|
|
520
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
726
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
521
727
|
type: z.ZodLiteral<"text">;
|
|
522
728
|
data: z.ZodObject<{
|
|
523
729
|
text: z.ZodString;
|
|
@@ -526,6 +732,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
526
732
|
type: z.ZodLiteral<"mention">;
|
|
527
733
|
data: z.ZodObject<{
|
|
528
734
|
user_id: z.ZodNumber;
|
|
735
|
+
name: z.ZodString;
|
|
529
736
|
}, z.core.$strip>;
|
|
530
737
|
}, z.core.$strip>, z.ZodObject<{
|
|
531
738
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -540,6 +747,96 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
540
747
|
type: z.ZodLiteral<"reply">;
|
|
541
748
|
data: z.ZodObject<{
|
|
542
749
|
message_seq: z.ZodNumber;
|
|
750
|
+
sender_id: z.ZodNumber;
|
|
751
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
752
|
+
time: z.ZodNumber;
|
|
753
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
754
|
+
type: z.ZodLiteral<"text">;
|
|
755
|
+
data: z.ZodObject<{
|
|
756
|
+
text: z.ZodString;
|
|
757
|
+
}, z.core.$strip>;
|
|
758
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
759
|
+
type: z.ZodLiteral<"mention">;
|
|
760
|
+
data: z.ZodObject<{
|
|
761
|
+
user_id: z.ZodNumber;
|
|
762
|
+
name: z.ZodString;
|
|
763
|
+
}, z.core.$strip>;
|
|
764
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
765
|
+
type: z.ZodLiteral<"mention_all">;
|
|
766
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
767
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
768
|
+
type: z.ZodLiteral<"face">;
|
|
769
|
+
data: z.ZodObject<{
|
|
770
|
+
face_id: z.ZodString;
|
|
771
|
+
is_large: z.ZodBoolean;
|
|
772
|
+
}, z.core.$strip>;
|
|
773
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
774
|
+
type: z.ZodLiteral<"image">;
|
|
775
|
+
data: z.ZodObject<{
|
|
776
|
+
resource_id: z.ZodString;
|
|
777
|
+
temp_url: z.ZodString;
|
|
778
|
+
width: z.ZodNumber;
|
|
779
|
+
height: z.ZodNumber;
|
|
780
|
+
summary: z.ZodString;
|
|
781
|
+
sub_type: z.ZodEnum<{
|
|
782
|
+
normal: "normal";
|
|
783
|
+
sticker: "sticker";
|
|
784
|
+
}>;
|
|
785
|
+
}, z.core.$strip>;
|
|
786
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
787
|
+
type: z.ZodLiteral<"record">;
|
|
788
|
+
data: z.ZodObject<{
|
|
789
|
+
resource_id: z.ZodString;
|
|
790
|
+
temp_url: z.ZodString;
|
|
791
|
+
duration: z.ZodNumber;
|
|
792
|
+
}, z.core.$strip>;
|
|
793
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
794
|
+
type: z.ZodLiteral<"video">;
|
|
795
|
+
data: z.ZodObject<{
|
|
796
|
+
resource_id: z.ZodString;
|
|
797
|
+
temp_url: z.ZodString;
|
|
798
|
+
width: z.ZodNumber;
|
|
799
|
+
height: z.ZodNumber;
|
|
800
|
+
duration: z.ZodNumber;
|
|
801
|
+
}, z.core.$strip>;
|
|
802
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
803
|
+
type: z.ZodLiteral<"file">;
|
|
804
|
+
data: z.ZodObject<{
|
|
805
|
+
file_id: z.ZodString;
|
|
806
|
+
file_name: z.ZodString;
|
|
807
|
+
file_size: z.ZodNumber;
|
|
808
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
809
|
+
}, z.core.$strip>;
|
|
810
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
811
|
+
type: z.ZodLiteral<"forward">;
|
|
812
|
+
data: z.ZodObject<{
|
|
813
|
+
forward_id: z.ZodString;
|
|
814
|
+
title: z.ZodString;
|
|
815
|
+
preview: z.ZodArray<z.ZodString>;
|
|
816
|
+
summary: z.ZodString;
|
|
817
|
+
}, z.core.$strip>;
|
|
818
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
819
|
+
type: z.ZodLiteral<"market_face">;
|
|
820
|
+
data: z.ZodObject<{
|
|
821
|
+
emoji_package_id: z.ZodNumber;
|
|
822
|
+
emoji_id: z.ZodString;
|
|
823
|
+
key: z.ZodString;
|
|
824
|
+
summary: z.ZodString;
|
|
825
|
+
url: z.ZodString;
|
|
826
|
+
}, z.core.$strip>;
|
|
827
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
828
|
+
type: z.ZodLiteral<"light_app">;
|
|
829
|
+
data: z.ZodObject<{
|
|
830
|
+
app_name: z.ZodString;
|
|
831
|
+
json_payload: z.ZodString;
|
|
832
|
+
}, z.core.$strip>;
|
|
833
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
834
|
+
type: z.ZodLiteral<"xml">;
|
|
835
|
+
data: z.ZodObject<{
|
|
836
|
+
service_id: z.ZodNumber;
|
|
837
|
+
xml_payload: z.ZodString;
|
|
838
|
+
}, z.core.$strip>;
|
|
839
|
+
}, z.core.$strip>], "type">>>>;
|
|
543
840
|
}, z.core.$strip>;
|
|
544
841
|
}, z.core.$strip>, z.ZodObject<{
|
|
545
842
|
type: z.ZodLiteral<"image">;
|
|
@@ -607,14 +904,14 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
607
904
|
service_id: z.ZodNumber;
|
|
608
905
|
xml_payload: z.ZodString;
|
|
609
906
|
}, z.core.$strip>;
|
|
610
|
-
}, z.core.$strip>], "type"
|
|
907
|
+
}, z.core.$strip>], "type">>>>;
|
|
611
908
|
friend: z.ZodLazy<z.ZodObject<{
|
|
612
909
|
user_id: z.ZodNumber;
|
|
613
910
|
nickname: z.ZodString;
|
|
614
911
|
sex: z.ZodEnum<{
|
|
912
|
+
unknown: "unknown";
|
|
615
913
|
male: "male";
|
|
616
914
|
female: "female";
|
|
617
|
-
unknown: "unknown";
|
|
618
915
|
}>;
|
|
619
916
|
qid: z.ZodString;
|
|
620
917
|
remark: z.ZodString;
|
|
@@ -629,7 +926,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
629
926
|
message_seq: z.ZodNumber;
|
|
630
927
|
sender_id: z.ZodNumber;
|
|
631
928
|
time: z.ZodNumber;
|
|
632
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
929
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
633
930
|
type: z.ZodLiteral<"text">;
|
|
634
931
|
data: z.ZodObject<{
|
|
635
932
|
text: z.ZodString;
|
|
@@ -638,6 +935,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
638
935
|
type: z.ZodLiteral<"mention">;
|
|
639
936
|
data: z.ZodObject<{
|
|
640
937
|
user_id: z.ZodNumber;
|
|
938
|
+
name: z.ZodString;
|
|
641
939
|
}, z.core.$strip>;
|
|
642
940
|
}, z.core.$strip>, z.ZodObject<{
|
|
643
941
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -652,6 +950,96 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
652
950
|
type: z.ZodLiteral<"reply">;
|
|
653
951
|
data: z.ZodObject<{
|
|
654
952
|
message_seq: z.ZodNumber;
|
|
953
|
+
sender_id: z.ZodNumber;
|
|
954
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
955
|
+
time: z.ZodNumber;
|
|
956
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
957
|
+
type: z.ZodLiteral<"text">;
|
|
958
|
+
data: z.ZodObject<{
|
|
959
|
+
text: z.ZodString;
|
|
960
|
+
}, z.core.$strip>;
|
|
961
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
962
|
+
type: z.ZodLiteral<"mention">;
|
|
963
|
+
data: z.ZodObject<{
|
|
964
|
+
user_id: z.ZodNumber;
|
|
965
|
+
name: z.ZodString;
|
|
966
|
+
}, z.core.$strip>;
|
|
967
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
968
|
+
type: z.ZodLiteral<"mention_all">;
|
|
969
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
970
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
971
|
+
type: z.ZodLiteral<"face">;
|
|
972
|
+
data: z.ZodObject<{
|
|
973
|
+
face_id: z.ZodString;
|
|
974
|
+
is_large: z.ZodBoolean;
|
|
975
|
+
}, z.core.$strip>;
|
|
976
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
977
|
+
type: z.ZodLiteral<"image">;
|
|
978
|
+
data: z.ZodObject<{
|
|
979
|
+
resource_id: z.ZodString;
|
|
980
|
+
temp_url: z.ZodString;
|
|
981
|
+
width: z.ZodNumber;
|
|
982
|
+
height: z.ZodNumber;
|
|
983
|
+
summary: z.ZodString;
|
|
984
|
+
sub_type: z.ZodEnum<{
|
|
985
|
+
normal: "normal";
|
|
986
|
+
sticker: "sticker";
|
|
987
|
+
}>;
|
|
988
|
+
}, z.core.$strip>;
|
|
989
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
990
|
+
type: z.ZodLiteral<"record">;
|
|
991
|
+
data: z.ZodObject<{
|
|
992
|
+
resource_id: z.ZodString;
|
|
993
|
+
temp_url: z.ZodString;
|
|
994
|
+
duration: z.ZodNumber;
|
|
995
|
+
}, z.core.$strip>;
|
|
996
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
997
|
+
type: z.ZodLiteral<"video">;
|
|
998
|
+
data: z.ZodObject<{
|
|
999
|
+
resource_id: z.ZodString;
|
|
1000
|
+
temp_url: z.ZodString;
|
|
1001
|
+
width: z.ZodNumber;
|
|
1002
|
+
height: z.ZodNumber;
|
|
1003
|
+
duration: z.ZodNumber;
|
|
1004
|
+
}, z.core.$strip>;
|
|
1005
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1006
|
+
type: z.ZodLiteral<"file">;
|
|
1007
|
+
data: z.ZodObject<{
|
|
1008
|
+
file_id: z.ZodString;
|
|
1009
|
+
file_name: z.ZodString;
|
|
1010
|
+
file_size: z.ZodNumber;
|
|
1011
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1012
|
+
}, z.core.$strip>;
|
|
1013
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1014
|
+
type: z.ZodLiteral<"forward">;
|
|
1015
|
+
data: z.ZodObject<{
|
|
1016
|
+
forward_id: z.ZodString;
|
|
1017
|
+
title: z.ZodString;
|
|
1018
|
+
preview: z.ZodArray<z.ZodString>;
|
|
1019
|
+
summary: z.ZodString;
|
|
1020
|
+
}, z.core.$strip>;
|
|
1021
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1022
|
+
type: z.ZodLiteral<"market_face">;
|
|
1023
|
+
data: z.ZodObject<{
|
|
1024
|
+
emoji_package_id: z.ZodNumber;
|
|
1025
|
+
emoji_id: z.ZodString;
|
|
1026
|
+
key: z.ZodString;
|
|
1027
|
+
summary: z.ZodString;
|
|
1028
|
+
url: z.ZodString;
|
|
1029
|
+
}, z.core.$strip>;
|
|
1030
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1031
|
+
type: z.ZodLiteral<"light_app">;
|
|
1032
|
+
data: z.ZodObject<{
|
|
1033
|
+
app_name: z.ZodString;
|
|
1034
|
+
json_payload: z.ZodString;
|
|
1035
|
+
}, z.core.$strip>;
|
|
1036
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1037
|
+
type: z.ZodLiteral<"xml">;
|
|
1038
|
+
data: z.ZodObject<{
|
|
1039
|
+
service_id: z.ZodNumber;
|
|
1040
|
+
xml_payload: z.ZodString;
|
|
1041
|
+
}, z.core.$strip>;
|
|
1042
|
+
}, z.core.$strip>], "type">>>>;
|
|
655
1043
|
}, z.core.$strip>;
|
|
656
1044
|
}, z.core.$strip>, z.ZodObject<{
|
|
657
1045
|
type: z.ZodLiteral<"image">;
|
|
@@ -719,7 +1107,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
719
1107
|
service_id: z.ZodNumber;
|
|
720
1108
|
xml_payload: z.ZodString;
|
|
721
1109
|
}, z.core.$strip>;
|
|
722
|
-
}, z.core.$strip>], "type"
|
|
1110
|
+
}, z.core.$strip>], "type">>>>;
|
|
723
1111
|
group: z.ZodLazy<z.ZodObject<{
|
|
724
1112
|
group_id: z.ZodNumber;
|
|
725
1113
|
group_name: z.ZodString;
|
|
@@ -730,9 +1118,9 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
730
1118
|
user_id: z.ZodNumber;
|
|
731
1119
|
nickname: z.ZodString;
|
|
732
1120
|
sex: z.ZodEnum<{
|
|
1121
|
+
unknown: "unknown";
|
|
733
1122
|
male: "male";
|
|
734
1123
|
female: "female";
|
|
735
|
-
unknown: "unknown";
|
|
736
1124
|
}>;
|
|
737
1125
|
group_id: z.ZodNumber;
|
|
738
1126
|
card: z.ZodString;
|
|
@@ -753,7 +1141,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
753
1141
|
message_seq: z.ZodNumber;
|
|
754
1142
|
sender_id: z.ZodNumber;
|
|
755
1143
|
time: z.ZodNumber;
|
|
756
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1144
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
757
1145
|
type: z.ZodLiteral<"text">;
|
|
758
1146
|
data: z.ZodObject<{
|
|
759
1147
|
text: z.ZodString;
|
|
@@ -762,6 +1150,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
762
1150
|
type: z.ZodLiteral<"mention">;
|
|
763
1151
|
data: z.ZodObject<{
|
|
764
1152
|
user_id: z.ZodNumber;
|
|
1153
|
+
name: z.ZodString;
|
|
765
1154
|
}, z.core.$strip>;
|
|
766
1155
|
}, z.core.$strip>, z.ZodObject<{
|
|
767
1156
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -776,6 +1165,96 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
776
1165
|
type: z.ZodLiteral<"reply">;
|
|
777
1166
|
data: z.ZodObject<{
|
|
778
1167
|
message_seq: z.ZodNumber;
|
|
1168
|
+
sender_id: z.ZodNumber;
|
|
1169
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1170
|
+
time: z.ZodNumber;
|
|
1171
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1172
|
+
type: z.ZodLiteral<"text">;
|
|
1173
|
+
data: z.ZodObject<{
|
|
1174
|
+
text: z.ZodString;
|
|
1175
|
+
}, z.core.$strip>;
|
|
1176
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1177
|
+
type: z.ZodLiteral<"mention">;
|
|
1178
|
+
data: z.ZodObject<{
|
|
1179
|
+
user_id: z.ZodNumber;
|
|
1180
|
+
name: z.ZodString;
|
|
1181
|
+
}, z.core.$strip>;
|
|
1182
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1183
|
+
type: z.ZodLiteral<"mention_all">;
|
|
1184
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
1185
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1186
|
+
type: z.ZodLiteral<"face">;
|
|
1187
|
+
data: z.ZodObject<{
|
|
1188
|
+
face_id: z.ZodString;
|
|
1189
|
+
is_large: z.ZodBoolean;
|
|
1190
|
+
}, z.core.$strip>;
|
|
1191
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
1192
|
+
type: z.ZodLiteral<"image">;
|
|
1193
|
+
data: z.ZodObject<{
|
|
1194
|
+
resource_id: z.ZodString;
|
|
1195
|
+
temp_url: z.ZodString;
|
|
1196
|
+
width: z.ZodNumber;
|
|
1197
|
+
height: z.ZodNumber;
|
|
1198
|
+
summary: z.ZodString;
|
|
1199
|
+
sub_type: z.ZodEnum<{
|
|
1200
|
+
normal: "normal";
|
|
1201
|
+
sticker: "sticker";
|
|
1202
|
+
}>;
|
|
1203
|
+
}, z.core.$strip>;
|
|
1204
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1205
|
+
type: z.ZodLiteral<"record">;
|
|
1206
|
+
data: z.ZodObject<{
|
|
1207
|
+
resource_id: z.ZodString;
|
|
1208
|
+
temp_url: z.ZodString;
|
|
1209
|
+
duration: z.ZodNumber;
|
|
1210
|
+
}, z.core.$strip>;
|
|
1211
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1212
|
+
type: z.ZodLiteral<"video">;
|
|
1213
|
+
data: z.ZodObject<{
|
|
1214
|
+
resource_id: z.ZodString;
|
|
1215
|
+
temp_url: z.ZodString;
|
|
1216
|
+
width: z.ZodNumber;
|
|
1217
|
+
height: z.ZodNumber;
|
|
1218
|
+
duration: z.ZodNumber;
|
|
1219
|
+
}, z.core.$strip>;
|
|
1220
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1221
|
+
type: z.ZodLiteral<"file">;
|
|
1222
|
+
data: z.ZodObject<{
|
|
1223
|
+
file_id: z.ZodString;
|
|
1224
|
+
file_name: z.ZodString;
|
|
1225
|
+
file_size: z.ZodNumber;
|
|
1226
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1227
|
+
}, z.core.$strip>;
|
|
1228
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1229
|
+
type: z.ZodLiteral<"forward">;
|
|
1230
|
+
data: z.ZodObject<{
|
|
1231
|
+
forward_id: z.ZodString;
|
|
1232
|
+
title: z.ZodString;
|
|
1233
|
+
preview: z.ZodArray<z.ZodString>;
|
|
1234
|
+
summary: z.ZodString;
|
|
1235
|
+
}, z.core.$strip>;
|
|
1236
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1237
|
+
type: z.ZodLiteral<"market_face">;
|
|
1238
|
+
data: z.ZodObject<{
|
|
1239
|
+
emoji_package_id: z.ZodNumber;
|
|
1240
|
+
emoji_id: z.ZodString;
|
|
1241
|
+
key: z.ZodString;
|
|
1242
|
+
summary: z.ZodString;
|
|
1243
|
+
url: z.ZodString;
|
|
1244
|
+
}, z.core.$strip>;
|
|
1245
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1246
|
+
type: z.ZodLiteral<"light_app">;
|
|
1247
|
+
data: z.ZodObject<{
|
|
1248
|
+
app_name: z.ZodString;
|
|
1249
|
+
json_payload: z.ZodString;
|
|
1250
|
+
}, z.core.$strip>;
|
|
1251
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1252
|
+
type: z.ZodLiteral<"xml">;
|
|
1253
|
+
data: z.ZodObject<{
|
|
1254
|
+
service_id: z.ZodNumber;
|
|
1255
|
+
xml_payload: z.ZodString;
|
|
1256
|
+
}, z.core.$strip>;
|
|
1257
|
+
}, z.core.$strip>], "type">>>>;
|
|
779
1258
|
}, z.core.$strip>;
|
|
780
1259
|
}, z.core.$strip>, z.ZodObject<{
|
|
781
1260
|
type: z.ZodLiteral<"image">;
|
|
@@ -843,7 +1322,7 @@ declare const IncomingMessage: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
843
1322
|
service_id: z.ZodNumber;
|
|
844
1323
|
xml_payload: z.ZodString;
|
|
845
1324
|
}, z.core.$strip>;
|
|
846
|
-
}, z.core.$strip>], "type"
|
|
1325
|
+
}, z.core.$strip>], "type">>>>;
|
|
847
1326
|
group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
848
1327
|
group_id: z.ZodNumber;
|
|
849
1328
|
group_name: z.ZodString;
|
|
@@ -860,7 +1339,7 @@ declare const GroupEssenceMessage: z.ZodObject<{
|
|
|
860
1339
|
operator_id: z.ZodNumber;
|
|
861
1340
|
operator_name: z.ZodString;
|
|
862
1341
|
operation_time: z.ZodNumber;
|
|
863
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1342
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
864
1343
|
type: z.ZodLiteral<"text">;
|
|
865
1344
|
data: z.ZodObject<{
|
|
866
1345
|
text: z.ZodString;
|
|
@@ -869,6 +1348,7 @@ declare const GroupEssenceMessage: z.ZodObject<{
|
|
|
869
1348
|
type: z.ZodLiteral<"mention">;
|
|
870
1349
|
data: z.ZodObject<{
|
|
871
1350
|
user_id: z.ZodNumber;
|
|
1351
|
+
name: z.ZodString;
|
|
872
1352
|
}, z.core.$strip>;
|
|
873
1353
|
}, z.core.$strip>, z.ZodObject<{
|
|
874
1354
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -883,6 +1363,96 @@ declare const GroupEssenceMessage: z.ZodObject<{
|
|
|
883
1363
|
type: z.ZodLiteral<"reply">;
|
|
884
1364
|
data: z.ZodObject<{
|
|
885
1365
|
message_seq: z.ZodNumber;
|
|
1366
|
+
sender_id: z.ZodNumber;
|
|
1367
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1368
|
+
time: z.ZodNumber;
|
|
1369
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1370
|
+
type: z.ZodLiteral<"text">;
|
|
1371
|
+
data: z.ZodObject<{
|
|
1372
|
+
text: z.ZodString;
|
|
1373
|
+
}, z.core.$strip>;
|
|
1374
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1375
|
+
type: z.ZodLiteral<"mention">;
|
|
1376
|
+
data: z.ZodObject<{
|
|
1377
|
+
user_id: z.ZodNumber;
|
|
1378
|
+
name: z.ZodString;
|
|
1379
|
+
}, z.core.$strip>;
|
|
1380
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1381
|
+
type: z.ZodLiteral<"mention_all">;
|
|
1382
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
1383
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1384
|
+
type: z.ZodLiteral<"face">;
|
|
1385
|
+
data: z.ZodObject<{
|
|
1386
|
+
face_id: z.ZodString;
|
|
1387
|
+
is_large: z.ZodBoolean;
|
|
1388
|
+
}, z.core.$strip>;
|
|
1389
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
1390
|
+
type: z.ZodLiteral<"image">;
|
|
1391
|
+
data: z.ZodObject<{
|
|
1392
|
+
resource_id: z.ZodString;
|
|
1393
|
+
temp_url: z.ZodString;
|
|
1394
|
+
width: z.ZodNumber;
|
|
1395
|
+
height: z.ZodNumber;
|
|
1396
|
+
summary: z.ZodString;
|
|
1397
|
+
sub_type: z.ZodEnum<{
|
|
1398
|
+
normal: "normal";
|
|
1399
|
+
sticker: "sticker";
|
|
1400
|
+
}>;
|
|
1401
|
+
}, z.core.$strip>;
|
|
1402
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1403
|
+
type: z.ZodLiteral<"record">;
|
|
1404
|
+
data: z.ZodObject<{
|
|
1405
|
+
resource_id: z.ZodString;
|
|
1406
|
+
temp_url: z.ZodString;
|
|
1407
|
+
duration: z.ZodNumber;
|
|
1408
|
+
}, z.core.$strip>;
|
|
1409
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1410
|
+
type: z.ZodLiteral<"video">;
|
|
1411
|
+
data: z.ZodObject<{
|
|
1412
|
+
resource_id: z.ZodString;
|
|
1413
|
+
temp_url: z.ZodString;
|
|
1414
|
+
width: z.ZodNumber;
|
|
1415
|
+
height: z.ZodNumber;
|
|
1416
|
+
duration: z.ZodNumber;
|
|
1417
|
+
}, z.core.$strip>;
|
|
1418
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1419
|
+
type: z.ZodLiteral<"file">;
|
|
1420
|
+
data: z.ZodObject<{
|
|
1421
|
+
file_id: z.ZodString;
|
|
1422
|
+
file_name: z.ZodString;
|
|
1423
|
+
file_size: z.ZodNumber;
|
|
1424
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1425
|
+
}, z.core.$strip>;
|
|
1426
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1427
|
+
type: z.ZodLiteral<"forward">;
|
|
1428
|
+
data: z.ZodObject<{
|
|
1429
|
+
forward_id: z.ZodString;
|
|
1430
|
+
title: z.ZodString;
|
|
1431
|
+
preview: z.ZodArray<z.ZodString>;
|
|
1432
|
+
summary: z.ZodString;
|
|
1433
|
+
}, z.core.$strip>;
|
|
1434
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1435
|
+
type: z.ZodLiteral<"market_face">;
|
|
1436
|
+
data: z.ZodObject<{
|
|
1437
|
+
emoji_package_id: z.ZodNumber;
|
|
1438
|
+
emoji_id: z.ZodString;
|
|
1439
|
+
key: z.ZodString;
|
|
1440
|
+
summary: z.ZodString;
|
|
1441
|
+
url: z.ZodString;
|
|
1442
|
+
}, z.core.$strip>;
|
|
1443
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1444
|
+
type: z.ZodLiteral<"light_app">;
|
|
1445
|
+
data: z.ZodObject<{
|
|
1446
|
+
app_name: z.ZodString;
|
|
1447
|
+
json_payload: z.ZodString;
|
|
1448
|
+
}, z.core.$strip>;
|
|
1449
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1450
|
+
type: z.ZodLiteral<"xml">;
|
|
1451
|
+
data: z.ZodObject<{
|
|
1452
|
+
service_id: z.ZodNumber;
|
|
1453
|
+
xml_payload: z.ZodString;
|
|
1454
|
+
}, z.core.$strip>;
|
|
1455
|
+
}, z.core.$strip>], "type">>>>;
|
|
886
1456
|
}, z.core.$strip>;
|
|
887
1457
|
}, z.core.$strip>, z.ZodObject<{
|
|
888
1458
|
type: z.ZodLiteral<"image">;
|
|
@@ -950,7 +1520,7 @@ declare const GroupEssenceMessage: z.ZodObject<{
|
|
|
950
1520
|
service_id: z.ZodNumber;
|
|
951
1521
|
xml_payload: z.ZodString;
|
|
952
1522
|
}, z.core.$strip>;
|
|
953
|
-
}, z.core.$strip>], "type"
|
|
1523
|
+
}, z.core.$strip>], "type">>>>;
|
|
954
1524
|
}, z.core.$strip>;
|
|
955
1525
|
type IncomingSegment = z.infer<typeof IncomingSegment>;
|
|
956
1526
|
type OutgoingSegment = z.infer<typeof OutgoingSegment>;
|
|
@@ -975,6 +1545,15 @@ declare const MessageRecallEvent: z.ZodObject<{
|
|
|
975
1545
|
operator_id: z.ZodNumber;
|
|
976
1546
|
display_suffix: z.ZodString;
|
|
977
1547
|
}, z.core.$strip>;
|
|
1548
|
+
declare const PeerPinChangeEvent: z.ZodObject<{
|
|
1549
|
+
message_scene: z.ZodEnum<{
|
|
1550
|
+
friend: "friend";
|
|
1551
|
+
group: "group";
|
|
1552
|
+
temp: "temp";
|
|
1553
|
+
}>;
|
|
1554
|
+
peer_id: z.ZodNumber;
|
|
1555
|
+
is_pinned: z.ZodBoolean;
|
|
1556
|
+
}, z.core.$strip>;
|
|
978
1557
|
declare const FriendRequestEvent: z.ZodObject<{
|
|
979
1558
|
initiator_id: z.ZodNumber;
|
|
980
1559
|
initiator_uid: z.ZodString;
|
|
@@ -1048,6 +1627,10 @@ declare const GroupMessageReactionEvent: z.ZodObject<{
|
|
|
1048
1627
|
user_id: z.ZodNumber;
|
|
1049
1628
|
message_seq: z.ZodNumber;
|
|
1050
1629
|
face_id: z.ZodString;
|
|
1630
|
+
reaction_type: z.ZodEnum<{
|
|
1631
|
+
face: "face";
|
|
1632
|
+
emoji: "emoji";
|
|
1633
|
+
}>;
|
|
1051
1634
|
is_add: z.ZodBoolean;
|
|
1052
1635
|
}, z.core.$strip>;
|
|
1053
1636
|
declare const GroupMuteEvent: z.ZodObject<{
|
|
@@ -1093,7 +1676,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1093
1676
|
message_seq: z.ZodNumber;
|
|
1094
1677
|
sender_id: z.ZodNumber;
|
|
1095
1678
|
time: z.ZodNumber;
|
|
1096
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1679
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1097
1680
|
type: z.ZodLiteral<"text">;
|
|
1098
1681
|
data: z.ZodObject<{
|
|
1099
1682
|
text: z.ZodString;
|
|
@@ -1102,6 +1685,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1102
1685
|
type: z.ZodLiteral<"mention">;
|
|
1103
1686
|
data: z.ZodObject<{
|
|
1104
1687
|
user_id: z.ZodNumber;
|
|
1688
|
+
name: z.ZodString;
|
|
1105
1689
|
}, z.core.$strip>;
|
|
1106
1690
|
}, z.core.$strip>, z.ZodObject<{
|
|
1107
1691
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -1116,6 +1700,96 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1116
1700
|
type: z.ZodLiteral<"reply">;
|
|
1117
1701
|
data: z.ZodObject<{
|
|
1118
1702
|
message_seq: z.ZodNumber;
|
|
1703
|
+
sender_id: z.ZodNumber;
|
|
1704
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1705
|
+
time: z.ZodNumber;
|
|
1706
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1707
|
+
type: z.ZodLiteral<"text">;
|
|
1708
|
+
data: z.ZodObject<{
|
|
1709
|
+
text: z.ZodString;
|
|
1710
|
+
}, z.core.$strip>;
|
|
1711
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1712
|
+
type: z.ZodLiteral<"mention">;
|
|
1713
|
+
data: z.ZodObject<{
|
|
1714
|
+
user_id: z.ZodNumber;
|
|
1715
|
+
name: z.ZodString;
|
|
1716
|
+
}, z.core.$strip>;
|
|
1717
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1718
|
+
type: z.ZodLiteral<"mention_all">;
|
|
1719
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
1720
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1721
|
+
type: z.ZodLiteral<"face">;
|
|
1722
|
+
data: z.ZodObject<{
|
|
1723
|
+
face_id: z.ZodString;
|
|
1724
|
+
is_large: z.ZodBoolean;
|
|
1725
|
+
}, z.core.$strip>;
|
|
1726
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
1727
|
+
type: z.ZodLiteral<"image">;
|
|
1728
|
+
data: z.ZodObject<{
|
|
1729
|
+
resource_id: z.ZodString;
|
|
1730
|
+
temp_url: z.ZodString;
|
|
1731
|
+
width: z.ZodNumber;
|
|
1732
|
+
height: z.ZodNumber;
|
|
1733
|
+
summary: z.ZodString;
|
|
1734
|
+
sub_type: z.ZodEnum<{
|
|
1735
|
+
normal: "normal";
|
|
1736
|
+
sticker: "sticker";
|
|
1737
|
+
}>;
|
|
1738
|
+
}, z.core.$strip>;
|
|
1739
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1740
|
+
type: z.ZodLiteral<"record">;
|
|
1741
|
+
data: z.ZodObject<{
|
|
1742
|
+
resource_id: z.ZodString;
|
|
1743
|
+
temp_url: z.ZodString;
|
|
1744
|
+
duration: z.ZodNumber;
|
|
1745
|
+
}, z.core.$strip>;
|
|
1746
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1747
|
+
type: z.ZodLiteral<"video">;
|
|
1748
|
+
data: z.ZodObject<{
|
|
1749
|
+
resource_id: z.ZodString;
|
|
1750
|
+
temp_url: z.ZodString;
|
|
1751
|
+
width: z.ZodNumber;
|
|
1752
|
+
height: z.ZodNumber;
|
|
1753
|
+
duration: z.ZodNumber;
|
|
1754
|
+
}, z.core.$strip>;
|
|
1755
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1756
|
+
type: z.ZodLiteral<"file">;
|
|
1757
|
+
data: z.ZodObject<{
|
|
1758
|
+
file_id: z.ZodString;
|
|
1759
|
+
file_name: z.ZodString;
|
|
1760
|
+
file_size: z.ZodNumber;
|
|
1761
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1762
|
+
}, z.core.$strip>;
|
|
1763
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1764
|
+
type: z.ZodLiteral<"forward">;
|
|
1765
|
+
data: z.ZodObject<{
|
|
1766
|
+
forward_id: z.ZodString;
|
|
1767
|
+
title: z.ZodString;
|
|
1768
|
+
preview: z.ZodArray<z.ZodString>;
|
|
1769
|
+
summary: z.ZodString;
|
|
1770
|
+
}, z.core.$strip>;
|
|
1771
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1772
|
+
type: z.ZodLiteral<"market_face">;
|
|
1773
|
+
data: z.ZodObject<{
|
|
1774
|
+
emoji_package_id: z.ZodNumber;
|
|
1775
|
+
emoji_id: z.ZodString;
|
|
1776
|
+
key: z.ZodString;
|
|
1777
|
+
summary: z.ZodString;
|
|
1778
|
+
url: z.ZodString;
|
|
1779
|
+
}, z.core.$strip>;
|
|
1780
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1781
|
+
type: z.ZodLiteral<"light_app">;
|
|
1782
|
+
data: z.ZodObject<{
|
|
1783
|
+
app_name: z.ZodString;
|
|
1784
|
+
json_payload: z.ZodString;
|
|
1785
|
+
}, z.core.$strip>;
|
|
1786
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1787
|
+
type: z.ZodLiteral<"xml">;
|
|
1788
|
+
data: z.ZodObject<{
|
|
1789
|
+
service_id: z.ZodNumber;
|
|
1790
|
+
xml_payload: z.ZodString;
|
|
1791
|
+
}, z.core.$strip>;
|
|
1792
|
+
}, z.core.$strip>], "type">>>>;
|
|
1119
1793
|
}, z.core.$strip>;
|
|
1120
1794
|
}, z.core.$strip>, z.ZodObject<{
|
|
1121
1795
|
type: z.ZodLiteral<"image">;
|
|
@@ -1183,14 +1857,14 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1183
1857
|
service_id: z.ZodNumber;
|
|
1184
1858
|
xml_payload: z.ZodString;
|
|
1185
1859
|
}, z.core.$strip>;
|
|
1186
|
-
}, z.core.$strip>], "type"
|
|
1860
|
+
}, z.core.$strip>], "type">>>>;
|
|
1187
1861
|
friend: z.ZodLazy<z.ZodObject<{
|
|
1188
1862
|
user_id: z.ZodNumber;
|
|
1189
1863
|
nickname: z.ZodString;
|
|
1190
1864
|
sex: z.ZodEnum<{
|
|
1865
|
+
unknown: "unknown";
|
|
1191
1866
|
male: "male";
|
|
1192
1867
|
female: "female";
|
|
1193
|
-
unknown: "unknown";
|
|
1194
1868
|
}>;
|
|
1195
1869
|
qid: z.ZodString;
|
|
1196
1870
|
remark: z.ZodString;
|
|
@@ -1205,7 +1879,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1205
1879
|
message_seq: z.ZodNumber;
|
|
1206
1880
|
sender_id: z.ZodNumber;
|
|
1207
1881
|
time: z.ZodNumber;
|
|
1208
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1882
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1209
1883
|
type: z.ZodLiteral<"text">;
|
|
1210
1884
|
data: z.ZodObject<{
|
|
1211
1885
|
text: z.ZodString;
|
|
@@ -1214,6 +1888,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1214
1888
|
type: z.ZodLiteral<"mention">;
|
|
1215
1889
|
data: z.ZodObject<{
|
|
1216
1890
|
user_id: z.ZodNumber;
|
|
1891
|
+
name: z.ZodString;
|
|
1217
1892
|
}, z.core.$strip>;
|
|
1218
1893
|
}, z.core.$strip>, z.ZodObject<{
|
|
1219
1894
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -1228,6 +1903,96 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1228
1903
|
type: z.ZodLiteral<"reply">;
|
|
1229
1904
|
data: z.ZodObject<{
|
|
1230
1905
|
message_seq: z.ZodNumber;
|
|
1906
|
+
sender_id: z.ZodNumber;
|
|
1907
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1908
|
+
time: z.ZodNumber;
|
|
1909
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1910
|
+
type: z.ZodLiteral<"text">;
|
|
1911
|
+
data: z.ZodObject<{
|
|
1912
|
+
text: z.ZodString;
|
|
1913
|
+
}, z.core.$strip>;
|
|
1914
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1915
|
+
type: z.ZodLiteral<"mention">;
|
|
1916
|
+
data: z.ZodObject<{
|
|
1917
|
+
user_id: z.ZodNumber;
|
|
1918
|
+
name: z.ZodString;
|
|
1919
|
+
}, z.core.$strip>;
|
|
1920
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1921
|
+
type: z.ZodLiteral<"mention_all">;
|
|
1922
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
1923
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1924
|
+
type: z.ZodLiteral<"face">;
|
|
1925
|
+
data: z.ZodObject<{
|
|
1926
|
+
face_id: z.ZodString;
|
|
1927
|
+
is_large: z.ZodBoolean;
|
|
1928
|
+
}, z.core.$strip>;
|
|
1929
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
1930
|
+
type: z.ZodLiteral<"image">;
|
|
1931
|
+
data: z.ZodObject<{
|
|
1932
|
+
resource_id: z.ZodString;
|
|
1933
|
+
temp_url: z.ZodString;
|
|
1934
|
+
width: z.ZodNumber;
|
|
1935
|
+
height: z.ZodNumber;
|
|
1936
|
+
summary: z.ZodString;
|
|
1937
|
+
sub_type: z.ZodEnum<{
|
|
1938
|
+
normal: "normal";
|
|
1939
|
+
sticker: "sticker";
|
|
1940
|
+
}>;
|
|
1941
|
+
}, z.core.$strip>;
|
|
1942
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1943
|
+
type: z.ZodLiteral<"record">;
|
|
1944
|
+
data: z.ZodObject<{
|
|
1945
|
+
resource_id: z.ZodString;
|
|
1946
|
+
temp_url: z.ZodString;
|
|
1947
|
+
duration: z.ZodNumber;
|
|
1948
|
+
}, z.core.$strip>;
|
|
1949
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1950
|
+
type: z.ZodLiteral<"video">;
|
|
1951
|
+
data: z.ZodObject<{
|
|
1952
|
+
resource_id: z.ZodString;
|
|
1953
|
+
temp_url: z.ZodString;
|
|
1954
|
+
width: z.ZodNumber;
|
|
1955
|
+
height: z.ZodNumber;
|
|
1956
|
+
duration: z.ZodNumber;
|
|
1957
|
+
}, z.core.$strip>;
|
|
1958
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1959
|
+
type: z.ZodLiteral<"file">;
|
|
1960
|
+
data: z.ZodObject<{
|
|
1961
|
+
file_id: z.ZodString;
|
|
1962
|
+
file_name: z.ZodString;
|
|
1963
|
+
file_size: z.ZodNumber;
|
|
1964
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1965
|
+
}, z.core.$strip>;
|
|
1966
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1967
|
+
type: z.ZodLiteral<"forward">;
|
|
1968
|
+
data: z.ZodObject<{
|
|
1969
|
+
forward_id: z.ZodString;
|
|
1970
|
+
title: z.ZodString;
|
|
1971
|
+
preview: z.ZodArray<z.ZodString>;
|
|
1972
|
+
summary: z.ZodString;
|
|
1973
|
+
}, z.core.$strip>;
|
|
1974
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1975
|
+
type: z.ZodLiteral<"market_face">;
|
|
1976
|
+
data: z.ZodObject<{
|
|
1977
|
+
emoji_package_id: z.ZodNumber;
|
|
1978
|
+
emoji_id: z.ZodString;
|
|
1979
|
+
key: z.ZodString;
|
|
1980
|
+
summary: z.ZodString;
|
|
1981
|
+
url: z.ZodString;
|
|
1982
|
+
}, z.core.$strip>;
|
|
1983
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1984
|
+
type: z.ZodLiteral<"light_app">;
|
|
1985
|
+
data: z.ZodObject<{
|
|
1986
|
+
app_name: z.ZodString;
|
|
1987
|
+
json_payload: z.ZodString;
|
|
1988
|
+
}, z.core.$strip>;
|
|
1989
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1990
|
+
type: z.ZodLiteral<"xml">;
|
|
1991
|
+
data: z.ZodObject<{
|
|
1992
|
+
service_id: z.ZodNumber;
|
|
1993
|
+
xml_payload: z.ZodString;
|
|
1994
|
+
}, z.core.$strip>;
|
|
1995
|
+
}, z.core.$strip>], "type">>>>;
|
|
1231
1996
|
}, z.core.$strip>;
|
|
1232
1997
|
}, z.core.$strip>, z.ZodObject<{
|
|
1233
1998
|
type: z.ZodLiteral<"image">;
|
|
@@ -1295,7 +2060,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1295
2060
|
service_id: z.ZodNumber;
|
|
1296
2061
|
xml_payload: z.ZodString;
|
|
1297
2062
|
}, z.core.$strip>;
|
|
1298
|
-
}, z.core.$strip>], "type"
|
|
2063
|
+
}, z.core.$strip>], "type">>>>;
|
|
1299
2064
|
group: z.ZodLazy<z.ZodObject<{
|
|
1300
2065
|
group_id: z.ZodNumber;
|
|
1301
2066
|
group_name: z.ZodString;
|
|
@@ -1306,9 +2071,9 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1306
2071
|
user_id: z.ZodNumber;
|
|
1307
2072
|
nickname: z.ZodString;
|
|
1308
2073
|
sex: z.ZodEnum<{
|
|
2074
|
+
unknown: "unknown";
|
|
1309
2075
|
male: "male";
|
|
1310
2076
|
female: "female";
|
|
1311
|
-
unknown: "unknown";
|
|
1312
2077
|
}>;
|
|
1313
2078
|
group_id: z.ZodNumber;
|
|
1314
2079
|
card: z.ZodString;
|
|
@@ -1329,7 +2094,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1329
2094
|
message_seq: z.ZodNumber;
|
|
1330
2095
|
sender_id: z.ZodNumber;
|
|
1331
2096
|
time: z.ZodNumber;
|
|
1332
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2097
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1333
2098
|
type: z.ZodLiteral<"text">;
|
|
1334
2099
|
data: z.ZodObject<{
|
|
1335
2100
|
text: z.ZodString;
|
|
@@ -1338,6 +2103,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1338
2103
|
type: z.ZodLiteral<"mention">;
|
|
1339
2104
|
data: z.ZodObject<{
|
|
1340
2105
|
user_id: z.ZodNumber;
|
|
2106
|
+
name: z.ZodString;
|
|
1341
2107
|
}, z.core.$strip>;
|
|
1342
2108
|
}, z.core.$strip>, z.ZodObject<{
|
|
1343
2109
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -1352,6 +2118,96 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1352
2118
|
type: z.ZodLiteral<"reply">;
|
|
1353
2119
|
data: z.ZodObject<{
|
|
1354
2120
|
message_seq: z.ZodNumber;
|
|
2121
|
+
sender_id: z.ZodNumber;
|
|
2122
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2123
|
+
time: z.ZodNumber;
|
|
2124
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2125
|
+
type: z.ZodLiteral<"text">;
|
|
2126
|
+
data: z.ZodObject<{
|
|
2127
|
+
text: z.ZodString;
|
|
2128
|
+
}, z.core.$strip>;
|
|
2129
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2130
|
+
type: z.ZodLiteral<"mention">;
|
|
2131
|
+
data: z.ZodObject<{
|
|
2132
|
+
user_id: z.ZodNumber;
|
|
2133
|
+
name: z.ZodString;
|
|
2134
|
+
}, z.core.$strip>;
|
|
2135
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2136
|
+
type: z.ZodLiteral<"mention_all">;
|
|
2137
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
2138
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2139
|
+
type: z.ZodLiteral<"face">;
|
|
2140
|
+
data: z.ZodObject<{
|
|
2141
|
+
face_id: z.ZodString;
|
|
2142
|
+
is_large: z.ZodBoolean;
|
|
2143
|
+
}, z.core.$strip>;
|
|
2144
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
2145
|
+
type: z.ZodLiteral<"image">;
|
|
2146
|
+
data: z.ZodObject<{
|
|
2147
|
+
resource_id: z.ZodString;
|
|
2148
|
+
temp_url: z.ZodString;
|
|
2149
|
+
width: z.ZodNumber;
|
|
2150
|
+
height: z.ZodNumber;
|
|
2151
|
+
summary: z.ZodString;
|
|
2152
|
+
sub_type: z.ZodEnum<{
|
|
2153
|
+
normal: "normal";
|
|
2154
|
+
sticker: "sticker";
|
|
2155
|
+
}>;
|
|
2156
|
+
}, z.core.$strip>;
|
|
2157
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2158
|
+
type: z.ZodLiteral<"record">;
|
|
2159
|
+
data: z.ZodObject<{
|
|
2160
|
+
resource_id: z.ZodString;
|
|
2161
|
+
temp_url: z.ZodString;
|
|
2162
|
+
duration: z.ZodNumber;
|
|
2163
|
+
}, z.core.$strip>;
|
|
2164
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2165
|
+
type: z.ZodLiteral<"video">;
|
|
2166
|
+
data: z.ZodObject<{
|
|
2167
|
+
resource_id: z.ZodString;
|
|
2168
|
+
temp_url: z.ZodString;
|
|
2169
|
+
width: z.ZodNumber;
|
|
2170
|
+
height: z.ZodNumber;
|
|
2171
|
+
duration: z.ZodNumber;
|
|
2172
|
+
}, z.core.$strip>;
|
|
2173
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2174
|
+
type: z.ZodLiteral<"file">;
|
|
2175
|
+
data: z.ZodObject<{
|
|
2176
|
+
file_id: z.ZodString;
|
|
2177
|
+
file_name: z.ZodString;
|
|
2178
|
+
file_size: z.ZodNumber;
|
|
2179
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2180
|
+
}, z.core.$strip>;
|
|
2181
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2182
|
+
type: z.ZodLiteral<"forward">;
|
|
2183
|
+
data: z.ZodObject<{
|
|
2184
|
+
forward_id: z.ZodString;
|
|
2185
|
+
title: z.ZodString;
|
|
2186
|
+
preview: z.ZodArray<z.ZodString>;
|
|
2187
|
+
summary: z.ZodString;
|
|
2188
|
+
}, z.core.$strip>;
|
|
2189
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2190
|
+
type: z.ZodLiteral<"market_face">;
|
|
2191
|
+
data: z.ZodObject<{
|
|
2192
|
+
emoji_package_id: z.ZodNumber;
|
|
2193
|
+
emoji_id: z.ZodString;
|
|
2194
|
+
key: z.ZodString;
|
|
2195
|
+
summary: z.ZodString;
|
|
2196
|
+
url: z.ZodString;
|
|
2197
|
+
}, z.core.$strip>;
|
|
2198
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2199
|
+
type: z.ZodLiteral<"light_app">;
|
|
2200
|
+
data: z.ZodObject<{
|
|
2201
|
+
app_name: z.ZodString;
|
|
2202
|
+
json_payload: z.ZodString;
|
|
2203
|
+
}, z.core.$strip>;
|
|
2204
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2205
|
+
type: z.ZodLiteral<"xml">;
|
|
2206
|
+
data: z.ZodObject<{
|
|
2207
|
+
service_id: z.ZodNumber;
|
|
2208
|
+
xml_payload: z.ZodString;
|
|
2209
|
+
}, z.core.$strip>;
|
|
2210
|
+
}, z.core.$strip>], "type">>>>;
|
|
1355
2211
|
}, z.core.$strip>;
|
|
1356
2212
|
}, z.core.$strip>, z.ZodObject<{
|
|
1357
2213
|
type: z.ZodLiteral<"image">;
|
|
@@ -1419,7 +2275,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1419
2275
|
service_id: z.ZodNumber;
|
|
1420
2276
|
xml_payload: z.ZodString;
|
|
1421
2277
|
}, z.core.$strip>;
|
|
1422
|
-
}, z.core.$strip>], "type"
|
|
2278
|
+
}, z.core.$strip>], "type">>>>;
|
|
1423
2279
|
group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
1424
2280
|
group_id: z.ZodNumber;
|
|
1425
2281
|
group_name: z.ZodString;
|
|
@@ -1443,6 +2299,19 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1443
2299
|
operator_id: z.ZodNumber;
|
|
1444
2300
|
display_suffix: z.ZodString;
|
|
1445
2301
|
}, z.core.$strip>;
|
|
2302
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2303
|
+
event_type: z.ZodLiteral<"peer_pin_change">;
|
|
2304
|
+
time: z.ZodNumber;
|
|
2305
|
+
self_id: z.ZodNumber;
|
|
2306
|
+
data: z.ZodObject<{
|
|
2307
|
+
message_scene: z.ZodEnum<{
|
|
2308
|
+
friend: "friend";
|
|
2309
|
+
group: "group";
|
|
2310
|
+
temp: "temp";
|
|
2311
|
+
}>;
|
|
2312
|
+
peer_id: z.ZodNumber;
|
|
2313
|
+
is_pinned: z.ZodBoolean;
|
|
2314
|
+
}, z.core.$strip>;
|
|
1446
2315
|
}, z.core.$strip>, z.ZodObject<{
|
|
1447
2316
|
event_type: z.ZodLiteral<"friend_request">;
|
|
1448
2317
|
time: z.ZodNumber;
|
|
@@ -1564,6 +2433,10 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1564
2433
|
user_id: z.ZodNumber;
|
|
1565
2434
|
message_seq: z.ZodNumber;
|
|
1566
2435
|
face_id: z.ZodString;
|
|
2436
|
+
reaction_type: z.ZodEnum<{
|
|
2437
|
+
face: "face";
|
|
2438
|
+
emoji: "emoji";
|
|
2439
|
+
}>;
|
|
1567
2440
|
is_add: z.ZodBoolean;
|
|
1568
2441
|
}, z.core.$strip>;
|
|
1569
2442
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1611,6 +2484,7 @@ declare const Event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1611
2484
|
}, z.core.$strip>], "event_type">;
|
|
1612
2485
|
type BotOfflineEvent = z.infer<typeof BotOfflineEvent>;
|
|
1613
2486
|
type MessageRecallEvent = z.infer<typeof MessageRecallEvent>;
|
|
2487
|
+
type PeerPinChangeEvent = z.infer<typeof PeerPinChangeEvent>;
|
|
1614
2488
|
type FriendRequestEvent = z.infer<typeof FriendRequestEvent>;
|
|
1615
2489
|
type GroupJoinRequestEvent = z.infer<typeof GroupJoinRequestEvent>;
|
|
1616
2490
|
type GroupInvitedJoinRequestEvent = z.infer<typeof GroupInvitedJoinRequestEvent>;
|
|
@@ -1659,9 +2533,9 @@ declare const GetUserProfileOutput: z.ZodObject<{
|
|
|
1659
2533
|
qid: z.ZodString;
|
|
1660
2534
|
age: z.ZodNumber;
|
|
1661
2535
|
sex: z.ZodEnum<{
|
|
2536
|
+
unknown: "unknown";
|
|
1662
2537
|
male: "male";
|
|
1663
2538
|
female: "female";
|
|
1664
|
-
unknown: "unknown";
|
|
1665
2539
|
}>;
|
|
1666
2540
|
remark: z.ZodString;
|
|
1667
2541
|
bio: z.ZodString;
|
|
@@ -1678,9 +2552,9 @@ declare const GetFriendListOutput: z.ZodObject<{
|
|
|
1678
2552
|
user_id: z.ZodNumber;
|
|
1679
2553
|
nickname: z.ZodString;
|
|
1680
2554
|
sex: z.ZodEnum<{
|
|
2555
|
+
unknown: "unknown";
|
|
1681
2556
|
male: "male";
|
|
1682
2557
|
female: "female";
|
|
1683
|
-
unknown: "unknown";
|
|
1684
2558
|
}>;
|
|
1685
2559
|
qid: z.ZodString;
|
|
1686
2560
|
remark: z.ZodString;
|
|
@@ -1699,9 +2573,9 @@ declare const GetFriendInfoOutput: z.ZodObject<{
|
|
|
1699
2573
|
user_id: z.ZodNumber;
|
|
1700
2574
|
nickname: z.ZodString;
|
|
1701
2575
|
sex: z.ZodEnum<{
|
|
2576
|
+
unknown: "unknown";
|
|
1702
2577
|
male: "male";
|
|
1703
2578
|
female: "female";
|
|
1704
|
-
unknown: "unknown";
|
|
1705
2579
|
}>;
|
|
1706
2580
|
qid: z.ZodString;
|
|
1707
2581
|
remark: z.ZodString;
|
|
@@ -1743,9 +2617,9 @@ declare const GetGroupMemberListOutput: z.ZodObject<{
|
|
|
1743
2617
|
user_id: z.ZodNumber;
|
|
1744
2618
|
nickname: z.ZodString;
|
|
1745
2619
|
sex: z.ZodEnum<{
|
|
2620
|
+
unknown: "unknown";
|
|
1746
2621
|
male: "male";
|
|
1747
2622
|
female: "female";
|
|
1748
|
-
unknown: "unknown";
|
|
1749
2623
|
}>;
|
|
1750
2624
|
group_id: z.ZodNumber;
|
|
1751
2625
|
card: z.ZodString;
|
|
@@ -1771,9 +2645,9 @@ declare const GetGroupMemberInfoOutput: z.ZodObject<{
|
|
|
1771
2645
|
user_id: z.ZodNumber;
|
|
1772
2646
|
nickname: z.ZodString;
|
|
1773
2647
|
sex: z.ZodEnum<{
|
|
2648
|
+
unknown: "unknown";
|
|
1774
2649
|
male: "male";
|
|
1775
2650
|
female: "female";
|
|
1776
|
-
unknown: "unknown";
|
|
1777
2651
|
}>;
|
|
1778
2652
|
group_id: z.ZodNumber;
|
|
1779
2653
|
card: z.ZodString;
|
|
@@ -1789,6 +2663,38 @@ declare const GetGroupMemberInfoOutput: z.ZodObject<{
|
|
|
1789
2663
|
shut_up_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1790
2664
|
}, z.core.$strip>>;
|
|
1791
2665
|
}, z.core.$strip>;
|
|
2666
|
+
declare const GetPeerPinsOutput: z.ZodObject<{
|
|
2667
|
+
friends: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
2668
|
+
user_id: z.ZodNumber;
|
|
2669
|
+
nickname: z.ZodString;
|
|
2670
|
+
sex: z.ZodEnum<{
|
|
2671
|
+
unknown: "unknown";
|
|
2672
|
+
male: "male";
|
|
2673
|
+
female: "female";
|
|
2674
|
+
}>;
|
|
2675
|
+
qid: z.ZodString;
|
|
2676
|
+
remark: z.ZodString;
|
|
2677
|
+
category: z.ZodLazy<z.ZodObject<{
|
|
2678
|
+
category_id: z.ZodNumber;
|
|
2679
|
+
category_name: z.ZodString;
|
|
2680
|
+
}, z.core.$strip>>;
|
|
2681
|
+
}, z.core.$strip>>>;
|
|
2682
|
+
groups: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
2683
|
+
group_id: z.ZodNumber;
|
|
2684
|
+
group_name: z.ZodString;
|
|
2685
|
+
member_count: z.ZodNumber;
|
|
2686
|
+
max_member_count: z.ZodNumber;
|
|
2687
|
+
}, z.core.$strip>>>;
|
|
2688
|
+
}, z.core.$strip>;
|
|
2689
|
+
declare const SetPeerPinInput: z.ZodObject<{
|
|
2690
|
+
message_scene: z.ZodEnum<{
|
|
2691
|
+
friend: "friend";
|
|
2692
|
+
group: "group";
|
|
2693
|
+
temp: "temp";
|
|
2694
|
+
}>;
|
|
2695
|
+
peer_id: z.ZodNumber;
|
|
2696
|
+
is_pinned: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
2697
|
+
}, z.core.$strip>;
|
|
1792
2698
|
declare const SetAvatarInput: z.ZodObject<{
|
|
1793
2699
|
uri: z.ZodString;
|
|
1794
2700
|
}, z.core.$strip>;
|
|
@@ -1826,6 +2732,8 @@ type GetGroupMemberListInput = z.infer<typeof GetGroupMemberListInput>;
|
|
|
1826
2732
|
type GetGroupMemberListOutput = z.infer<typeof GetGroupMemberListOutput>;
|
|
1827
2733
|
type GetGroupMemberInfoInput = z.infer<typeof GetGroupMemberInfoInput>;
|
|
1828
2734
|
type GetGroupMemberInfoOutput = z.infer<typeof GetGroupMemberInfoOutput>;
|
|
2735
|
+
type GetPeerPinsOutput = z.infer<typeof GetPeerPinsOutput>;
|
|
2736
|
+
type SetPeerPinInput = z.infer<typeof SetPeerPinInput>;
|
|
1829
2737
|
type SetAvatarInput = z.infer<typeof SetAvatarInput>;
|
|
1830
2738
|
type SetNicknameInput = z.infer<typeof SetNicknameInput>;
|
|
1831
2739
|
type SetBioInput = z.infer<typeof SetBioInput>;
|
|
@@ -1933,8 +2841,22 @@ declare const SendPrivateMessageInput: z.ZodObject<{
|
|
|
1933
2841
|
uri: z.ZodString;
|
|
1934
2842
|
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1935
2843
|
}, z.core.$strip>;
|
|
1936
|
-
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip
|
|
2844
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
2845
|
+
type: z.ZodLiteral<"light_app">;
|
|
2846
|
+
data: z.ZodObject<{
|
|
2847
|
+
json_payload: z.ZodString;
|
|
2848
|
+
}, z.core.$strip>;
|
|
2849
|
+
}, z.core.$strip>], "type">>>;
|
|
1937
2850
|
}, z.core.$strip>>>;
|
|
2851
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2852
|
+
preview: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
2853
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2854
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2855
|
+
}, z.core.$strip>;
|
|
2856
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2857
|
+
type: z.ZodLiteral<"light_app">;
|
|
2858
|
+
data: z.ZodObject<{
|
|
2859
|
+
json_payload: z.ZodString;
|
|
1938
2860
|
}, z.core.$strip>;
|
|
1939
2861
|
}, z.core.$strip>], "type">>>;
|
|
1940
2862
|
}, z.core.$strip>;
|
|
@@ -2040,8 +2962,22 @@ declare const SendGroupMessageInput: z.ZodObject<{
|
|
|
2040
2962
|
uri: z.ZodString;
|
|
2041
2963
|
thumb_uri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2042
2964
|
}, z.core.$strip>;
|
|
2043
|
-
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip
|
|
2965
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
2966
|
+
type: z.ZodLiteral<"light_app">;
|
|
2967
|
+
data: z.ZodObject<{
|
|
2968
|
+
json_payload: z.ZodString;
|
|
2969
|
+
}, z.core.$strip>;
|
|
2970
|
+
}, z.core.$strip>], "type">>>;
|
|
2044
2971
|
}, z.core.$strip>>>;
|
|
2972
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2973
|
+
preview: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
2974
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2975
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2976
|
+
}, z.core.$strip>;
|
|
2977
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2978
|
+
type: z.ZodLiteral<"light_app">;
|
|
2979
|
+
data: z.ZodObject<{
|
|
2980
|
+
json_payload: z.ZodString;
|
|
2045
2981
|
}, z.core.$strip>;
|
|
2046
2982
|
}, z.core.$strip>], "type">>>;
|
|
2047
2983
|
}, z.core.$strip>;
|
|
@@ -2073,7 +3009,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2073
3009
|
message_seq: z.ZodNumber;
|
|
2074
3010
|
sender_id: z.ZodNumber;
|
|
2075
3011
|
time: z.ZodNumber;
|
|
2076
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3012
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2077
3013
|
type: z.ZodLiteral<"text">;
|
|
2078
3014
|
data: z.ZodObject<{
|
|
2079
3015
|
text: z.ZodString;
|
|
@@ -2082,6 +3018,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2082
3018
|
type: z.ZodLiteral<"mention">;
|
|
2083
3019
|
data: z.ZodObject<{
|
|
2084
3020
|
user_id: z.ZodNumber;
|
|
3021
|
+
name: z.ZodString;
|
|
2085
3022
|
}, z.core.$strip>;
|
|
2086
3023
|
}, z.core.$strip>, z.ZodObject<{
|
|
2087
3024
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -2096,6 +3033,96 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2096
3033
|
type: z.ZodLiteral<"reply">;
|
|
2097
3034
|
data: z.ZodObject<{
|
|
2098
3035
|
message_seq: z.ZodNumber;
|
|
3036
|
+
sender_id: z.ZodNumber;
|
|
3037
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3038
|
+
time: z.ZodNumber;
|
|
3039
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3040
|
+
type: z.ZodLiteral<"text">;
|
|
3041
|
+
data: z.ZodObject<{
|
|
3042
|
+
text: z.ZodString;
|
|
3043
|
+
}, z.core.$strip>;
|
|
3044
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3045
|
+
type: z.ZodLiteral<"mention">;
|
|
3046
|
+
data: z.ZodObject<{
|
|
3047
|
+
user_id: z.ZodNumber;
|
|
3048
|
+
name: z.ZodString;
|
|
3049
|
+
}, z.core.$strip>;
|
|
3050
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3051
|
+
type: z.ZodLiteral<"mention_all">;
|
|
3052
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
3053
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3054
|
+
type: z.ZodLiteral<"face">;
|
|
3055
|
+
data: z.ZodObject<{
|
|
3056
|
+
face_id: z.ZodString;
|
|
3057
|
+
is_large: z.ZodBoolean;
|
|
3058
|
+
}, z.core.$strip>;
|
|
3059
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
3060
|
+
type: z.ZodLiteral<"image">;
|
|
3061
|
+
data: z.ZodObject<{
|
|
3062
|
+
resource_id: z.ZodString;
|
|
3063
|
+
temp_url: z.ZodString;
|
|
3064
|
+
width: z.ZodNumber;
|
|
3065
|
+
height: z.ZodNumber;
|
|
3066
|
+
summary: z.ZodString;
|
|
3067
|
+
sub_type: z.ZodEnum<{
|
|
3068
|
+
normal: "normal";
|
|
3069
|
+
sticker: "sticker";
|
|
3070
|
+
}>;
|
|
3071
|
+
}, z.core.$strip>;
|
|
3072
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3073
|
+
type: z.ZodLiteral<"record">;
|
|
3074
|
+
data: z.ZodObject<{
|
|
3075
|
+
resource_id: z.ZodString;
|
|
3076
|
+
temp_url: z.ZodString;
|
|
3077
|
+
duration: z.ZodNumber;
|
|
3078
|
+
}, z.core.$strip>;
|
|
3079
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3080
|
+
type: z.ZodLiteral<"video">;
|
|
3081
|
+
data: z.ZodObject<{
|
|
3082
|
+
resource_id: z.ZodString;
|
|
3083
|
+
temp_url: z.ZodString;
|
|
3084
|
+
width: z.ZodNumber;
|
|
3085
|
+
height: z.ZodNumber;
|
|
3086
|
+
duration: z.ZodNumber;
|
|
3087
|
+
}, z.core.$strip>;
|
|
3088
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3089
|
+
type: z.ZodLiteral<"file">;
|
|
3090
|
+
data: z.ZodObject<{
|
|
3091
|
+
file_id: z.ZodString;
|
|
3092
|
+
file_name: z.ZodString;
|
|
3093
|
+
file_size: z.ZodNumber;
|
|
3094
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3095
|
+
}, z.core.$strip>;
|
|
3096
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3097
|
+
type: z.ZodLiteral<"forward">;
|
|
3098
|
+
data: z.ZodObject<{
|
|
3099
|
+
forward_id: z.ZodString;
|
|
3100
|
+
title: z.ZodString;
|
|
3101
|
+
preview: z.ZodArray<z.ZodString>;
|
|
3102
|
+
summary: z.ZodString;
|
|
3103
|
+
}, z.core.$strip>;
|
|
3104
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3105
|
+
type: z.ZodLiteral<"market_face">;
|
|
3106
|
+
data: z.ZodObject<{
|
|
3107
|
+
emoji_package_id: z.ZodNumber;
|
|
3108
|
+
emoji_id: z.ZodString;
|
|
3109
|
+
key: z.ZodString;
|
|
3110
|
+
summary: z.ZodString;
|
|
3111
|
+
url: z.ZodString;
|
|
3112
|
+
}, z.core.$strip>;
|
|
3113
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3114
|
+
type: z.ZodLiteral<"light_app">;
|
|
3115
|
+
data: z.ZodObject<{
|
|
3116
|
+
app_name: z.ZodString;
|
|
3117
|
+
json_payload: z.ZodString;
|
|
3118
|
+
}, z.core.$strip>;
|
|
3119
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3120
|
+
type: z.ZodLiteral<"xml">;
|
|
3121
|
+
data: z.ZodObject<{
|
|
3122
|
+
service_id: z.ZodNumber;
|
|
3123
|
+
xml_payload: z.ZodString;
|
|
3124
|
+
}, z.core.$strip>;
|
|
3125
|
+
}, z.core.$strip>], "type">>>>;
|
|
2099
3126
|
}, z.core.$strip>;
|
|
2100
3127
|
}, z.core.$strip>, z.ZodObject<{
|
|
2101
3128
|
type: z.ZodLiteral<"image">;
|
|
@@ -2163,14 +3190,14 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2163
3190
|
service_id: z.ZodNumber;
|
|
2164
3191
|
xml_payload: z.ZodString;
|
|
2165
3192
|
}, z.core.$strip>;
|
|
2166
|
-
}, z.core.$strip>], "type"
|
|
3193
|
+
}, z.core.$strip>], "type">>>>;
|
|
2167
3194
|
friend: z.ZodLazy<z.ZodObject<{
|
|
2168
3195
|
user_id: z.ZodNumber;
|
|
2169
3196
|
nickname: z.ZodString;
|
|
2170
3197
|
sex: z.ZodEnum<{
|
|
3198
|
+
unknown: "unknown";
|
|
2171
3199
|
male: "male";
|
|
2172
3200
|
female: "female";
|
|
2173
|
-
unknown: "unknown";
|
|
2174
3201
|
}>;
|
|
2175
3202
|
qid: z.ZodString;
|
|
2176
3203
|
remark: z.ZodString;
|
|
@@ -2185,7 +3212,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2185
3212
|
message_seq: z.ZodNumber;
|
|
2186
3213
|
sender_id: z.ZodNumber;
|
|
2187
3214
|
time: z.ZodNumber;
|
|
2188
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3215
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2189
3216
|
type: z.ZodLiteral<"text">;
|
|
2190
3217
|
data: z.ZodObject<{
|
|
2191
3218
|
text: z.ZodString;
|
|
@@ -2194,6 +3221,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2194
3221
|
type: z.ZodLiteral<"mention">;
|
|
2195
3222
|
data: z.ZodObject<{
|
|
2196
3223
|
user_id: z.ZodNumber;
|
|
3224
|
+
name: z.ZodString;
|
|
2197
3225
|
}, z.core.$strip>;
|
|
2198
3226
|
}, z.core.$strip>, z.ZodObject<{
|
|
2199
3227
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -2208,6 +3236,96 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2208
3236
|
type: z.ZodLiteral<"reply">;
|
|
2209
3237
|
data: z.ZodObject<{
|
|
2210
3238
|
message_seq: z.ZodNumber;
|
|
3239
|
+
sender_id: z.ZodNumber;
|
|
3240
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3241
|
+
time: z.ZodNumber;
|
|
3242
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3243
|
+
type: z.ZodLiteral<"text">;
|
|
3244
|
+
data: z.ZodObject<{
|
|
3245
|
+
text: z.ZodString;
|
|
3246
|
+
}, z.core.$strip>;
|
|
3247
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3248
|
+
type: z.ZodLiteral<"mention">;
|
|
3249
|
+
data: z.ZodObject<{
|
|
3250
|
+
user_id: z.ZodNumber;
|
|
3251
|
+
name: z.ZodString;
|
|
3252
|
+
}, z.core.$strip>;
|
|
3253
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3254
|
+
type: z.ZodLiteral<"mention_all">;
|
|
3255
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
3256
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3257
|
+
type: z.ZodLiteral<"face">;
|
|
3258
|
+
data: z.ZodObject<{
|
|
3259
|
+
face_id: z.ZodString;
|
|
3260
|
+
is_large: z.ZodBoolean;
|
|
3261
|
+
}, z.core.$strip>;
|
|
3262
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
3263
|
+
type: z.ZodLiteral<"image">;
|
|
3264
|
+
data: z.ZodObject<{
|
|
3265
|
+
resource_id: z.ZodString;
|
|
3266
|
+
temp_url: z.ZodString;
|
|
3267
|
+
width: z.ZodNumber;
|
|
3268
|
+
height: z.ZodNumber;
|
|
3269
|
+
summary: z.ZodString;
|
|
3270
|
+
sub_type: z.ZodEnum<{
|
|
3271
|
+
normal: "normal";
|
|
3272
|
+
sticker: "sticker";
|
|
3273
|
+
}>;
|
|
3274
|
+
}, z.core.$strip>;
|
|
3275
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3276
|
+
type: z.ZodLiteral<"record">;
|
|
3277
|
+
data: z.ZodObject<{
|
|
3278
|
+
resource_id: z.ZodString;
|
|
3279
|
+
temp_url: z.ZodString;
|
|
3280
|
+
duration: z.ZodNumber;
|
|
3281
|
+
}, z.core.$strip>;
|
|
3282
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3283
|
+
type: z.ZodLiteral<"video">;
|
|
3284
|
+
data: z.ZodObject<{
|
|
3285
|
+
resource_id: z.ZodString;
|
|
3286
|
+
temp_url: z.ZodString;
|
|
3287
|
+
width: z.ZodNumber;
|
|
3288
|
+
height: z.ZodNumber;
|
|
3289
|
+
duration: z.ZodNumber;
|
|
3290
|
+
}, z.core.$strip>;
|
|
3291
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3292
|
+
type: z.ZodLiteral<"file">;
|
|
3293
|
+
data: z.ZodObject<{
|
|
3294
|
+
file_id: z.ZodString;
|
|
3295
|
+
file_name: z.ZodString;
|
|
3296
|
+
file_size: z.ZodNumber;
|
|
3297
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3298
|
+
}, z.core.$strip>;
|
|
3299
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3300
|
+
type: z.ZodLiteral<"forward">;
|
|
3301
|
+
data: z.ZodObject<{
|
|
3302
|
+
forward_id: z.ZodString;
|
|
3303
|
+
title: z.ZodString;
|
|
3304
|
+
preview: z.ZodArray<z.ZodString>;
|
|
3305
|
+
summary: z.ZodString;
|
|
3306
|
+
}, z.core.$strip>;
|
|
3307
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3308
|
+
type: z.ZodLiteral<"market_face">;
|
|
3309
|
+
data: z.ZodObject<{
|
|
3310
|
+
emoji_package_id: z.ZodNumber;
|
|
3311
|
+
emoji_id: z.ZodString;
|
|
3312
|
+
key: z.ZodString;
|
|
3313
|
+
summary: z.ZodString;
|
|
3314
|
+
url: z.ZodString;
|
|
3315
|
+
}, z.core.$strip>;
|
|
3316
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3317
|
+
type: z.ZodLiteral<"light_app">;
|
|
3318
|
+
data: z.ZodObject<{
|
|
3319
|
+
app_name: z.ZodString;
|
|
3320
|
+
json_payload: z.ZodString;
|
|
3321
|
+
}, z.core.$strip>;
|
|
3322
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3323
|
+
type: z.ZodLiteral<"xml">;
|
|
3324
|
+
data: z.ZodObject<{
|
|
3325
|
+
service_id: z.ZodNumber;
|
|
3326
|
+
xml_payload: z.ZodString;
|
|
3327
|
+
}, z.core.$strip>;
|
|
3328
|
+
}, z.core.$strip>], "type">>>>;
|
|
2211
3329
|
}, z.core.$strip>;
|
|
2212
3330
|
}, z.core.$strip>, z.ZodObject<{
|
|
2213
3331
|
type: z.ZodLiteral<"image">;
|
|
@@ -2275,7 +3393,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2275
3393
|
service_id: z.ZodNumber;
|
|
2276
3394
|
xml_payload: z.ZodString;
|
|
2277
3395
|
}, z.core.$strip>;
|
|
2278
|
-
}, z.core.$strip>], "type"
|
|
3396
|
+
}, z.core.$strip>], "type">>>>;
|
|
2279
3397
|
group: z.ZodLazy<z.ZodObject<{
|
|
2280
3398
|
group_id: z.ZodNumber;
|
|
2281
3399
|
group_name: z.ZodString;
|
|
@@ -2286,9 +3404,9 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2286
3404
|
user_id: z.ZodNumber;
|
|
2287
3405
|
nickname: z.ZodString;
|
|
2288
3406
|
sex: z.ZodEnum<{
|
|
3407
|
+
unknown: "unknown";
|
|
2289
3408
|
male: "male";
|
|
2290
3409
|
female: "female";
|
|
2291
|
-
unknown: "unknown";
|
|
2292
3410
|
}>;
|
|
2293
3411
|
group_id: z.ZodNumber;
|
|
2294
3412
|
card: z.ZodString;
|
|
@@ -2309,7 +3427,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2309
3427
|
message_seq: z.ZodNumber;
|
|
2310
3428
|
sender_id: z.ZodNumber;
|
|
2311
3429
|
time: z.ZodNumber;
|
|
2312
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3430
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2313
3431
|
type: z.ZodLiteral<"text">;
|
|
2314
3432
|
data: z.ZodObject<{
|
|
2315
3433
|
text: z.ZodString;
|
|
@@ -2318,6 +3436,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2318
3436
|
type: z.ZodLiteral<"mention">;
|
|
2319
3437
|
data: z.ZodObject<{
|
|
2320
3438
|
user_id: z.ZodNumber;
|
|
3439
|
+
name: z.ZodString;
|
|
2321
3440
|
}, z.core.$strip>;
|
|
2322
3441
|
}, z.core.$strip>, z.ZodObject<{
|
|
2323
3442
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -2332,6 +3451,96 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2332
3451
|
type: z.ZodLiteral<"reply">;
|
|
2333
3452
|
data: z.ZodObject<{
|
|
2334
3453
|
message_seq: z.ZodNumber;
|
|
3454
|
+
sender_id: z.ZodNumber;
|
|
3455
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3456
|
+
time: z.ZodNumber;
|
|
3457
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3458
|
+
type: z.ZodLiteral<"text">;
|
|
3459
|
+
data: z.ZodObject<{
|
|
3460
|
+
text: z.ZodString;
|
|
3461
|
+
}, z.core.$strip>;
|
|
3462
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3463
|
+
type: z.ZodLiteral<"mention">;
|
|
3464
|
+
data: z.ZodObject<{
|
|
3465
|
+
user_id: z.ZodNumber;
|
|
3466
|
+
name: z.ZodString;
|
|
3467
|
+
}, z.core.$strip>;
|
|
3468
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3469
|
+
type: z.ZodLiteral<"mention_all">;
|
|
3470
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
3471
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3472
|
+
type: z.ZodLiteral<"face">;
|
|
3473
|
+
data: z.ZodObject<{
|
|
3474
|
+
face_id: z.ZodString;
|
|
3475
|
+
is_large: z.ZodBoolean;
|
|
3476
|
+
}, z.core.$strip>;
|
|
3477
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
3478
|
+
type: z.ZodLiteral<"image">;
|
|
3479
|
+
data: z.ZodObject<{
|
|
3480
|
+
resource_id: z.ZodString;
|
|
3481
|
+
temp_url: z.ZodString;
|
|
3482
|
+
width: z.ZodNumber;
|
|
3483
|
+
height: z.ZodNumber;
|
|
3484
|
+
summary: z.ZodString;
|
|
3485
|
+
sub_type: z.ZodEnum<{
|
|
3486
|
+
normal: "normal";
|
|
3487
|
+
sticker: "sticker";
|
|
3488
|
+
}>;
|
|
3489
|
+
}, z.core.$strip>;
|
|
3490
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3491
|
+
type: z.ZodLiteral<"record">;
|
|
3492
|
+
data: z.ZodObject<{
|
|
3493
|
+
resource_id: z.ZodString;
|
|
3494
|
+
temp_url: z.ZodString;
|
|
3495
|
+
duration: z.ZodNumber;
|
|
3496
|
+
}, z.core.$strip>;
|
|
3497
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3498
|
+
type: z.ZodLiteral<"video">;
|
|
3499
|
+
data: z.ZodObject<{
|
|
3500
|
+
resource_id: z.ZodString;
|
|
3501
|
+
temp_url: z.ZodString;
|
|
3502
|
+
width: z.ZodNumber;
|
|
3503
|
+
height: z.ZodNumber;
|
|
3504
|
+
duration: z.ZodNumber;
|
|
3505
|
+
}, z.core.$strip>;
|
|
3506
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3507
|
+
type: z.ZodLiteral<"file">;
|
|
3508
|
+
data: z.ZodObject<{
|
|
3509
|
+
file_id: z.ZodString;
|
|
3510
|
+
file_name: z.ZodString;
|
|
3511
|
+
file_size: z.ZodNumber;
|
|
3512
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3513
|
+
}, z.core.$strip>;
|
|
3514
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3515
|
+
type: z.ZodLiteral<"forward">;
|
|
3516
|
+
data: z.ZodObject<{
|
|
3517
|
+
forward_id: z.ZodString;
|
|
3518
|
+
title: z.ZodString;
|
|
3519
|
+
preview: z.ZodArray<z.ZodString>;
|
|
3520
|
+
summary: z.ZodString;
|
|
3521
|
+
}, z.core.$strip>;
|
|
3522
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3523
|
+
type: z.ZodLiteral<"market_face">;
|
|
3524
|
+
data: z.ZodObject<{
|
|
3525
|
+
emoji_package_id: z.ZodNumber;
|
|
3526
|
+
emoji_id: z.ZodString;
|
|
3527
|
+
key: z.ZodString;
|
|
3528
|
+
summary: z.ZodString;
|
|
3529
|
+
url: z.ZodString;
|
|
3530
|
+
}, z.core.$strip>;
|
|
3531
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3532
|
+
type: z.ZodLiteral<"light_app">;
|
|
3533
|
+
data: z.ZodObject<{
|
|
3534
|
+
app_name: z.ZodString;
|
|
3535
|
+
json_payload: z.ZodString;
|
|
3536
|
+
}, z.core.$strip>;
|
|
3537
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3538
|
+
type: z.ZodLiteral<"xml">;
|
|
3539
|
+
data: z.ZodObject<{
|
|
3540
|
+
service_id: z.ZodNumber;
|
|
3541
|
+
xml_payload: z.ZodString;
|
|
3542
|
+
}, z.core.$strip>;
|
|
3543
|
+
}, z.core.$strip>], "type">>>>;
|
|
2335
3544
|
}, z.core.$strip>;
|
|
2336
3545
|
}, z.core.$strip>, z.ZodObject<{
|
|
2337
3546
|
type: z.ZodLiteral<"image">;
|
|
@@ -2399,7 +3608,7 @@ declare const GetMessageOutput: z.ZodObject<{
|
|
|
2399
3608
|
service_id: z.ZodNumber;
|
|
2400
3609
|
xml_payload: z.ZodString;
|
|
2401
3610
|
}, z.core.$strip>;
|
|
2402
|
-
}, z.core.$strip>], "type"
|
|
3611
|
+
}, z.core.$strip>], "type">>>>;
|
|
2403
3612
|
group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
2404
3613
|
group_id: z.ZodNumber;
|
|
2405
3614
|
group_name: z.ZodString;
|
|
@@ -2425,7 +3634,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2425
3634
|
message_seq: z.ZodNumber;
|
|
2426
3635
|
sender_id: z.ZodNumber;
|
|
2427
3636
|
time: z.ZodNumber;
|
|
2428
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3637
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2429
3638
|
type: z.ZodLiteral<"text">;
|
|
2430
3639
|
data: z.ZodObject<{
|
|
2431
3640
|
text: z.ZodString;
|
|
@@ -2434,6 +3643,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2434
3643
|
type: z.ZodLiteral<"mention">;
|
|
2435
3644
|
data: z.ZodObject<{
|
|
2436
3645
|
user_id: z.ZodNumber;
|
|
3646
|
+
name: z.ZodString;
|
|
2437
3647
|
}, z.core.$strip>;
|
|
2438
3648
|
}, z.core.$strip>, z.ZodObject<{
|
|
2439
3649
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -2448,6 +3658,96 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2448
3658
|
type: z.ZodLiteral<"reply">;
|
|
2449
3659
|
data: z.ZodObject<{
|
|
2450
3660
|
message_seq: z.ZodNumber;
|
|
3661
|
+
sender_id: z.ZodNumber;
|
|
3662
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3663
|
+
time: z.ZodNumber;
|
|
3664
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3665
|
+
type: z.ZodLiteral<"text">;
|
|
3666
|
+
data: z.ZodObject<{
|
|
3667
|
+
text: z.ZodString;
|
|
3668
|
+
}, z.core.$strip>;
|
|
3669
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3670
|
+
type: z.ZodLiteral<"mention">;
|
|
3671
|
+
data: z.ZodObject<{
|
|
3672
|
+
user_id: z.ZodNumber;
|
|
3673
|
+
name: z.ZodString;
|
|
3674
|
+
}, z.core.$strip>;
|
|
3675
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3676
|
+
type: z.ZodLiteral<"mention_all">;
|
|
3677
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
3678
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3679
|
+
type: z.ZodLiteral<"face">;
|
|
3680
|
+
data: z.ZodObject<{
|
|
3681
|
+
face_id: z.ZodString;
|
|
3682
|
+
is_large: z.ZodBoolean;
|
|
3683
|
+
}, z.core.$strip>;
|
|
3684
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
3685
|
+
type: z.ZodLiteral<"image">;
|
|
3686
|
+
data: z.ZodObject<{
|
|
3687
|
+
resource_id: z.ZodString;
|
|
3688
|
+
temp_url: z.ZodString;
|
|
3689
|
+
width: z.ZodNumber;
|
|
3690
|
+
height: z.ZodNumber;
|
|
3691
|
+
summary: z.ZodString;
|
|
3692
|
+
sub_type: z.ZodEnum<{
|
|
3693
|
+
normal: "normal";
|
|
3694
|
+
sticker: "sticker";
|
|
3695
|
+
}>;
|
|
3696
|
+
}, z.core.$strip>;
|
|
3697
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3698
|
+
type: z.ZodLiteral<"record">;
|
|
3699
|
+
data: z.ZodObject<{
|
|
3700
|
+
resource_id: z.ZodString;
|
|
3701
|
+
temp_url: z.ZodString;
|
|
3702
|
+
duration: z.ZodNumber;
|
|
3703
|
+
}, z.core.$strip>;
|
|
3704
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3705
|
+
type: z.ZodLiteral<"video">;
|
|
3706
|
+
data: z.ZodObject<{
|
|
3707
|
+
resource_id: z.ZodString;
|
|
3708
|
+
temp_url: z.ZodString;
|
|
3709
|
+
width: z.ZodNumber;
|
|
3710
|
+
height: z.ZodNumber;
|
|
3711
|
+
duration: z.ZodNumber;
|
|
3712
|
+
}, z.core.$strip>;
|
|
3713
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3714
|
+
type: z.ZodLiteral<"file">;
|
|
3715
|
+
data: z.ZodObject<{
|
|
3716
|
+
file_id: z.ZodString;
|
|
3717
|
+
file_name: z.ZodString;
|
|
3718
|
+
file_size: z.ZodNumber;
|
|
3719
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3720
|
+
}, z.core.$strip>;
|
|
3721
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3722
|
+
type: z.ZodLiteral<"forward">;
|
|
3723
|
+
data: z.ZodObject<{
|
|
3724
|
+
forward_id: z.ZodString;
|
|
3725
|
+
title: z.ZodString;
|
|
3726
|
+
preview: z.ZodArray<z.ZodString>;
|
|
3727
|
+
summary: z.ZodString;
|
|
3728
|
+
}, z.core.$strip>;
|
|
3729
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3730
|
+
type: z.ZodLiteral<"market_face">;
|
|
3731
|
+
data: z.ZodObject<{
|
|
3732
|
+
emoji_package_id: z.ZodNumber;
|
|
3733
|
+
emoji_id: z.ZodString;
|
|
3734
|
+
key: z.ZodString;
|
|
3735
|
+
summary: z.ZodString;
|
|
3736
|
+
url: z.ZodString;
|
|
3737
|
+
}, z.core.$strip>;
|
|
3738
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3739
|
+
type: z.ZodLiteral<"light_app">;
|
|
3740
|
+
data: z.ZodObject<{
|
|
3741
|
+
app_name: z.ZodString;
|
|
3742
|
+
json_payload: z.ZodString;
|
|
3743
|
+
}, z.core.$strip>;
|
|
3744
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3745
|
+
type: z.ZodLiteral<"xml">;
|
|
3746
|
+
data: z.ZodObject<{
|
|
3747
|
+
service_id: z.ZodNumber;
|
|
3748
|
+
xml_payload: z.ZodString;
|
|
3749
|
+
}, z.core.$strip>;
|
|
3750
|
+
}, z.core.$strip>], "type">>>>;
|
|
2451
3751
|
}, z.core.$strip>;
|
|
2452
3752
|
}, z.core.$strip>, z.ZodObject<{
|
|
2453
3753
|
type: z.ZodLiteral<"image">;
|
|
@@ -2515,14 +3815,14 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2515
3815
|
service_id: z.ZodNumber;
|
|
2516
3816
|
xml_payload: z.ZodString;
|
|
2517
3817
|
}, z.core.$strip>;
|
|
2518
|
-
}, z.core.$strip>], "type"
|
|
3818
|
+
}, z.core.$strip>], "type">>>>;
|
|
2519
3819
|
friend: z.ZodLazy<z.ZodObject<{
|
|
2520
3820
|
user_id: z.ZodNumber;
|
|
2521
3821
|
nickname: z.ZodString;
|
|
2522
3822
|
sex: z.ZodEnum<{
|
|
3823
|
+
unknown: "unknown";
|
|
2523
3824
|
male: "male";
|
|
2524
3825
|
female: "female";
|
|
2525
|
-
unknown: "unknown";
|
|
2526
3826
|
}>;
|
|
2527
3827
|
qid: z.ZodString;
|
|
2528
3828
|
remark: z.ZodString;
|
|
@@ -2537,7 +3837,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2537
3837
|
message_seq: z.ZodNumber;
|
|
2538
3838
|
sender_id: z.ZodNumber;
|
|
2539
3839
|
time: z.ZodNumber;
|
|
2540
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3840
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2541
3841
|
type: z.ZodLiteral<"text">;
|
|
2542
3842
|
data: z.ZodObject<{
|
|
2543
3843
|
text: z.ZodString;
|
|
@@ -2546,6 +3846,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2546
3846
|
type: z.ZodLiteral<"mention">;
|
|
2547
3847
|
data: z.ZodObject<{
|
|
2548
3848
|
user_id: z.ZodNumber;
|
|
3849
|
+
name: z.ZodString;
|
|
2549
3850
|
}, z.core.$strip>;
|
|
2550
3851
|
}, z.core.$strip>, z.ZodObject<{
|
|
2551
3852
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -2560,6 +3861,96 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2560
3861
|
type: z.ZodLiteral<"reply">;
|
|
2561
3862
|
data: z.ZodObject<{
|
|
2562
3863
|
message_seq: z.ZodNumber;
|
|
3864
|
+
sender_id: z.ZodNumber;
|
|
3865
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3866
|
+
time: z.ZodNumber;
|
|
3867
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3868
|
+
type: z.ZodLiteral<"text">;
|
|
3869
|
+
data: z.ZodObject<{
|
|
3870
|
+
text: z.ZodString;
|
|
3871
|
+
}, z.core.$strip>;
|
|
3872
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3873
|
+
type: z.ZodLiteral<"mention">;
|
|
3874
|
+
data: z.ZodObject<{
|
|
3875
|
+
user_id: z.ZodNumber;
|
|
3876
|
+
name: z.ZodString;
|
|
3877
|
+
}, z.core.$strip>;
|
|
3878
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3879
|
+
type: z.ZodLiteral<"mention_all">;
|
|
3880
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
3881
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3882
|
+
type: z.ZodLiteral<"face">;
|
|
3883
|
+
data: z.ZodObject<{
|
|
3884
|
+
face_id: z.ZodString;
|
|
3885
|
+
is_large: z.ZodBoolean;
|
|
3886
|
+
}, z.core.$strip>;
|
|
3887
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
3888
|
+
type: z.ZodLiteral<"image">;
|
|
3889
|
+
data: z.ZodObject<{
|
|
3890
|
+
resource_id: z.ZodString;
|
|
3891
|
+
temp_url: z.ZodString;
|
|
3892
|
+
width: z.ZodNumber;
|
|
3893
|
+
height: z.ZodNumber;
|
|
3894
|
+
summary: z.ZodString;
|
|
3895
|
+
sub_type: z.ZodEnum<{
|
|
3896
|
+
normal: "normal";
|
|
3897
|
+
sticker: "sticker";
|
|
3898
|
+
}>;
|
|
3899
|
+
}, z.core.$strip>;
|
|
3900
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3901
|
+
type: z.ZodLiteral<"record">;
|
|
3902
|
+
data: z.ZodObject<{
|
|
3903
|
+
resource_id: z.ZodString;
|
|
3904
|
+
temp_url: z.ZodString;
|
|
3905
|
+
duration: z.ZodNumber;
|
|
3906
|
+
}, z.core.$strip>;
|
|
3907
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3908
|
+
type: z.ZodLiteral<"video">;
|
|
3909
|
+
data: z.ZodObject<{
|
|
3910
|
+
resource_id: z.ZodString;
|
|
3911
|
+
temp_url: z.ZodString;
|
|
3912
|
+
width: z.ZodNumber;
|
|
3913
|
+
height: z.ZodNumber;
|
|
3914
|
+
duration: z.ZodNumber;
|
|
3915
|
+
}, z.core.$strip>;
|
|
3916
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3917
|
+
type: z.ZodLiteral<"file">;
|
|
3918
|
+
data: z.ZodObject<{
|
|
3919
|
+
file_id: z.ZodString;
|
|
3920
|
+
file_name: z.ZodString;
|
|
3921
|
+
file_size: z.ZodNumber;
|
|
3922
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3923
|
+
}, z.core.$strip>;
|
|
3924
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3925
|
+
type: z.ZodLiteral<"forward">;
|
|
3926
|
+
data: z.ZodObject<{
|
|
3927
|
+
forward_id: z.ZodString;
|
|
3928
|
+
title: z.ZodString;
|
|
3929
|
+
preview: z.ZodArray<z.ZodString>;
|
|
3930
|
+
summary: z.ZodString;
|
|
3931
|
+
}, z.core.$strip>;
|
|
3932
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3933
|
+
type: z.ZodLiteral<"market_face">;
|
|
3934
|
+
data: z.ZodObject<{
|
|
3935
|
+
emoji_package_id: z.ZodNumber;
|
|
3936
|
+
emoji_id: z.ZodString;
|
|
3937
|
+
key: z.ZodString;
|
|
3938
|
+
summary: z.ZodString;
|
|
3939
|
+
url: z.ZodString;
|
|
3940
|
+
}, z.core.$strip>;
|
|
3941
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3942
|
+
type: z.ZodLiteral<"light_app">;
|
|
3943
|
+
data: z.ZodObject<{
|
|
3944
|
+
app_name: z.ZodString;
|
|
3945
|
+
json_payload: z.ZodString;
|
|
3946
|
+
}, z.core.$strip>;
|
|
3947
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3948
|
+
type: z.ZodLiteral<"xml">;
|
|
3949
|
+
data: z.ZodObject<{
|
|
3950
|
+
service_id: z.ZodNumber;
|
|
3951
|
+
xml_payload: z.ZodString;
|
|
3952
|
+
}, z.core.$strip>;
|
|
3953
|
+
}, z.core.$strip>], "type">>>>;
|
|
2563
3954
|
}, z.core.$strip>;
|
|
2564
3955
|
}, z.core.$strip>, z.ZodObject<{
|
|
2565
3956
|
type: z.ZodLiteral<"image">;
|
|
@@ -2627,7 +4018,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2627
4018
|
service_id: z.ZodNumber;
|
|
2628
4019
|
xml_payload: z.ZodString;
|
|
2629
4020
|
}, z.core.$strip>;
|
|
2630
|
-
}, z.core.$strip>], "type"
|
|
4021
|
+
}, z.core.$strip>], "type">>>>;
|
|
2631
4022
|
group: z.ZodLazy<z.ZodObject<{
|
|
2632
4023
|
group_id: z.ZodNumber;
|
|
2633
4024
|
group_name: z.ZodString;
|
|
@@ -2638,9 +4029,9 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2638
4029
|
user_id: z.ZodNumber;
|
|
2639
4030
|
nickname: z.ZodString;
|
|
2640
4031
|
sex: z.ZodEnum<{
|
|
4032
|
+
unknown: "unknown";
|
|
2641
4033
|
male: "male";
|
|
2642
4034
|
female: "female";
|
|
2643
|
-
unknown: "unknown";
|
|
2644
4035
|
}>;
|
|
2645
4036
|
group_id: z.ZodNumber;
|
|
2646
4037
|
card: z.ZodString;
|
|
@@ -2661,7 +4052,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2661
4052
|
message_seq: z.ZodNumber;
|
|
2662
4053
|
sender_id: z.ZodNumber;
|
|
2663
4054
|
time: z.ZodNumber;
|
|
2664
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4055
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2665
4056
|
type: z.ZodLiteral<"text">;
|
|
2666
4057
|
data: z.ZodObject<{
|
|
2667
4058
|
text: z.ZodString;
|
|
@@ -2670,6 +4061,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2670
4061
|
type: z.ZodLiteral<"mention">;
|
|
2671
4062
|
data: z.ZodObject<{
|
|
2672
4063
|
user_id: z.ZodNumber;
|
|
4064
|
+
name: z.ZodString;
|
|
2673
4065
|
}, z.core.$strip>;
|
|
2674
4066
|
}, z.core.$strip>, z.ZodObject<{
|
|
2675
4067
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -2684,6 +4076,96 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2684
4076
|
type: z.ZodLiteral<"reply">;
|
|
2685
4077
|
data: z.ZodObject<{
|
|
2686
4078
|
message_seq: z.ZodNumber;
|
|
4079
|
+
sender_id: z.ZodNumber;
|
|
4080
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4081
|
+
time: z.ZodNumber;
|
|
4082
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4083
|
+
type: z.ZodLiteral<"text">;
|
|
4084
|
+
data: z.ZodObject<{
|
|
4085
|
+
text: z.ZodString;
|
|
4086
|
+
}, z.core.$strip>;
|
|
4087
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4088
|
+
type: z.ZodLiteral<"mention">;
|
|
4089
|
+
data: z.ZodObject<{
|
|
4090
|
+
user_id: z.ZodNumber;
|
|
4091
|
+
name: z.ZodString;
|
|
4092
|
+
}, z.core.$strip>;
|
|
4093
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4094
|
+
type: z.ZodLiteral<"mention_all">;
|
|
4095
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
4096
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4097
|
+
type: z.ZodLiteral<"face">;
|
|
4098
|
+
data: z.ZodObject<{
|
|
4099
|
+
face_id: z.ZodString;
|
|
4100
|
+
is_large: z.ZodBoolean;
|
|
4101
|
+
}, z.core.$strip>;
|
|
4102
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
4103
|
+
type: z.ZodLiteral<"image">;
|
|
4104
|
+
data: z.ZodObject<{
|
|
4105
|
+
resource_id: z.ZodString;
|
|
4106
|
+
temp_url: z.ZodString;
|
|
4107
|
+
width: z.ZodNumber;
|
|
4108
|
+
height: z.ZodNumber;
|
|
4109
|
+
summary: z.ZodString;
|
|
4110
|
+
sub_type: z.ZodEnum<{
|
|
4111
|
+
normal: "normal";
|
|
4112
|
+
sticker: "sticker";
|
|
4113
|
+
}>;
|
|
4114
|
+
}, z.core.$strip>;
|
|
4115
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4116
|
+
type: z.ZodLiteral<"record">;
|
|
4117
|
+
data: z.ZodObject<{
|
|
4118
|
+
resource_id: z.ZodString;
|
|
4119
|
+
temp_url: z.ZodString;
|
|
4120
|
+
duration: z.ZodNumber;
|
|
4121
|
+
}, z.core.$strip>;
|
|
4122
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4123
|
+
type: z.ZodLiteral<"video">;
|
|
4124
|
+
data: z.ZodObject<{
|
|
4125
|
+
resource_id: z.ZodString;
|
|
4126
|
+
temp_url: z.ZodString;
|
|
4127
|
+
width: z.ZodNumber;
|
|
4128
|
+
height: z.ZodNumber;
|
|
4129
|
+
duration: z.ZodNumber;
|
|
4130
|
+
}, z.core.$strip>;
|
|
4131
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4132
|
+
type: z.ZodLiteral<"file">;
|
|
4133
|
+
data: z.ZodObject<{
|
|
4134
|
+
file_id: z.ZodString;
|
|
4135
|
+
file_name: z.ZodString;
|
|
4136
|
+
file_size: z.ZodNumber;
|
|
4137
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4138
|
+
}, z.core.$strip>;
|
|
4139
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4140
|
+
type: z.ZodLiteral<"forward">;
|
|
4141
|
+
data: z.ZodObject<{
|
|
4142
|
+
forward_id: z.ZodString;
|
|
4143
|
+
title: z.ZodString;
|
|
4144
|
+
preview: z.ZodArray<z.ZodString>;
|
|
4145
|
+
summary: z.ZodString;
|
|
4146
|
+
}, z.core.$strip>;
|
|
4147
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4148
|
+
type: z.ZodLiteral<"market_face">;
|
|
4149
|
+
data: z.ZodObject<{
|
|
4150
|
+
emoji_package_id: z.ZodNumber;
|
|
4151
|
+
emoji_id: z.ZodString;
|
|
4152
|
+
key: z.ZodString;
|
|
4153
|
+
summary: z.ZodString;
|
|
4154
|
+
url: z.ZodString;
|
|
4155
|
+
}, z.core.$strip>;
|
|
4156
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4157
|
+
type: z.ZodLiteral<"light_app">;
|
|
4158
|
+
data: z.ZodObject<{
|
|
4159
|
+
app_name: z.ZodString;
|
|
4160
|
+
json_payload: z.ZodString;
|
|
4161
|
+
}, z.core.$strip>;
|
|
4162
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4163
|
+
type: z.ZodLiteral<"xml">;
|
|
4164
|
+
data: z.ZodObject<{
|
|
4165
|
+
service_id: z.ZodNumber;
|
|
4166
|
+
xml_payload: z.ZodString;
|
|
4167
|
+
}, z.core.$strip>;
|
|
4168
|
+
}, z.core.$strip>], "type">>>>;
|
|
2687
4169
|
}, z.core.$strip>;
|
|
2688
4170
|
}, z.core.$strip>, z.ZodObject<{
|
|
2689
4171
|
type: z.ZodLiteral<"image">;
|
|
@@ -2751,7 +4233,7 @@ declare const GetHistoryMessagesOutput: z.ZodObject<{
|
|
|
2751
4233
|
service_id: z.ZodNumber;
|
|
2752
4234
|
xml_payload: z.ZodString;
|
|
2753
4235
|
}, z.core.$strip>;
|
|
2754
|
-
}, z.core.$strip>], "type"
|
|
4236
|
+
}, z.core.$strip>], "type">>>>;
|
|
2755
4237
|
group: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
2756
4238
|
group_id: z.ZodNumber;
|
|
2757
4239
|
group_name: z.ZodString;
|
|
@@ -2772,10 +4254,11 @@ declare const GetForwardedMessagesInput: z.ZodObject<{
|
|
|
2772
4254
|
}, z.core.$strip>;
|
|
2773
4255
|
declare const GetForwardedMessagesOutput: z.ZodObject<{
|
|
2774
4256
|
messages: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
4257
|
+
message_seq: z.ZodNumber;
|
|
2775
4258
|
sender_name: z.ZodString;
|
|
2776
4259
|
avatar_url: z.ZodString;
|
|
2777
4260
|
time: z.ZodNumber;
|
|
2778
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4261
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2779
4262
|
type: z.ZodLiteral<"text">;
|
|
2780
4263
|
data: z.ZodObject<{
|
|
2781
4264
|
text: z.ZodString;
|
|
@@ -2784,6 +4267,7 @@ declare const GetForwardedMessagesOutput: z.ZodObject<{
|
|
|
2784
4267
|
type: z.ZodLiteral<"mention">;
|
|
2785
4268
|
data: z.ZodObject<{
|
|
2786
4269
|
user_id: z.ZodNumber;
|
|
4270
|
+
name: z.ZodString;
|
|
2787
4271
|
}, z.core.$strip>;
|
|
2788
4272
|
}, z.core.$strip>, z.ZodObject<{
|
|
2789
4273
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -2798,6 +4282,96 @@ declare const GetForwardedMessagesOutput: z.ZodObject<{
|
|
|
2798
4282
|
type: z.ZodLiteral<"reply">;
|
|
2799
4283
|
data: z.ZodObject<{
|
|
2800
4284
|
message_seq: z.ZodNumber;
|
|
4285
|
+
sender_id: z.ZodNumber;
|
|
4286
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4287
|
+
time: z.ZodNumber;
|
|
4288
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4289
|
+
type: z.ZodLiteral<"text">;
|
|
4290
|
+
data: z.ZodObject<{
|
|
4291
|
+
text: z.ZodString;
|
|
4292
|
+
}, z.core.$strip>;
|
|
4293
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4294
|
+
type: z.ZodLiteral<"mention">;
|
|
4295
|
+
data: z.ZodObject<{
|
|
4296
|
+
user_id: z.ZodNumber;
|
|
4297
|
+
name: z.ZodString;
|
|
4298
|
+
}, z.core.$strip>;
|
|
4299
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4300
|
+
type: z.ZodLiteral<"mention_all">;
|
|
4301
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
4302
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4303
|
+
type: z.ZodLiteral<"face">;
|
|
4304
|
+
data: z.ZodObject<{
|
|
4305
|
+
face_id: z.ZodString;
|
|
4306
|
+
is_large: z.ZodBoolean;
|
|
4307
|
+
}, z.core.$strip>;
|
|
4308
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
4309
|
+
type: z.ZodLiteral<"image">;
|
|
4310
|
+
data: z.ZodObject<{
|
|
4311
|
+
resource_id: z.ZodString;
|
|
4312
|
+
temp_url: z.ZodString;
|
|
4313
|
+
width: z.ZodNumber;
|
|
4314
|
+
height: z.ZodNumber;
|
|
4315
|
+
summary: z.ZodString;
|
|
4316
|
+
sub_type: z.ZodEnum<{
|
|
4317
|
+
normal: "normal";
|
|
4318
|
+
sticker: "sticker";
|
|
4319
|
+
}>;
|
|
4320
|
+
}, z.core.$strip>;
|
|
4321
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4322
|
+
type: z.ZodLiteral<"record">;
|
|
4323
|
+
data: z.ZodObject<{
|
|
4324
|
+
resource_id: z.ZodString;
|
|
4325
|
+
temp_url: z.ZodString;
|
|
4326
|
+
duration: z.ZodNumber;
|
|
4327
|
+
}, z.core.$strip>;
|
|
4328
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4329
|
+
type: z.ZodLiteral<"video">;
|
|
4330
|
+
data: z.ZodObject<{
|
|
4331
|
+
resource_id: z.ZodString;
|
|
4332
|
+
temp_url: z.ZodString;
|
|
4333
|
+
width: z.ZodNumber;
|
|
4334
|
+
height: z.ZodNumber;
|
|
4335
|
+
duration: z.ZodNumber;
|
|
4336
|
+
}, z.core.$strip>;
|
|
4337
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4338
|
+
type: z.ZodLiteral<"file">;
|
|
4339
|
+
data: z.ZodObject<{
|
|
4340
|
+
file_id: z.ZodString;
|
|
4341
|
+
file_name: z.ZodString;
|
|
4342
|
+
file_size: z.ZodNumber;
|
|
4343
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4344
|
+
}, z.core.$strip>;
|
|
4345
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4346
|
+
type: z.ZodLiteral<"forward">;
|
|
4347
|
+
data: z.ZodObject<{
|
|
4348
|
+
forward_id: z.ZodString;
|
|
4349
|
+
title: z.ZodString;
|
|
4350
|
+
preview: z.ZodArray<z.ZodString>;
|
|
4351
|
+
summary: z.ZodString;
|
|
4352
|
+
}, z.core.$strip>;
|
|
4353
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4354
|
+
type: z.ZodLiteral<"market_face">;
|
|
4355
|
+
data: z.ZodObject<{
|
|
4356
|
+
emoji_package_id: z.ZodNumber;
|
|
4357
|
+
emoji_id: z.ZodString;
|
|
4358
|
+
key: z.ZodString;
|
|
4359
|
+
summary: z.ZodString;
|
|
4360
|
+
url: z.ZodString;
|
|
4361
|
+
}, z.core.$strip>;
|
|
4362
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4363
|
+
type: z.ZodLiteral<"light_app">;
|
|
4364
|
+
data: z.ZodObject<{
|
|
4365
|
+
app_name: z.ZodString;
|
|
4366
|
+
json_payload: z.ZodString;
|
|
4367
|
+
}, z.core.$strip>;
|
|
4368
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4369
|
+
type: z.ZodLiteral<"xml">;
|
|
4370
|
+
data: z.ZodObject<{
|
|
4371
|
+
service_id: z.ZodNumber;
|
|
4372
|
+
xml_payload: z.ZodString;
|
|
4373
|
+
}, z.core.$strip>;
|
|
4374
|
+
}, z.core.$strip>], "type">>>>;
|
|
2801
4375
|
}, z.core.$strip>;
|
|
2802
4376
|
}, z.core.$strip>, z.ZodObject<{
|
|
2803
4377
|
type: z.ZodLiteral<"image">;
|
|
@@ -2865,7 +4439,7 @@ declare const GetForwardedMessagesOutput: z.ZodObject<{
|
|
|
2865
4439
|
service_id: z.ZodNumber;
|
|
2866
4440
|
xml_payload: z.ZodString;
|
|
2867
4441
|
}, z.core.$strip>;
|
|
2868
|
-
}, z.core.$strip>], "type"
|
|
4442
|
+
}, z.core.$strip>], "type">>>>;
|
|
2869
4443
|
}, z.core.$strip>>>;
|
|
2870
4444
|
}, z.core.$strip>;
|
|
2871
4445
|
declare const MarkMessageAsReadInput: z.ZodObject<{
|
|
@@ -3019,7 +4593,7 @@ declare const GetGroupEssenceMessagesOutput: z.ZodObject<{
|
|
|
3019
4593
|
operator_id: z.ZodNumber;
|
|
3020
4594
|
operator_name: z.ZodString;
|
|
3021
4595
|
operation_time: z.ZodNumber;
|
|
3022
|
-
segments: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4596
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3023
4597
|
type: z.ZodLiteral<"text">;
|
|
3024
4598
|
data: z.ZodObject<{
|
|
3025
4599
|
text: z.ZodString;
|
|
@@ -3028,6 +4602,7 @@ declare const GetGroupEssenceMessagesOutput: z.ZodObject<{
|
|
|
3028
4602
|
type: z.ZodLiteral<"mention">;
|
|
3029
4603
|
data: z.ZodObject<{
|
|
3030
4604
|
user_id: z.ZodNumber;
|
|
4605
|
+
name: z.ZodString;
|
|
3031
4606
|
}, z.core.$strip>;
|
|
3032
4607
|
}, z.core.$strip>, z.ZodObject<{
|
|
3033
4608
|
type: z.ZodLiteral<"mention_all">;
|
|
@@ -3042,6 +4617,96 @@ declare const GetGroupEssenceMessagesOutput: z.ZodObject<{
|
|
|
3042
4617
|
type: z.ZodLiteral<"reply">;
|
|
3043
4618
|
data: z.ZodObject<{
|
|
3044
4619
|
message_seq: z.ZodNumber;
|
|
4620
|
+
sender_id: z.ZodNumber;
|
|
4621
|
+
sender_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4622
|
+
time: z.ZodNumber;
|
|
4623
|
+
segments: z.ZodArray<z.ZodLazy<z.ZodCatch<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4624
|
+
type: z.ZodLiteral<"text">;
|
|
4625
|
+
data: z.ZodObject<{
|
|
4626
|
+
text: z.ZodString;
|
|
4627
|
+
}, z.core.$strip>;
|
|
4628
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4629
|
+
type: z.ZodLiteral<"mention">;
|
|
4630
|
+
data: z.ZodObject<{
|
|
4631
|
+
user_id: z.ZodNumber;
|
|
4632
|
+
name: z.ZodString;
|
|
4633
|
+
}, z.core.$strip>;
|
|
4634
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4635
|
+
type: z.ZodLiteral<"mention_all">;
|
|
4636
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
4637
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4638
|
+
type: z.ZodLiteral<"face">;
|
|
4639
|
+
data: z.ZodObject<{
|
|
4640
|
+
face_id: z.ZodString;
|
|
4641
|
+
is_large: z.ZodBoolean;
|
|
4642
|
+
}, z.core.$strip>;
|
|
4643
|
+
}, z.core.$strip>, z.ZodObject< /*elided*/any, z.core.$strip>, z.ZodObject<{
|
|
4644
|
+
type: z.ZodLiteral<"image">;
|
|
4645
|
+
data: z.ZodObject<{
|
|
4646
|
+
resource_id: z.ZodString;
|
|
4647
|
+
temp_url: z.ZodString;
|
|
4648
|
+
width: z.ZodNumber;
|
|
4649
|
+
height: z.ZodNumber;
|
|
4650
|
+
summary: z.ZodString;
|
|
4651
|
+
sub_type: z.ZodEnum<{
|
|
4652
|
+
normal: "normal";
|
|
4653
|
+
sticker: "sticker";
|
|
4654
|
+
}>;
|
|
4655
|
+
}, z.core.$strip>;
|
|
4656
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4657
|
+
type: z.ZodLiteral<"record">;
|
|
4658
|
+
data: z.ZodObject<{
|
|
4659
|
+
resource_id: z.ZodString;
|
|
4660
|
+
temp_url: z.ZodString;
|
|
4661
|
+
duration: z.ZodNumber;
|
|
4662
|
+
}, z.core.$strip>;
|
|
4663
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4664
|
+
type: z.ZodLiteral<"video">;
|
|
4665
|
+
data: z.ZodObject<{
|
|
4666
|
+
resource_id: z.ZodString;
|
|
4667
|
+
temp_url: z.ZodString;
|
|
4668
|
+
width: z.ZodNumber;
|
|
4669
|
+
height: z.ZodNumber;
|
|
4670
|
+
duration: z.ZodNumber;
|
|
4671
|
+
}, z.core.$strip>;
|
|
4672
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4673
|
+
type: z.ZodLiteral<"file">;
|
|
4674
|
+
data: z.ZodObject<{
|
|
4675
|
+
file_id: z.ZodString;
|
|
4676
|
+
file_name: z.ZodString;
|
|
4677
|
+
file_size: z.ZodNumber;
|
|
4678
|
+
file_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4679
|
+
}, z.core.$strip>;
|
|
4680
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4681
|
+
type: z.ZodLiteral<"forward">;
|
|
4682
|
+
data: z.ZodObject<{
|
|
4683
|
+
forward_id: z.ZodString;
|
|
4684
|
+
title: z.ZodString;
|
|
4685
|
+
preview: z.ZodArray<z.ZodString>;
|
|
4686
|
+
summary: z.ZodString;
|
|
4687
|
+
}, z.core.$strip>;
|
|
4688
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4689
|
+
type: z.ZodLiteral<"market_face">;
|
|
4690
|
+
data: z.ZodObject<{
|
|
4691
|
+
emoji_package_id: z.ZodNumber;
|
|
4692
|
+
emoji_id: z.ZodString;
|
|
4693
|
+
key: z.ZodString;
|
|
4694
|
+
summary: z.ZodString;
|
|
4695
|
+
url: z.ZodString;
|
|
4696
|
+
}, z.core.$strip>;
|
|
4697
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4698
|
+
type: z.ZodLiteral<"light_app">;
|
|
4699
|
+
data: z.ZodObject<{
|
|
4700
|
+
app_name: z.ZodString;
|
|
4701
|
+
json_payload: z.ZodString;
|
|
4702
|
+
}, z.core.$strip>;
|
|
4703
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4704
|
+
type: z.ZodLiteral<"xml">;
|
|
4705
|
+
data: z.ZodObject<{
|
|
4706
|
+
service_id: z.ZodNumber;
|
|
4707
|
+
xml_payload: z.ZodString;
|
|
4708
|
+
}, z.core.$strip>;
|
|
4709
|
+
}, z.core.$strip>], "type">>>>;
|
|
3045
4710
|
}, z.core.$strip>;
|
|
3046
4711
|
}, z.core.$strip>, z.ZodObject<{
|
|
3047
4712
|
type: z.ZodLiteral<"image">;
|
|
@@ -3109,7 +4774,7 @@ declare const GetGroupEssenceMessagesOutput: z.ZodObject<{
|
|
|
3109
4774
|
service_id: z.ZodNumber;
|
|
3110
4775
|
xml_payload: z.ZodString;
|
|
3111
4776
|
}, z.core.$strip>;
|
|
3112
|
-
}, z.core.$strip>], "type"
|
|
4777
|
+
}, z.core.$strip>], "type">>>>;
|
|
3113
4778
|
}, z.core.$strip>>>;
|
|
3114
4779
|
is_end: z.ZodBoolean;
|
|
3115
4780
|
}, z.core.$strip>;
|
|
@@ -3125,6 +4790,10 @@ declare const SendGroupMessageReactionInput: z.ZodObject<{
|
|
|
3125
4790
|
group_id: z.ZodNumber;
|
|
3126
4791
|
message_seq: z.ZodNumber;
|
|
3127
4792
|
reaction: z.ZodString;
|
|
4793
|
+
reaction_type: z.ZodDefault<z.ZodEnum<{
|
|
4794
|
+
face: "face";
|
|
4795
|
+
emoji: "emoji";
|
|
4796
|
+
}>>;
|
|
3128
4797
|
is_add: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>, z.ZodTransform<boolean, boolean | null>>;
|
|
3129
4798
|
}, z.core.$strip>;
|
|
3130
4799
|
declare const SendGroupNudgeInput: z.ZodObject<{
|
|
@@ -3137,7 +4806,7 @@ declare const GetGroupNotificationsInput: z.ZodObject<{
|
|
|
3137
4806
|
limit: z.ZodPipe<z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>, z.ZodTransform<number, number | null>>;
|
|
3138
4807
|
}, z.core.$strip>;
|
|
3139
4808
|
declare const GetGroupNotificationsOutput: z.ZodObject<{
|
|
3140
|
-
notifications: z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4809
|
+
notifications: z.ZodPipe<z.ZodArray<z.ZodCatch<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3141
4810
|
type: z.ZodLiteral<"join_request">;
|
|
3142
4811
|
group_id: z.ZodNumber;
|
|
3143
4812
|
notification_seq: z.ZodNumber;
|
|
@@ -3182,7 +4851,7 @@ declare const GetGroupNotificationsOutput: z.ZodObject<{
|
|
|
3182
4851
|
ignored: "ignored";
|
|
3183
4852
|
}>;
|
|
3184
4853
|
operator_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3185
|
-
}, z.core.$strip>], "type">>>;
|
|
4854
|
+
}, z.core.$strip>], "type">>>>, z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3186
4855
|
next_notification_seq: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3187
4856
|
}, z.core.$strip>;
|
|
3188
4857
|
declare const AcceptGroupRequestInput: z.ZodObject<{
|
|
@@ -3351,8 +5020,8 @@ type DeleteGroupFolderInput = z.infer<typeof DeleteGroupFolderInput>;
|
|
|
3351
5020
|
declare const milkyPackageVersion: string;
|
|
3352
5021
|
declare const milkyVersion: string;
|
|
3353
5022
|
declare namespace index_d_exports {
|
|
3354
|
-
export { AcceptFriendRequestInput, AcceptGroupInvitationInput, AcceptGroupRequestInput, BotOfflineEvent, CreateGroupFolderInput, CreateGroupFolderOutput, DeleteFriendInput, DeleteGroupAnnouncementInput, DeleteGroupFileInput, DeleteGroupFolderInput, Event, FriendCategoryEntity, FriendEntity, FriendFileUploadEvent, FriendNudgeEvent, FriendRequest, FriendRequestEvent, GetCSRFTokenOutput, GetCookiesInput, GetCookiesOutput, GetCustomFaceUrlListOutput, GetForwardedMessagesInput, GetForwardedMessagesOutput, GetFriendInfoInput, GetFriendInfoOutput, GetFriendListInput, GetFriendListOutput, GetFriendRequestsInput, GetFriendRequestsOutput, GetGroupAnnouncementsInput, GetGroupAnnouncementsOutput, GetGroupEssenceMessagesInput, GetGroupEssenceMessagesOutput, GetGroupFileDownloadUrlInput, GetGroupFileDownloadUrlOutput, GetGroupFilesInput, GetGroupFilesOutput, GetGroupInfoInput, GetGroupInfoOutput, GetGroupListInput, GetGroupListOutput, GetGroupMemberInfoInput, GetGroupMemberInfoOutput, GetGroupMemberListInput, GetGroupMemberListOutput, GetGroupNotificationsInput, GetGroupNotificationsOutput, GetHistoryMessagesInput, GetHistoryMessagesOutput, GetImplInfoOutput, GetLoginInfoOutput, GetMessageInput, GetMessageOutput, GetPrivateFileDownloadUrlInput, GetPrivateFileDownloadUrlOutput, GetResourceTempUrlInput, GetResourceTempUrlOutput, GetUserProfileInput, GetUserProfileOutput, GroupAdminChangeEvent, GroupAnnouncementEntity, GroupEntity, GroupEssenceMessage, GroupEssenceMessageChangeEvent, GroupFileEntity, GroupFileUploadEvent, GroupFolderEntity, GroupInvitationEvent, GroupInvitedJoinRequestEvent, GroupJoinRequestEvent, GroupMemberDecreaseEvent, GroupMemberEntity, GroupMemberIncreaseEvent, GroupMessageReactionEvent, GroupMuteEvent, GroupNameChangeEvent, GroupNotification, GroupNudgeEvent, GroupWholeMuteEvent, IncomingForwardedMessage, IncomingMessage, IncomingResourceSegmentBase, IncomingSegment, KickGroupMemberInput, MarkMessageAsReadInput, MessageRecallEvent, MoveGroupFileInput, OutgoingForwardedMessage, OutgoingResourceSegmentBase, OutgoingSegment, QuitGroupInput, RecallGroupMessageInput, RecallPrivateMessageInput, RejectFriendRequestInput, RejectGroupInvitationInput, RejectGroupRequestInput, RenameGroupFileInput, RenameGroupFolderInput, SendFriendNudgeInput, SendGroupAnnouncementInput, SendGroupMessageInput, SendGroupMessageOutput, SendGroupMessageReactionInput, SendGroupNudgeInput, SendPrivateMessageInput, SendPrivateMessageOutput, SendProfileLikeInput, SetAvatarInput, SetBioInput, SetGroupAvatarInput, SetGroupEssenceMessageInput, SetGroupMemberAdminInput, SetGroupMemberCardInput, SetGroupMemberMuteInput, SetGroupMemberSpecialTitleInput, SetGroupNameInput, SetGroupWholeMuteInput, SetNicknameInput, UploadGroupFileInput, UploadGroupFileOutput, UploadPrivateFileInput, UploadPrivateFileOutput, ZBoolean, ZBooleanWithDefault, ZInt32, ZInt32WithDefault, ZInt64, ZInt64WithDefault, ZString, ZStringWithDefault, ZUin, milkyPackageVersion, milkyVersion };
|
|
5023
|
+
export { AcceptFriendRequestInput, AcceptGroupInvitationInput, AcceptGroupRequestInput, BotOfflineEvent, CreateGroupFolderInput, CreateGroupFolderOutput, DeleteFriendInput, DeleteGroupAnnouncementInput, DeleteGroupFileInput, DeleteGroupFolderInput, Event, FriendCategoryEntity, FriendEntity, FriendFileUploadEvent, FriendNudgeEvent, FriendRequest, FriendRequestEvent, GetCSRFTokenOutput, GetCookiesInput, GetCookiesOutput, GetCustomFaceUrlListOutput, GetForwardedMessagesInput, GetForwardedMessagesOutput, GetFriendInfoInput, GetFriendInfoOutput, GetFriendListInput, GetFriendListOutput, GetFriendRequestsInput, GetFriendRequestsOutput, GetGroupAnnouncementsInput, GetGroupAnnouncementsOutput, GetGroupEssenceMessagesInput, GetGroupEssenceMessagesOutput, GetGroupFileDownloadUrlInput, GetGroupFileDownloadUrlOutput, GetGroupFilesInput, GetGroupFilesOutput, GetGroupInfoInput, GetGroupInfoOutput, GetGroupListInput, GetGroupListOutput, GetGroupMemberInfoInput, GetGroupMemberInfoOutput, GetGroupMemberListInput, GetGroupMemberListOutput, GetGroupNotificationsInput, GetGroupNotificationsOutput, GetHistoryMessagesInput, GetHistoryMessagesOutput, GetImplInfoOutput, GetLoginInfoOutput, GetMessageInput, GetMessageOutput, GetPeerPinsOutput, GetPrivateFileDownloadUrlInput, GetPrivateFileDownloadUrlOutput, GetResourceTempUrlInput, GetResourceTempUrlOutput, GetUserProfileInput, GetUserProfileOutput, GroupAdminChangeEvent, GroupAnnouncementEntity, GroupEntity, GroupEssenceMessage, GroupEssenceMessageChangeEvent, GroupFileEntity, GroupFileUploadEvent, GroupFolderEntity, GroupInvitationEvent, GroupInvitedJoinRequestEvent, GroupJoinRequestEvent, GroupMemberDecreaseEvent, GroupMemberEntity, GroupMemberIncreaseEvent, GroupMessageReactionEvent, GroupMuteEvent, GroupNameChangeEvent, GroupNotification, GroupNudgeEvent, GroupWholeMuteEvent, IncomingForwardedMessage, IncomingMessage, IncomingResourceSegmentBase, IncomingSegment, KickGroupMemberInput, MarkMessageAsReadInput, MessageRecallEvent, MoveGroupFileInput, OutgoingForwardedMessage, OutgoingResourceSegmentBase, OutgoingSegment, PeerPinChangeEvent, QuitGroupInput, RecallGroupMessageInput, RecallPrivateMessageInput, RejectFriendRequestInput, RejectGroupInvitationInput, RejectGroupRequestInput, RenameGroupFileInput, RenameGroupFolderInput, SendFriendNudgeInput, SendGroupAnnouncementInput, SendGroupMessageInput, SendGroupMessageOutput, SendGroupMessageReactionInput, SendGroupNudgeInput, SendPrivateMessageInput, SendPrivateMessageOutput, SendProfileLikeInput, SetAvatarInput, SetBioInput, SetGroupAvatarInput, SetGroupEssenceMessageInput, SetGroupMemberAdminInput, SetGroupMemberCardInput, SetGroupMemberMuteInput, SetGroupMemberSpecialTitleInput, SetGroupNameInput, SetGroupWholeMuteInput, SetNicknameInput, SetPeerPinInput, UploadGroupFileInput, UploadGroupFileOutput, UploadPrivateFileInput, UploadPrivateFileOutput, ZBoolean, ZBooleanWithDefault, ZInt32, ZInt32WithDefault, ZInt64, ZInt64WithDefault, ZString, ZStringWithDefault, ZUin, milkyPackageVersion, milkyVersion };
|
|
3355
5024
|
}
|
|
3356
5025
|
//#endregion
|
|
3357
|
-
export { GetForwardedMessagesOutput as $,
|
|
3358
|
-
//# sourceMappingURL=index-
|
|
5026
|
+
export { GetForwardedMessagesOutput as $, GroupNameChangeEvent as $t, KickGroupMemberInput as A, GetLoginInfoOutput as At, SetGroupMemberCardInput as B, FriendFileUploadEvent as Bt, DeleteGroupAnnouncementInput as C, ZInt32 as Cn, GetGroupListInput as Ct, GetGroupEssenceMessagesOutput as D, ZString as Dn, GetGroupMemberListInput as Dt, GetGroupEssenceMessagesInput as E, ZInt64WithDefault as En, GetGroupMemberInfoOutput as Et, SendGroupMessageReactionInput as F, SetBioInput as Ft, AcceptFriendRequestInput as G, GroupFileUploadEvent as Gt, SetGroupMemberSpecialTitleInput as H, FriendRequestEvent as Ht, SendGroupNudgeInput as I, SetNicknameInput as It, GetFriendRequestsOutput as J, GroupJoinRequestEvent as Jt, DeleteFriendInput as K, GroupInvitationEvent as Kt, SetGroupAvatarInput as L, SetPeerPinInput as Lt, RejectGroupInvitationInput as M, GetUserProfileInput as Mt, RejectGroupRequestInput as N, GetUserProfileOutput as Nt, GetGroupNotificationsInput as O, ZStringWithDefault as On, GetGroupMemberListOutput as Ot, SendGroupAnnouncementInput as P, SetAvatarInput as Pt, GetForwardedMessagesInput as Q, GroupMuteEvent as Qt, SetGroupEssenceMessageInput as R, BotOfflineEvent as Rt, AcceptGroupRequestInput as S, ZBooleanWithDefault as Sn, GetGroupInfoOutput as St, GetGroupAnnouncementsOutput as T, ZInt64 as Tn, GetGroupMemberInfoInput as Tt, SetGroupNameInput as U, GroupAdminChangeEvent as Ut, SetGroupMemberMuteInput as V, FriendNudgeEvent as Vt, SetGroupWholeMuteInput as W, GroupEssenceMessageChangeEvent as Wt, SendFriendNudgeInput as X, GroupMemberIncreaseEvent as Xt, RejectFriendRequestInput as Y, GroupMemberDecreaseEvent as Yt, SendProfileLikeInput as Z, GroupMessageReactionEvent as Zt, UploadGroupFileInput as _, GroupFileEntity as _n, GetFriendInfoInput as _t, CreateGroupFolderOutput as a, IncomingForwardedMessage as an, GetResourceTempUrlOutput as at, UploadPrivateFileOutput as b, GroupNotification as bn, GetFriendListOutput as bt, GetGroupFileDownloadUrlInput as c, IncomingSegment as cn, RecallPrivateMessageInput as ct, GetGroupFilesOutput as d, OutgoingSegment as dn, SendPrivateMessageInput as dt, GroupNudgeEvent as en, GetHistoryMessagesInput as et, GetPrivateFileDownloadUrlInput as f, FriendCategoryEntity as fn, SendPrivateMessageOutput as ft, RenameGroupFolderInput as g, GroupEntity as gn, GetCustomFaceUrlListOutput as gt, RenameGroupFileInput as h, GroupAnnouncementEntity as hn, GetCookiesOutput as ht, CreateGroupFolderInput as i, GroupEssenceMessage as in, GetResourceTempUrlInput as it, QuitGroupInput as j, GetPeerPinsOutput as jt, GetGroupNotificationsOutput as k, ZUin as kn, GetImplInfoOutput as kt, GetGroupFileDownloadUrlOutput as l, OutgoingForwardedMessage as ln, SendGroupMessageInput as lt, MoveGroupFileInput as m, FriendRequest as mn, GetCookiesInput as mt, milkyPackageVersion as n, MessageRecallEvent as nn, GetMessageInput as nt, DeleteGroupFileInput as o, IncomingMessage as on, MarkMessageAsReadInput as ot, GetPrivateFileDownloadUrlOutput as p, FriendEntity as pn, GetCSRFTokenOutput as pt, GetFriendRequestsInput as q, GroupInvitedJoinRequestEvent as qt, milkyVersion as r, PeerPinChangeEvent as rn, GetMessageOutput as rt, DeleteGroupFolderInput as s, IncomingResourceSegmentBase as sn, RecallGroupMessageInput as st, index_d_exports as t, GroupWholeMuteEvent as tn, GetHistoryMessagesOutput as tt, GetGroupFilesInput as u, OutgoingResourceSegmentBase as un, SendGroupMessageOutput as ut, UploadGroupFileOutput as v, GroupFolderEntity as vn, GetFriendInfoOutput as vt, GetGroupAnnouncementsInput as w, ZInt32WithDefault as wn, GetGroupListOutput as wt, AcceptGroupInvitationInput as x, ZBoolean as xn, GetGroupInfoInput as xt, UploadPrivateFileInput as y, GroupMemberEntity as yn, GetFriendListInput as yt, SetGroupMemberAdminInput as z, Event as zt };
|
|
5027
|
+
//# sourceMappingURL=index-CH_fdLPN.d.mts.map
|