@llun/activities.schema 0.0.9 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/dist/mastodon/filter/index.d.ts +62 -0
  2. package/dist/mastodon/filter/index.js +24 -0
  3. package/dist/mastodon/filter/keyword.d.ts +15 -0
  4. package/dist/mastodon/filter/keyword.js +9 -0
  5. package/dist/mastodon/filter/status.d.ts +12 -0
  6. package/dist/mastodon/filter/status.js +8 -0
  7. package/dist/mastodon/filterResult.d.ts +104 -0
  8. package/dist/mastodon/filterResult.js +16 -0
  9. package/dist/mastodon/index.d.ts +6 -0
  10. package/dist/mastodon/index.js +6 -0
  11. package/dist/mastodon/mediaAttachment/audio.d.ts +87 -0
  12. package/dist/mastodon/mediaAttachment/audio.js +17 -0
  13. package/dist/mastodon/mediaAttachment/base.d.ts +24 -0
  14. package/dist/mastodon/mediaAttachment/base.js +26 -0
  15. package/dist/mastodon/mediaAttachment/gifv.d.ts +158 -0
  16. package/dist/mastodon/mediaAttachment/gifv.js +37 -0
  17. package/dist/mastodon/mediaAttachment/image.d.ts +142 -0
  18. package/dist/mastodon/mediaAttachment/image.js +30 -0
  19. package/dist/mastodon/mediaAttachment/index.d.ts +576 -0
  20. package/dist/mastodon/mediaAttachment/index.js +8 -0
  21. package/dist/mastodon/mediaAttachment/unknown.d.ts +28 -0
  22. package/dist/mastodon/mediaAttachment/unknown.js +8 -0
  23. package/dist/mastodon/mediaAttachment/video.d.ts +173 -0
  24. package/dist/mastodon/mediaAttachment/video.js +38 -0
  25. package/dist/mastodon/poll/index.d.ts +81 -0
  26. package/dist/mastodon/poll/index.js +27 -0
  27. package/dist/mastodon/poll/option.d.ts +12 -0
  28. package/dist/mastodon/poll/option.js +10 -0
  29. package/dist/mastodon/previewCard.d.ts +48 -0
  30. package/dist/mastodon/previewCard.js +34 -0
  31. package/dist/mastodon/status/application.d.ts +12 -0
  32. package/dist/mastodon/status/application.js +12 -0
  33. package/dist/mastodon/status/base.d.ts +1738 -0
  34. package/dist/mastodon/status/base.js +96 -0
  35. package/dist/mastodon/status/index.d.ts +4035 -0
  36. package/dist/mastodon/status/index.js +4 -0
  37. package/dist/mastodon/status/mention.d.ts +18 -0
  38. package/dist/mastodon/status/mention.js +12 -0
  39. package/dist/mastodon/status/tag.d.ts +12 -0
  40. package/dist/mastodon/status/tag.js +10 -0
  41. package/dist/mastodon/status/visibility.d.ts +3 -0
  42. package/dist/mastodon/status/visibility.js +3 -0
  43. package/package.json +2 -2
  44. package/readme.md +1 -1
  45. package/src/mastodon/filter/index.ts +31 -0
  46. package/src/mastodon/filter/keyword.ts +12 -0
  47. package/src/mastodon/filter/status.ts +10 -0
  48. package/src/mastodon/filterResult.ts +18 -0
  49. package/src/mastodon/index.ts +7 -0
  50. package/src/mastodon/mediaAttachment/audio.ts +19 -0
  51. package/src/mastodon/mediaAttachment/base.ts +34 -0
  52. package/src/mastodon/mediaAttachment/gifv.ts +41 -0
  53. package/src/mastodon/mediaAttachment/image.ts +32 -0
  54. package/src/mastodon/mediaAttachment/index.ts +10 -0
  55. package/src/mastodon/mediaAttachment/unknown.ts +12 -0
  56. package/src/mastodon/mediaAttachment/video.ts +43 -0
  57. package/src/mastodon/poll/index.ts +35 -0
  58. package/src/mastodon/poll/option.ts +13 -0
  59. package/src/mastodon/previewCard.ts +41 -0
  60. package/src/mastodon/status/application.ts +15 -0
  61. package/src/mastodon/status/base.ts +125 -0
  62. package/src/mastodon/status/index.ts +8 -0
  63. package/src/mastodon/status/mention.ts +15 -0
  64. package/src/mastodon/status/tag.ts +12 -0
  65. package/src/mastodon/status/visibility.ts +5 -0
@@ -0,0 +1,4035 @@
1
+ import { z } from "zod";
2
+ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3
+ id: z.ZodString;
4
+ uri: z.ZodString;
5
+ account: z.ZodObject<z.objectUtil.extendShape<{
6
+ id: z.ZodString;
7
+ username: z.ZodString;
8
+ acct: z.ZodString;
9
+ url: z.ZodString;
10
+ display_name: z.ZodString;
11
+ note: z.ZodString;
12
+ avatar: z.ZodString;
13
+ avatar_static: z.ZodString;
14
+ header: z.ZodString;
15
+ header_static: z.ZodString;
16
+ loacked: z.ZodString;
17
+ fields: z.ZodArray<z.ZodObject<{
18
+ name: z.ZodString;
19
+ value: z.ZodString;
20
+ verified_at: z.ZodNullable<z.ZodString>;
21
+ }, "strip", z.ZodTypeAny, {
22
+ value: string;
23
+ name: string;
24
+ verified_at: string | null;
25
+ }, {
26
+ value: string;
27
+ name: string;
28
+ verified_at: string | null;
29
+ }>, "many">;
30
+ emojis: z.ZodArray<z.ZodObject<{
31
+ shortcode: z.ZodString;
32
+ static_url: z.ZodString;
33
+ url: z.ZodString;
34
+ visible_in_picker: z.ZodBoolean;
35
+ category: z.ZodNullable<z.ZodString>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ url: string;
38
+ shortcode: string;
39
+ static_url: string;
40
+ visible_in_picker: boolean;
41
+ category: string | null;
42
+ }, {
43
+ url: string;
44
+ shortcode: string;
45
+ static_url: string;
46
+ visible_in_picker: boolean;
47
+ category: string | null;
48
+ }>, "many">;
49
+ bot: z.ZodBoolean;
50
+ group: z.ZodBoolean;
51
+ discoverable: z.ZodNullable<z.ZodBoolean>;
52
+ noindex: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
53
+ suspended: z.ZodOptional<z.ZodBoolean>;
54
+ limited: z.ZodOptional<z.ZodBoolean>;
55
+ created_at: z.ZodString;
56
+ last_status_at: z.ZodNullable<z.ZodString>;
57
+ statuses_count: z.ZodNumber;
58
+ followers_count: z.ZodNumber;
59
+ following_count: z.ZodNumber;
60
+ }, {
61
+ moved: z.ZodNullable<z.ZodObject<{
62
+ id: z.ZodString;
63
+ username: z.ZodString;
64
+ acct: z.ZodString;
65
+ url: z.ZodString;
66
+ display_name: z.ZodString;
67
+ note: z.ZodString;
68
+ avatar: z.ZodString;
69
+ avatar_static: z.ZodString;
70
+ header: z.ZodString;
71
+ header_static: z.ZodString;
72
+ loacked: z.ZodString;
73
+ fields: z.ZodArray<z.ZodObject<{
74
+ name: z.ZodString;
75
+ value: z.ZodString;
76
+ verified_at: z.ZodNullable<z.ZodString>;
77
+ }, "strip", z.ZodTypeAny, {
78
+ value: string;
79
+ name: string;
80
+ verified_at: string | null;
81
+ }, {
82
+ value: string;
83
+ name: string;
84
+ verified_at: string | null;
85
+ }>, "many">;
86
+ emojis: z.ZodArray<z.ZodObject<{
87
+ shortcode: z.ZodString;
88
+ static_url: z.ZodString;
89
+ url: z.ZodString;
90
+ visible_in_picker: z.ZodBoolean;
91
+ category: z.ZodNullable<z.ZodString>;
92
+ }, "strip", z.ZodTypeAny, {
93
+ url: string;
94
+ shortcode: string;
95
+ static_url: string;
96
+ visible_in_picker: boolean;
97
+ category: string | null;
98
+ }, {
99
+ url: string;
100
+ shortcode: string;
101
+ static_url: string;
102
+ visible_in_picker: boolean;
103
+ category: string | null;
104
+ }>, "many">;
105
+ bot: z.ZodBoolean;
106
+ group: z.ZodBoolean;
107
+ discoverable: z.ZodNullable<z.ZodBoolean>;
108
+ noindex: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
109
+ suspended: z.ZodOptional<z.ZodBoolean>;
110
+ limited: z.ZodOptional<z.ZodBoolean>;
111
+ created_at: z.ZodString;
112
+ last_status_at: z.ZodNullable<z.ZodString>;
113
+ statuses_count: z.ZodNumber;
114
+ followers_count: z.ZodNumber;
115
+ following_count: z.ZodNumber;
116
+ }, "strip", z.ZodTypeAny, {
117
+ id: string;
118
+ url: string;
119
+ username: string;
120
+ acct: string;
121
+ display_name: string;
122
+ note: string;
123
+ avatar: string;
124
+ avatar_static: string;
125
+ header: string;
126
+ header_static: string;
127
+ loacked: string;
128
+ fields: {
129
+ value: string;
130
+ name: string;
131
+ verified_at: string | null;
132
+ }[];
133
+ emojis: {
134
+ url: string;
135
+ shortcode: string;
136
+ static_url: string;
137
+ visible_in_picker: boolean;
138
+ category: string | null;
139
+ }[];
140
+ bot: boolean;
141
+ group: boolean;
142
+ discoverable: boolean | null;
143
+ created_at: string;
144
+ last_status_at: string | null;
145
+ statuses_count: number;
146
+ followers_count: number;
147
+ following_count: number;
148
+ noindex?: boolean | null | undefined;
149
+ suspended?: boolean | undefined;
150
+ limited?: boolean | undefined;
151
+ }, {
152
+ id: string;
153
+ url: string;
154
+ username: string;
155
+ acct: string;
156
+ display_name: string;
157
+ note: string;
158
+ avatar: string;
159
+ avatar_static: string;
160
+ header: string;
161
+ header_static: string;
162
+ loacked: string;
163
+ fields: {
164
+ value: string;
165
+ name: string;
166
+ verified_at: string | null;
167
+ }[];
168
+ emojis: {
169
+ url: string;
170
+ shortcode: string;
171
+ static_url: string;
172
+ visible_in_picker: boolean;
173
+ category: string | null;
174
+ }[];
175
+ bot: boolean;
176
+ group: boolean;
177
+ discoverable: boolean | null;
178
+ created_at: string;
179
+ last_status_at: string | null;
180
+ statuses_count: number;
181
+ followers_count: number;
182
+ following_count: number;
183
+ noindex?: boolean | null | undefined;
184
+ suspended?: boolean | undefined;
185
+ limited?: boolean | undefined;
186
+ }>>;
187
+ }>, "strip", z.ZodTypeAny, {
188
+ id: string;
189
+ url: string;
190
+ username: string;
191
+ acct: string;
192
+ display_name: string;
193
+ note: string;
194
+ avatar: string;
195
+ avatar_static: string;
196
+ header: string;
197
+ header_static: string;
198
+ loacked: string;
199
+ fields: {
200
+ value: string;
201
+ name: string;
202
+ verified_at: string | null;
203
+ }[];
204
+ emojis: {
205
+ url: string;
206
+ shortcode: string;
207
+ static_url: string;
208
+ visible_in_picker: boolean;
209
+ category: string | null;
210
+ }[];
211
+ bot: boolean;
212
+ group: boolean;
213
+ discoverable: boolean | null;
214
+ created_at: string;
215
+ last_status_at: string | null;
216
+ statuses_count: number;
217
+ followers_count: number;
218
+ following_count: number;
219
+ moved: {
220
+ id: string;
221
+ url: string;
222
+ username: string;
223
+ acct: string;
224
+ display_name: string;
225
+ note: string;
226
+ avatar: string;
227
+ avatar_static: string;
228
+ header: string;
229
+ header_static: string;
230
+ loacked: string;
231
+ fields: {
232
+ value: string;
233
+ name: string;
234
+ verified_at: string | null;
235
+ }[];
236
+ emojis: {
237
+ url: string;
238
+ shortcode: string;
239
+ static_url: string;
240
+ visible_in_picker: boolean;
241
+ category: string | null;
242
+ }[];
243
+ bot: boolean;
244
+ group: boolean;
245
+ discoverable: boolean | null;
246
+ created_at: string;
247
+ last_status_at: string | null;
248
+ statuses_count: number;
249
+ followers_count: number;
250
+ following_count: number;
251
+ noindex?: boolean | null | undefined;
252
+ suspended?: boolean | undefined;
253
+ limited?: boolean | undefined;
254
+ } | null;
255
+ noindex?: boolean | null | undefined;
256
+ suspended?: boolean | undefined;
257
+ limited?: boolean | undefined;
258
+ }, {
259
+ id: string;
260
+ url: string;
261
+ username: string;
262
+ acct: string;
263
+ display_name: string;
264
+ note: string;
265
+ avatar: string;
266
+ avatar_static: string;
267
+ header: string;
268
+ header_static: string;
269
+ loacked: string;
270
+ fields: {
271
+ value: string;
272
+ name: string;
273
+ verified_at: string | null;
274
+ }[];
275
+ emojis: {
276
+ url: string;
277
+ shortcode: string;
278
+ static_url: string;
279
+ visible_in_picker: boolean;
280
+ category: string | null;
281
+ }[];
282
+ bot: boolean;
283
+ group: boolean;
284
+ discoverable: boolean | null;
285
+ created_at: string;
286
+ last_status_at: string | null;
287
+ statuses_count: number;
288
+ followers_count: number;
289
+ following_count: number;
290
+ moved: {
291
+ id: string;
292
+ url: string;
293
+ username: string;
294
+ acct: string;
295
+ display_name: string;
296
+ note: string;
297
+ avatar: string;
298
+ avatar_static: string;
299
+ header: string;
300
+ header_static: string;
301
+ loacked: string;
302
+ fields: {
303
+ value: string;
304
+ name: string;
305
+ verified_at: string | null;
306
+ }[];
307
+ emojis: {
308
+ url: string;
309
+ shortcode: string;
310
+ static_url: string;
311
+ visible_in_picker: boolean;
312
+ category: string | null;
313
+ }[];
314
+ bot: boolean;
315
+ group: boolean;
316
+ discoverable: boolean | null;
317
+ created_at: string;
318
+ last_status_at: string | null;
319
+ statuses_count: number;
320
+ followers_count: number;
321
+ following_count: number;
322
+ noindex?: boolean | null | undefined;
323
+ suspended?: boolean | undefined;
324
+ limited?: boolean | undefined;
325
+ } | null;
326
+ noindex?: boolean | null | undefined;
327
+ suspended?: boolean | undefined;
328
+ limited?: boolean | undefined;
329
+ }>;
330
+ content: z.ZodString;
331
+ visibility: z.ZodEnum<["public", "unlist", "private", "direct"]>;
332
+ sensitive: z.ZodBoolean;
333
+ spoiler_text: z.ZodString;
334
+ media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
335
+ id: z.ZodString;
336
+ url: z.ZodString;
337
+ preview_url: z.ZodString;
338
+ remote_url: z.ZodNullable<z.ZodString>;
339
+ description: z.ZodNullable<z.ZodString>;
340
+ bluehash: z.ZodString;
341
+ }, {
342
+ type: z.ZodLiteral<"image">;
343
+ meta: z.ZodObject<{
344
+ original: z.ZodObject<{
345
+ width: z.ZodNumber;
346
+ height: z.ZodNumber;
347
+ size: z.ZodString;
348
+ aspect: z.ZodNumber;
349
+ }, "strip", z.ZodTypeAny, {
350
+ width: number;
351
+ height: number;
352
+ size: string;
353
+ aspect: number;
354
+ }, {
355
+ width: number;
356
+ height: number;
357
+ size: string;
358
+ aspect: number;
359
+ }>;
360
+ small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
361
+ width: z.ZodNumber;
362
+ height: z.ZodNumber;
363
+ size: z.ZodString;
364
+ aspect: z.ZodNumber;
365
+ }, "strip", z.ZodTypeAny, {
366
+ width: number;
367
+ height: number;
368
+ size: string;
369
+ aspect: number;
370
+ }, {
371
+ width: number;
372
+ height: number;
373
+ size: string;
374
+ aspect: number;
375
+ }>>>;
376
+ focus: z.ZodOptional<z.ZodNullable<z.ZodObject<{
377
+ x: z.ZodNumber;
378
+ y: z.ZodNumber;
379
+ }, "strip", z.ZodTypeAny, {
380
+ x: number;
381
+ y: number;
382
+ }, {
383
+ x: number;
384
+ y: number;
385
+ }>>>;
386
+ }, "strip", z.ZodTypeAny, {
387
+ original: {
388
+ width: number;
389
+ height: number;
390
+ size: string;
391
+ aspect: number;
392
+ };
393
+ small?: {
394
+ width: number;
395
+ height: number;
396
+ size: string;
397
+ aspect: number;
398
+ } | null | undefined;
399
+ focus?: {
400
+ x: number;
401
+ y: number;
402
+ } | null | undefined;
403
+ }, {
404
+ original: {
405
+ width: number;
406
+ height: number;
407
+ size: string;
408
+ aspect: number;
409
+ };
410
+ small?: {
411
+ width: number;
412
+ height: number;
413
+ size: string;
414
+ aspect: number;
415
+ } | null | undefined;
416
+ focus?: {
417
+ x: number;
418
+ y: number;
419
+ } | null | undefined;
420
+ }>;
421
+ }>, "strip", z.ZodTypeAny, {
422
+ id: string;
423
+ type: "image";
424
+ url: string;
425
+ description: string | null;
426
+ preview_url: string;
427
+ remote_url: string | null;
428
+ bluehash: string;
429
+ meta: {
430
+ original: {
431
+ width: number;
432
+ height: number;
433
+ size: string;
434
+ aspect: number;
435
+ };
436
+ small?: {
437
+ width: number;
438
+ height: number;
439
+ size: string;
440
+ aspect: number;
441
+ } | null | undefined;
442
+ focus?: {
443
+ x: number;
444
+ y: number;
445
+ } | null | undefined;
446
+ };
447
+ }, {
448
+ id: string;
449
+ type: "image";
450
+ url: string;
451
+ description: string | null;
452
+ preview_url: string;
453
+ remote_url: string | null;
454
+ bluehash: string;
455
+ meta: {
456
+ original: {
457
+ width: number;
458
+ height: number;
459
+ size: string;
460
+ aspect: number;
461
+ };
462
+ small?: {
463
+ width: number;
464
+ height: number;
465
+ size: string;
466
+ aspect: number;
467
+ } | null | undefined;
468
+ focus?: {
469
+ x: number;
470
+ y: number;
471
+ } | null | undefined;
472
+ };
473
+ }>, z.ZodObject<z.objectUtil.extendShape<{
474
+ id: z.ZodString;
475
+ url: z.ZodString;
476
+ preview_url: z.ZodString;
477
+ remote_url: z.ZodNullable<z.ZodString>;
478
+ description: z.ZodNullable<z.ZodString>;
479
+ bluehash: z.ZodString;
480
+ }, {
481
+ type: z.ZodLiteral<"gifv">;
482
+ meta: z.ZodObject<{
483
+ length: z.ZodString;
484
+ duration: z.ZodNumber;
485
+ fps: z.ZodNumber;
486
+ size: z.ZodString;
487
+ width: z.ZodNumber;
488
+ height: z.ZodNumber;
489
+ aspect: z.ZodNumber;
490
+ original: z.ZodObject<{
491
+ width: z.ZodNumber;
492
+ height: z.ZodNumber;
493
+ frame_rate: z.ZodString;
494
+ duration: z.ZodNumber;
495
+ bitrate: z.ZodNumber;
496
+ }, "strip", z.ZodTypeAny, {
497
+ width: number;
498
+ height: number;
499
+ duration: number;
500
+ frame_rate: string;
501
+ bitrate: number;
502
+ }, {
503
+ width: number;
504
+ height: number;
505
+ duration: number;
506
+ frame_rate: string;
507
+ bitrate: number;
508
+ }>;
509
+ small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
510
+ width: z.ZodNumber;
511
+ height: z.ZodNumber;
512
+ size: z.ZodString;
513
+ aspect: z.ZodNumber;
514
+ }, "strip", z.ZodTypeAny, {
515
+ width: number;
516
+ height: number;
517
+ size: string;
518
+ aspect: number;
519
+ }, {
520
+ width: number;
521
+ height: number;
522
+ size: string;
523
+ aspect: number;
524
+ }>>>;
525
+ }, "strip", z.ZodTypeAny, {
526
+ length: string;
527
+ width: number;
528
+ height: number;
529
+ duration: number;
530
+ fps: number;
531
+ size: string;
532
+ aspect: number;
533
+ original: {
534
+ width: number;
535
+ height: number;
536
+ duration: number;
537
+ frame_rate: string;
538
+ bitrate: number;
539
+ };
540
+ small?: {
541
+ width: number;
542
+ height: number;
543
+ size: string;
544
+ aspect: number;
545
+ } | null | undefined;
546
+ }, {
547
+ length: string;
548
+ width: number;
549
+ height: number;
550
+ duration: number;
551
+ fps: number;
552
+ size: string;
553
+ aspect: number;
554
+ original: {
555
+ width: number;
556
+ height: number;
557
+ duration: number;
558
+ frame_rate: string;
559
+ bitrate: number;
560
+ };
561
+ small?: {
562
+ width: number;
563
+ height: number;
564
+ size: string;
565
+ aspect: number;
566
+ } | null | undefined;
567
+ }>;
568
+ }>, "strip", z.ZodTypeAny, {
569
+ id: string;
570
+ type: "gifv";
571
+ url: string;
572
+ description: string | null;
573
+ preview_url: string;
574
+ remote_url: string | null;
575
+ bluehash: string;
576
+ meta: {
577
+ length: string;
578
+ width: number;
579
+ height: number;
580
+ duration: number;
581
+ fps: number;
582
+ size: string;
583
+ aspect: number;
584
+ original: {
585
+ width: number;
586
+ height: number;
587
+ duration: number;
588
+ frame_rate: string;
589
+ bitrate: number;
590
+ };
591
+ small?: {
592
+ width: number;
593
+ height: number;
594
+ size: string;
595
+ aspect: number;
596
+ } | null | undefined;
597
+ };
598
+ }, {
599
+ id: string;
600
+ type: "gifv";
601
+ url: string;
602
+ description: string | null;
603
+ preview_url: string;
604
+ remote_url: string | null;
605
+ bluehash: string;
606
+ meta: {
607
+ length: string;
608
+ width: number;
609
+ height: number;
610
+ duration: number;
611
+ fps: number;
612
+ size: string;
613
+ aspect: number;
614
+ original: {
615
+ width: number;
616
+ height: number;
617
+ duration: number;
618
+ frame_rate: string;
619
+ bitrate: number;
620
+ };
621
+ small?: {
622
+ width: number;
623
+ height: number;
624
+ size: string;
625
+ aspect: number;
626
+ } | null | undefined;
627
+ };
628
+ }>, z.ZodObject<z.objectUtil.extendShape<{
629
+ id: z.ZodString;
630
+ url: z.ZodString;
631
+ preview_url: z.ZodString;
632
+ remote_url: z.ZodNullable<z.ZodString>;
633
+ description: z.ZodNullable<z.ZodString>;
634
+ bluehash: z.ZodString;
635
+ }, {
636
+ type: z.ZodLiteral<"video">;
637
+ meta: z.ZodObject<{
638
+ length: z.ZodString;
639
+ duration: z.ZodNumber;
640
+ fps: z.ZodNumber;
641
+ size: z.ZodString;
642
+ width: z.ZodNumber;
643
+ height: z.ZodNumber;
644
+ aspect: z.ZodNumber;
645
+ audio_encode: z.ZodString;
646
+ audio_bitrate: z.ZodString;
647
+ audio_channels: z.ZodString;
648
+ original: z.ZodObject<{
649
+ width: z.ZodNumber;
650
+ height: z.ZodNumber;
651
+ frame_rate: z.ZodString;
652
+ duration: z.ZodNumber;
653
+ bitrate: z.ZodNumber;
654
+ }, "strip", z.ZodTypeAny, {
655
+ width: number;
656
+ height: number;
657
+ duration: number;
658
+ frame_rate: string;
659
+ bitrate: number;
660
+ }, {
661
+ width: number;
662
+ height: number;
663
+ duration: number;
664
+ frame_rate: string;
665
+ bitrate: number;
666
+ }>;
667
+ small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
668
+ width: z.ZodNumber;
669
+ height: z.ZodNumber;
670
+ size: z.ZodString;
671
+ aspect: z.ZodNumber;
672
+ }, "strip", z.ZodTypeAny, {
673
+ width: number;
674
+ height: number;
675
+ size: string;
676
+ aspect: number;
677
+ }, {
678
+ width: number;
679
+ height: number;
680
+ size: string;
681
+ aspect: number;
682
+ }>>>;
683
+ }, "strip", z.ZodTypeAny, {
684
+ length: string;
685
+ width: number;
686
+ height: number;
687
+ duration: number;
688
+ fps: number;
689
+ size: string;
690
+ aspect: number;
691
+ original: {
692
+ width: number;
693
+ height: number;
694
+ duration: number;
695
+ frame_rate: string;
696
+ bitrate: number;
697
+ };
698
+ audio_encode: string;
699
+ audio_bitrate: string;
700
+ audio_channels: string;
701
+ small?: {
702
+ width: number;
703
+ height: number;
704
+ size: string;
705
+ aspect: number;
706
+ } | null | undefined;
707
+ }, {
708
+ length: string;
709
+ width: number;
710
+ height: number;
711
+ duration: number;
712
+ fps: number;
713
+ size: string;
714
+ aspect: number;
715
+ original: {
716
+ width: number;
717
+ height: number;
718
+ duration: number;
719
+ frame_rate: string;
720
+ bitrate: number;
721
+ };
722
+ audio_encode: string;
723
+ audio_bitrate: string;
724
+ audio_channels: string;
725
+ small?: {
726
+ width: number;
727
+ height: number;
728
+ size: string;
729
+ aspect: number;
730
+ } | null | undefined;
731
+ }>;
732
+ }>, "strip", z.ZodTypeAny, {
733
+ id: string;
734
+ type: "video";
735
+ url: string;
736
+ description: string | null;
737
+ preview_url: string;
738
+ remote_url: string | null;
739
+ bluehash: string;
740
+ meta: {
741
+ length: string;
742
+ width: number;
743
+ height: number;
744
+ duration: number;
745
+ fps: number;
746
+ size: string;
747
+ aspect: number;
748
+ original: {
749
+ width: number;
750
+ height: number;
751
+ duration: number;
752
+ frame_rate: string;
753
+ bitrate: number;
754
+ };
755
+ audio_encode: string;
756
+ audio_bitrate: string;
757
+ audio_channels: string;
758
+ small?: {
759
+ width: number;
760
+ height: number;
761
+ size: string;
762
+ aspect: number;
763
+ } | null | undefined;
764
+ };
765
+ }, {
766
+ id: string;
767
+ type: "video";
768
+ url: string;
769
+ description: string | null;
770
+ preview_url: string;
771
+ remote_url: string | null;
772
+ bluehash: string;
773
+ meta: {
774
+ length: string;
775
+ width: number;
776
+ height: number;
777
+ duration: number;
778
+ fps: number;
779
+ size: string;
780
+ aspect: number;
781
+ original: {
782
+ width: number;
783
+ height: number;
784
+ duration: number;
785
+ frame_rate: string;
786
+ bitrate: number;
787
+ };
788
+ audio_encode: string;
789
+ audio_bitrate: string;
790
+ audio_channels: string;
791
+ small?: {
792
+ width: number;
793
+ height: number;
794
+ size: string;
795
+ aspect: number;
796
+ } | null | undefined;
797
+ };
798
+ }>, z.ZodObject<z.objectUtil.extendShape<{
799
+ id: z.ZodString;
800
+ url: z.ZodString;
801
+ preview_url: z.ZodString;
802
+ remote_url: z.ZodNullable<z.ZodString>;
803
+ description: z.ZodNullable<z.ZodString>;
804
+ bluehash: z.ZodString;
805
+ }, {
806
+ type: z.ZodLiteral<"audio">;
807
+ meta: z.ZodObject<{
808
+ length: z.ZodString;
809
+ duration: z.ZodNumber;
810
+ audio_encode: z.ZodString;
811
+ audio_bitrate: z.ZodString;
812
+ audio_channels: z.ZodString;
813
+ original: z.ZodObject<{
814
+ duration: z.ZodNumber;
815
+ bitrate: z.ZodNumber;
816
+ }, "strip", z.ZodTypeAny, {
817
+ duration: number;
818
+ bitrate: number;
819
+ }, {
820
+ duration: number;
821
+ bitrate: number;
822
+ }>;
823
+ }, "strip", z.ZodTypeAny, {
824
+ length: string;
825
+ duration: number;
826
+ original: {
827
+ duration: number;
828
+ bitrate: number;
829
+ };
830
+ audio_encode: string;
831
+ audio_bitrate: string;
832
+ audio_channels: string;
833
+ }, {
834
+ length: string;
835
+ duration: number;
836
+ original: {
837
+ duration: number;
838
+ bitrate: number;
839
+ };
840
+ audio_encode: string;
841
+ audio_bitrate: string;
842
+ audio_channels: string;
843
+ }>;
844
+ }>, "strip", z.ZodTypeAny, {
845
+ id: string;
846
+ type: "audio";
847
+ url: string;
848
+ description: string | null;
849
+ preview_url: string;
850
+ remote_url: string | null;
851
+ bluehash: string;
852
+ meta: {
853
+ length: string;
854
+ duration: number;
855
+ original: {
856
+ duration: number;
857
+ bitrate: number;
858
+ };
859
+ audio_encode: string;
860
+ audio_bitrate: string;
861
+ audio_channels: string;
862
+ };
863
+ }, {
864
+ id: string;
865
+ type: "audio";
866
+ url: string;
867
+ description: string | null;
868
+ preview_url: string;
869
+ remote_url: string | null;
870
+ bluehash: string;
871
+ meta: {
872
+ length: string;
873
+ duration: number;
874
+ original: {
875
+ duration: number;
876
+ bitrate: number;
877
+ };
878
+ audio_encode: string;
879
+ audio_bitrate: string;
880
+ audio_channels: string;
881
+ };
882
+ }>, z.ZodObject<z.objectUtil.extendShape<{
883
+ id: z.ZodString;
884
+ url: z.ZodString;
885
+ preview_url: z.ZodString;
886
+ remote_url: z.ZodNullable<z.ZodString>;
887
+ description: z.ZodNullable<z.ZodString>;
888
+ bluehash: z.ZodString;
889
+ }, {
890
+ type: z.ZodLiteral<"unknown">;
891
+ }>, "strip", z.ZodTypeAny, {
892
+ id: string;
893
+ type: "unknown";
894
+ url: string;
895
+ description: string | null;
896
+ preview_url: string;
897
+ remote_url: string | null;
898
+ bluehash: string;
899
+ }, {
900
+ id: string;
901
+ type: "unknown";
902
+ url: string;
903
+ description: string | null;
904
+ preview_url: string;
905
+ remote_url: string | null;
906
+ bluehash: string;
907
+ }>]>, "many">;
908
+ application: z.ZodOptional<z.ZodObject<{
909
+ name: z.ZodString;
910
+ website: z.ZodNullable<z.ZodString>;
911
+ }, "strip", z.ZodTypeAny, {
912
+ name: string;
913
+ website: string | null;
914
+ }, {
915
+ name: string;
916
+ website: string | null;
917
+ }>>;
918
+ emojis: z.ZodArray<z.ZodObject<{
919
+ shortcode: z.ZodString;
920
+ static_url: z.ZodString;
921
+ url: z.ZodString;
922
+ visible_in_picker: z.ZodBoolean;
923
+ category: z.ZodNullable<z.ZodString>;
924
+ }, "strip", z.ZodTypeAny, {
925
+ url: string;
926
+ shortcode: string;
927
+ static_url: string;
928
+ visible_in_picker: boolean;
929
+ category: string | null;
930
+ }, {
931
+ url: string;
932
+ shortcode: string;
933
+ static_url: string;
934
+ visible_in_picker: boolean;
935
+ category: string | null;
936
+ }>, "many">;
937
+ reblogs_count: z.ZodNumber;
938
+ favourites_count: z.ZodNumber;
939
+ replies_count: z.ZodNumber;
940
+ url: z.ZodNullable<z.ZodString>;
941
+ in_reply_to_id: z.ZodNullable<z.ZodString>;
942
+ in_reply_to_account_id: z.ZodNullable<z.ZodString>;
943
+ poll: z.ZodNullable<z.ZodObject<{
944
+ id: z.ZodString;
945
+ expires_at: z.ZodNullable<z.ZodString>;
946
+ expired: z.ZodBoolean;
947
+ multiple: z.ZodBoolean;
948
+ votes_count: z.ZodNumber;
949
+ voters_count: z.ZodNumber;
950
+ options: z.ZodArray<z.ZodObject<{
951
+ title: z.ZodString;
952
+ votes_count: z.ZodNullable<z.ZodNumber>;
953
+ }, "strip", z.ZodTypeAny, {
954
+ title: string;
955
+ votes_count: number | null;
956
+ }, {
957
+ title: string;
958
+ votes_count: number | null;
959
+ }>, "many">;
960
+ emojis: z.ZodArray<z.ZodObject<{
961
+ shortcode: z.ZodString;
962
+ static_url: z.ZodString;
963
+ url: z.ZodString;
964
+ visible_in_picker: z.ZodBoolean;
965
+ category: z.ZodNullable<z.ZodString>;
966
+ }, "strip", z.ZodTypeAny, {
967
+ url: string;
968
+ shortcode: string;
969
+ static_url: string;
970
+ visible_in_picker: boolean;
971
+ category: string | null;
972
+ }, {
973
+ url: string;
974
+ shortcode: string;
975
+ static_url: string;
976
+ visible_in_picker: boolean;
977
+ category: string | null;
978
+ }>, "many">;
979
+ voted: z.ZodOptional<z.ZodBoolean>;
980
+ own_votes: z.ZodArray<z.ZodNumber, "many">;
981
+ }, "strip", z.ZodTypeAny, {
982
+ id: string;
983
+ options: {
984
+ title: string;
985
+ votes_count: number | null;
986
+ }[];
987
+ emojis: {
988
+ url: string;
989
+ shortcode: string;
990
+ static_url: string;
991
+ visible_in_picker: boolean;
992
+ category: string | null;
993
+ }[];
994
+ expires_at: string | null;
995
+ votes_count: number;
996
+ expired: boolean;
997
+ multiple: boolean;
998
+ voters_count: number;
999
+ own_votes: number[];
1000
+ voted?: boolean | undefined;
1001
+ }, {
1002
+ id: string;
1003
+ options: {
1004
+ title: string;
1005
+ votes_count: number | null;
1006
+ }[];
1007
+ emojis: {
1008
+ url: string;
1009
+ shortcode: string;
1010
+ static_url: string;
1011
+ visible_in_picker: boolean;
1012
+ category: string | null;
1013
+ }[];
1014
+ expires_at: string | null;
1015
+ votes_count: number;
1016
+ expired: boolean;
1017
+ multiple: boolean;
1018
+ voters_count: number;
1019
+ own_votes: number[];
1020
+ voted?: boolean | undefined;
1021
+ }>>;
1022
+ card: z.ZodNullable<z.ZodObject<{
1023
+ url: z.ZodString;
1024
+ title: z.ZodString;
1025
+ description: z.ZodString;
1026
+ type: z.ZodEnum<["link", "photo", "video", "rich"]>;
1027
+ author_name: z.ZodString;
1028
+ author_url: z.ZodString;
1029
+ provider_name: z.ZodString;
1030
+ provider_url: z.ZodString;
1031
+ html: z.ZodString;
1032
+ width: z.ZodNumber;
1033
+ height: z.ZodNumber;
1034
+ image: z.ZodNullable<z.ZodString>;
1035
+ embed_url: z.ZodString;
1036
+ blurhash: z.ZodNullable<z.ZodString>;
1037
+ }, "strip", z.ZodTypeAny, {
1038
+ type: "link" | "photo" | "video" | "rich";
1039
+ url: string;
1040
+ blurhash: string | null;
1041
+ width: number;
1042
+ height: number;
1043
+ description: string;
1044
+ title: string;
1045
+ author_name: string;
1046
+ author_url: string;
1047
+ provider_name: string;
1048
+ provider_url: string;
1049
+ html: string;
1050
+ image: string | null;
1051
+ embed_url: string;
1052
+ }, {
1053
+ type: "link" | "photo" | "video" | "rich";
1054
+ url: string;
1055
+ blurhash: string | null;
1056
+ width: number;
1057
+ height: number;
1058
+ description: string;
1059
+ title: string;
1060
+ author_name: string;
1061
+ author_url: string;
1062
+ provider_name: string;
1063
+ provider_url: string;
1064
+ html: string;
1065
+ image: string | null;
1066
+ embed_url: string;
1067
+ }>>;
1068
+ language: z.ZodNullable<z.ZodString>;
1069
+ text: z.ZodNullable<z.ZodString>;
1070
+ created_at: z.ZodString;
1071
+ edited_at: z.ZodNullable<z.ZodString>;
1072
+ favourited: z.ZodOptional<z.ZodBoolean>;
1073
+ reblogged: z.ZodOptional<z.ZodBoolean>;
1074
+ muted: z.ZodOptional<z.ZodBoolean>;
1075
+ bookmarked: z.ZodOptional<z.ZodBoolean>;
1076
+ pinned: z.ZodOptional<z.ZodBoolean>;
1077
+ filtered: z.ZodOptional<z.ZodObject<{
1078
+ filter: z.ZodObject<{
1079
+ id: z.ZodString;
1080
+ title: z.ZodString;
1081
+ context: z.ZodArray<z.ZodEnum<["home", "notifications", "public", "thread", "account"]>, "many">;
1082
+ expires_at: z.ZodNullable<z.ZodString>;
1083
+ filter_action: z.ZodEnum<["warn", "hide"]>;
1084
+ keywords: z.ZodArray<z.ZodObject<{
1085
+ id: z.ZodString;
1086
+ keyword: z.ZodString;
1087
+ whole_word: z.ZodBoolean;
1088
+ }, "strip", z.ZodTypeAny, {
1089
+ id: string;
1090
+ keyword: string;
1091
+ whole_word: boolean;
1092
+ }, {
1093
+ id: string;
1094
+ keyword: string;
1095
+ whole_word: boolean;
1096
+ }>, "many">;
1097
+ statuses: z.ZodArray<z.ZodObject<{
1098
+ id: z.ZodString;
1099
+ status_id: z.ZodString;
1100
+ }, "strip", z.ZodTypeAny, {
1101
+ id: string;
1102
+ status_id: string;
1103
+ }, {
1104
+ id: string;
1105
+ status_id: string;
1106
+ }>, "many">;
1107
+ }, "strip", z.ZodTypeAny, {
1108
+ id: string;
1109
+ title: string;
1110
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
1111
+ expires_at: string | null;
1112
+ filter_action: "warn" | "hide";
1113
+ keywords: {
1114
+ id: string;
1115
+ keyword: string;
1116
+ whole_word: boolean;
1117
+ }[];
1118
+ statuses: {
1119
+ id: string;
1120
+ status_id: string;
1121
+ }[];
1122
+ }, {
1123
+ id: string;
1124
+ title: string;
1125
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
1126
+ expires_at: string | null;
1127
+ filter_action: "warn" | "hide";
1128
+ keywords: {
1129
+ id: string;
1130
+ keyword: string;
1131
+ whole_word: boolean;
1132
+ }[];
1133
+ statuses: {
1134
+ id: string;
1135
+ status_id: string;
1136
+ }[];
1137
+ }>;
1138
+ keyword_matches: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1139
+ status_matches: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1140
+ }, "strip", z.ZodTypeAny, {
1141
+ filter: {
1142
+ id: string;
1143
+ title: string;
1144
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
1145
+ expires_at: string | null;
1146
+ filter_action: "warn" | "hide";
1147
+ keywords: {
1148
+ id: string;
1149
+ keyword: string;
1150
+ whole_word: boolean;
1151
+ }[];
1152
+ statuses: {
1153
+ id: string;
1154
+ status_id: string;
1155
+ }[];
1156
+ };
1157
+ keyword_matches: string[] | null;
1158
+ status_matches: string[] | null;
1159
+ }, {
1160
+ filter: {
1161
+ id: string;
1162
+ title: string;
1163
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
1164
+ expires_at: string | null;
1165
+ filter_action: "warn" | "hide";
1166
+ keywords: {
1167
+ id: string;
1168
+ keyword: string;
1169
+ whole_word: boolean;
1170
+ }[];
1171
+ statuses: {
1172
+ id: string;
1173
+ status_id: string;
1174
+ }[];
1175
+ };
1176
+ keyword_matches: string[] | null;
1177
+ status_matches: string[] | null;
1178
+ }>>;
1179
+ }, {
1180
+ reblog: z.ZodNullable<z.ZodObject<{
1181
+ id: z.ZodString;
1182
+ uri: z.ZodString;
1183
+ account: z.ZodObject<z.objectUtil.extendShape<{
1184
+ id: z.ZodString;
1185
+ username: z.ZodString;
1186
+ acct: z.ZodString;
1187
+ url: z.ZodString;
1188
+ display_name: z.ZodString;
1189
+ note: z.ZodString;
1190
+ avatar: z.ZodString;
1191
+ avatar_static: z.ZodString;
1192
+ header: z.ZodString;
1193
+ header_static: z.ZodString;
1194
+ loacked: z.ZodString;
1195
+ fields: z.ZodArray<z.ZodObject<{
1196
+ name: z.ZodString;
1197
+ value: z.ZodString;
1198
+ verified_at: z.ZodNullable<z.ZodString>;
1199
+ }, "strip", z.ZodTypeAny, {
1200
+ value: string;
1201
+ name: string;
1202
+ verified_at: string | null;
1203
+ }, {
1204
+ value: string;
1205
+ name: string;
1206
+ verified_at: string | null;
1207
+ }>, "many">;
1208
+ emojis: z.ZodArray<z.ZodObject<{
1209
+ shortcode: z.ZodString;
1210
+ static_url: z.ZodString;
1211
+ url: z.ZodString;
1212
+ visible_in_picker: z.ZodBoolean;
1213
+ category: z.ZodNullable<z.ZodString>;
1214
+ }, "strip", z.ZodTypeAny, {
1215
+ url: string;
1216
+ shortcode: string;
1217
+ static_url: string;
1218
+ visible_in_picker: boolean;
1219
+ category: string | null;
1220
+ }, {
1221
+ url: string;
1222
+ shortcode: string;
1223
+ static_url: string;
1224
+ visible_in_picker: boolean;
1225
+ category: string | null;
1226
+ }>, "many">;
1227
+ bot: z.ZodBoolean;
1228
+ group: z.ZodBoolean;
1229
+ discoverable: z.ZodNullable<z.ZodBoolean>;
1230
+ noindex: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1231
+ suspended: z.ZodOptional<z.ZodBoolean>;
1232
+ limited: z.ZodOptional<z.ZodBoolean>;
1233
+ created_at: z.ZodString;
1234
+ last_status_at: z.ZodNullable<z.ZodString>;
1235
+ statuses_count: z.ZodNumber;
1236
+ followers_count: z.ZodNumber;
1237
+ following_count: z.ZodNumber;
1238
+ }, {
1239
+ moved: z.ZodNullable<z.ZodObject<{
1240
+ id: z.ZodString;
1241
+ username: z.ZodString;
1242
+ acct: z.ZodString;
1243
+ url: z.ZodString;
1244
+ display_name: z.ZodString;
1245
+ note: z.ZodString;
1246
+ avatar: z.ZodString;
1247
+ avatar_static: z.ZodString;
1248
+ header: z.ZodString;
1249
+ header_static: z.ZodString;
1250
+ loacked: z.ZodString;
1251
+ fields: z.ZodArray<z.ZodObject<{
1252
+ name: z.ZodString;
1253
+ value: z.ZodString;
1254
+ verified_at: z.ZodNullable<z.ZodString>;
1255
+ }, "strip", z.ZodTypeAny, {
1256
+ value: string;
1257
+ name: string;
1258
+ verified_at: string | null;
1259
+ }, {
1260
+ value: string;
1261
+ name: string;
1262
+ verified_at: string | null;
1263
+ }>, "many">;
1264
+ emojis: z.ZodArray<z.ZodObject<{
1265
+ shortcode: z.ZodString;
1266
+ static_url: z.ZodString;
1267
+ url: z.ZodString;
1268
+ visible_in_picker: z.ZodBoolean;
1269
+ category: z.ZodNullable<z.ZodString>;
1270
+ }, "strip", z.ZodTypeAny, {
1271
+ url: string;
1272
+ shortcode: string;
1273
+ static_url: string;
1274
+ visible_in_picker: boolean;
1275
+ category: string | null;
1276
+ }, {
1277
+ url: string;
1278
+ shortcode: string;
1279
+ static_url: string;
1280
+ visible_in_picker: boolean;
1281
+ category: string | null;
1282
+ }>, "many">;
1283
+ bot: z.ZodBoolean;
1284
+ group: z.ZodBoolean;
1285
+ discoverable: z.ZodNullable<z.ZodBoolean>;
1286
+ noindex: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1287
+ suspended: z.ZodOptional<z.ZodBoolean>;
1288
+ limited: z.ZodOptional<z.ZodBoolean>;
1289
+ created_at: z.ZodString;
1290
+ last_status_at: z.ZodNullable<z.ZodString>;
1291
+ statuses_count: z.ZodNumber;
1292
+ followers_count: z.ZodNumber;
1293
+ following_count: z.ZodNumber;
1294
+ }, "strip", z.ZodTypeAny, {
1295
+ id: string;
1296
+ url: string;
1297
+ username: string;
1298
+ acct: string;
1299
+ display_name: string;
1300
+ note: string;
1301
+ avatar: string;
1302
+ avatar_static: string;
1303
+ header: string;
1304
+ header_static: string;
1305
+ loacked: string;
1306
+ fields: {
1307
+ value: string;
1308
+ name: string;
1309
+ verified_at: string | null;
1310
+ }[];
1311
+ emojis: {
1312
+ url: string;
1313
+ shortcode: string;
1314
+ static_url: string;
1315
+ visible_in_picker: boolean;
1316
+ category: string | null;
1317
+ }[];
1318
+ bot: boolean;
1319
+ group: boolean;
1320
+ discoverable: boolean | null;
1321
+ created_at: string;
1322
+ last_status_at: string | null;
1323
+ statuses_count: number;
1324
+ followers_count: number;
1325
+ following_count: number;
1326
+ noindex?: boolean | null | undefined;
1327
+ suspended?: boolean | undefined;
1328
+ limited?: boolean | undefined;
1329
+ }, {
1330
+ id: string;
1331
+ url: string;
1332
+ username: string;
1333
+ acct: string;
1334
+ display_name: string;
1335
+ note: string;
1336
+ avatar: string;
1337
+ avatar_static: string;
1338
+ header: string;
1339
+ header_static: string;
1340
+ loacked: string;
1341
+ fields: {
1342
+ value: string;
1343
+ name: string;
1344
+ verified_at: string | null;
1345
+ }[];
1346
+ emojis: {
1347
+ url: string;
1348
+ shortcode: string;
1349
+ static_url: string;
1350
+ visible_in_picker: boolean;
1351
+ category: string | null;
1352
+ }[];
1353
+ bot: boolean;
1354
+ group: boolean;
1355
+ discoverable: boolean | null;
1356
+ created_at: string;
1357
+ last_status_at: string | null;
1358
+ statuses_count: number;
1359
+ followers_count: number;
1360
+ following_count: number;
1361
+ noindex?: boolean | null | undefined;
1362
+ suspended?: boolean | undefined;
1363
+ limited?: boolean | undefined;
1364
+ }>>;
1365
+ }>, "strip", z.ZodTypeAny, {
1366
+ id: string;
1367
+ url: string;
1368
+ username: string;
1369
+ acct: string;
1370
+ display_name: string;
1371
+ note: string;
1372
+ avatar: string;
1373
+ avatar_static: string;
1374
+ header: string;
1375
+ header_static: string;
1376
+ loacked: string;
1377
+ fields: {
1378
+ value: string;
1379
+ name: string;
1380
+ verified_at: string | null;
1381
+ }[];
1382
+ emojis: {
1383
+ url: string;
1384
+ shortcode: string;
1385
+ static_url: string;
1386
+ visible_in_picker: boolean;
1387
+ category: string | null;
1388
+ }[];
1389
+ bot: boolean;
1390
+ group: boolean;
1391
+ discoverable: boolean | null;
1392
+ created_at: string;
1393
+ last_status_at: string | null;
1394
+ statuses_count: number;
1395
+ followers_count: number;
1396
+ following_count: number;
1397
+ moved: {
1398
+ id: string;
1399
+ url: string;
1400
+ username: string;
1401
+ acct: string;
1402
+ display_name: string;
1403
+ note: string;
1404
+ avatar: string;
1405
+ avatar_static: string;
1406
+ header: string;
1407
+ header_static: string;
1408
+ loacked: string;
1409
+ fields: {
1410
+ value: string;
1411
+ name: string;
1412
+ verified_at: string | null;
1413
+ }[];
1414
+ emojis: {
1415
+ url: string;
1416
+ shortcode: string;
1417
+ static_url: string;
1418
+ visible_in_picker: boolean;
1419
+ category: string | null;
1420
+ }[];
1421
+ bot: boolean;
1422
+ group: boolean;
1423
+ discoverable: boolean | null;
1424
+ created_at: string;
1425
+ last_status_at: string | null;
1426
+ statuses_count: number;
1427
+ followers_count: number;
1428
+ following_count: number;
1429
+ noindex?: boolean | null | undefined;
1430
+ suspended?: boolean | undefined;
1431
+ limited?: boolean | undefined;
1432
+ } | null;
1433
+ noindex?: boolean | null | undefined;
1434
+ suspended?: boolean | undefined;
1435
+ limited?: boolean | undefined;
1436
+ }, {
1437
+ id: string;
1438
+ url: string;
1439
+ username: string;
1440
+ acct: string;
1441
+ display_name: string;
1442
+ note: string;
1443
+ avatar: string;
1444
+ avatar_static: string;
1445
+ header: string;
1446
+ header_static: string;
1447
+ loacked: string;
1448
+ fields: {
1449
+ value: string;
1450
+ name: string;
1451
+ verified_at: string | null;
1452
+ }[];
1453
+ emojis: {
1454
+ url: string;
1455
+ shortcode: string;
1456
+ static_url: string;
1457
+ visible_in_picker: boolean;
1458
+ category: string | null;
1459
+ }[];
1460
+ bot: boolean;
1461
+ group: boolean;
1462
+ discoverable: boolean | null;
1463
+ created_at: string;
1464
+ last_status_at: string | null;
1465
+ statuses_count: number;
1466
+ followers_count: number;
1467
+ following_count: number;
1468
+ moved: {
1469
+ id: string;
1470
+ url: string;
1471
+ username: string;
1472
+ acct: string;
1473
+ display_name: string;
1474
+ note: string;
1475
+ avatar: string;
1476
+ avatar_static: string;
1477
+ header: string;
1478
+ header_static: string;
1479
+ loacked: string;
1480
+ fields: {
1481
+ value: string;
1482
+ name: string;
1483
+ verified_at: string | null;
1484
+ }[];
1485
+ emojis: {
1486
+ url: string;
1487
+ shortcode: string;
1488
+ static_url: string;
1489
+ visible_in_picker: boolean;
1490
+ category: string | null;
1491
+ }[];
1492
+ bot: boolean;
1493
+ group: boolean;
1494
+ discoverable: boolean | null;
1495
+ created_at: string;
1496
+ last_status_at: string | null;
1497
+ statuses_count: number;
1498
+ followers_count: number;
1499
+ following_count: number;
1500
+ noindex?: boolean | null | undefined;
1501
+ suspended?: boolean | undefined;
1502
+ limited?: boolean | undefined;
1503
+ } | null;
1504
+ noindex?: boolean | null | undefined;
1505
+ suspended?: boolean | undefined;
1506
+ limited?: boolean | undefined;
1507
+ }>;
1508
+ content: z.ZodString;
1509
+ visibility: z.ZodEnum<["public", "unlist", "private", "direct"]>;
1510
+ sensitive: z.ZodBoolean;
1511
+ spoiler_text: z.ZodString;
1512
+ media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
1513
+ id: z.ZodString;
1514
+ url: z.ZodString;
1515
+ preview_url: z.ZodString;
1516
+ remote_url: z.ZodNullable<z.ZodString>;
1517
+ description: z.ZodNullable<z.ZodString>;
1518
+ bluehash: z.ZodString;
1519
+ }, {
1520
+ type: z.ZodLiteral<"image">;
1521
+ meta: z.ZodObject<{
1522
+ original: z.ZodObject<{
1523
+ width: z.ZodNumber;
1524
+ height: z.ZodNumber;
1525
+ size: z.ZodString;
1526
+ aspect: z.ZodNumber;
1527
+ }, "strip", z.ZodTypeAny, {
1528
+ width: number;
1529
+ height: number;
1530
+ size: string;
1531
+ aspect: number;
1532
+ }, {
1533
+ width: number;
1534
+ height: number;
1535
+ size: string;
1536
+ aspect: number;
1537
+ }>;
1538
+ small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1539
+ width: z.ZodNumber;
1540
+ height: z.ZodNumber;
1541
+ size: z.ZodString;
1542
+ aspect: z.ZodNumber;
1543
+ }, "strip", z.ZodTypeAny, {
1544
+ width: number;
1545
+ height: number;
1546
+ size: string;
1547
+ aspect: number;
1548
+ }, {
1549
+ width: number;
1550
+ height: number;
1551
+ size: string;
1552
+ aspect: number;
1553
+ }>>>;
1554
+ focus: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1555
+ x: z.ZodNumber;
1556
+ y: z.ZodNumber;
1557
+ }, "strip", z.ZodTypeAny, {
1558
+ x: number;
1559
+ y: number;
1560
+ }, {
1561
+ x: number;
1562
+ y: number;
1563
+ }>>>;
1564
+ }, "strip", z.ZodTypeAny, {
1565
+ original: {
1566
+ width: number;
1567
+ height: number;
1568
+ size: string;
1569
+ aspect: number;
1570
+ };
1571
+ small?: {
1572
+ width: number;
1573
+ height: number;
1574
+ size: string;
1575
+ aspect: number;
1576
+ } | null | undefined;
1577
+ focus?: {
1578
+ x: number;
1579
+ y: number;
1580
+ } | null | undefined;
1581
+ }, {
1582
+ original: {
1583
+ width: number;
1584
+ height: number;
1585
+ size: string;
1586
+ aspect: number;
1587
+ };
1588
+ small?: {
1589
+ width: number;
1590
+ height: number;
1591
+ size: string;
1592
+ aspect: number;
1593
+ } | null | undefined;
1594
+ focus?: {
1595
+ x: number;
1596
+ y: number;
1597
+ } | null | undefined;
1598
+ }>;
1599
+ }>, "strip", z.ZodTypeAny, {
1600
+ id: string;
1601
+ type: "image";
1602
+ url: string;
1603
+ description: string | null;
1604
+ preview_url: string;
1605
+ remote_url: string | null;
1606
+ bluehash: string;
1607
+ meta: {
1608
+ original: {
1609
+ width: number;
1610
+ height: number;
1611
+ size: string;
1612
+ aspect: number;
1613
+ };
1614
+ small?: {
1615
+ width: number;
1616
+ height: number;
1617
+ size: string;
1618
+ aspect: number;
1619
+ } | null | undefined;
1620
+ focus?: {
1621
+ x: number;
1622
+ y: number;
1623
+ } | null | undefined;
1624
+ };
1625
+ }, {
1626
+ id: string;
1627
+ type: "image";
1628
+ url: string;
1629
+ description: string | null;
1630
+ preview_url: string;
1631
+ remote_url: string | null;
1632
+ bluehash: string;
1633
+ meta: {
1634
+ original: {
1635
+ width: number;
1636
+ height: number;
1637
+ size: string;
1638
+ aspect: number;
1639
+ };
1640
+ small?: {
1641
+ width: number;
1642
+ height: number;
1643
+ size: string;
1644
+ aspect: number;
1645
+ } | null | undefined;
1646
+ focus?: {
1647
+ x: number;
1648
+ y: number;
1649
+ } | null | undefined;
1650
+ };
1651
+ }>, z.ZodObject<z.objectUtil.extendShape<{
1652
+ id: z.ZodString;
1653
+ url: z.ZodString;
1654
+ preview_url: z.ZodString;
1655
+ remote_url: z.ZodNullable<z.ZodString>;
1656
+ description: z.ZodNullable<z.ZodString>;
1657
+ bluehash: z.ZodString;
1658
+ }, {
1659
+ type: z.ZodLiteral<"gifv">;
1660
+ meta: z.ZodObject<{
1661
+ length: z.ZodString;
1662
+ duration: z.ZodNumber;
1663
+ fps: z.ZodNumber;
1664
+ size: z.ZodString;
1665
+ width: z.ZodNumber;
1666
+ height: z.ZodNumber;
1667
+ aspect: z.ZodNumber;
1668
+ original: z.ZodObject<{
1669
+ width: z.ZodNumber;
1670
+ height: z.ZodNumber;
1671
+ frame_rate: z.ZodString;
1672
+ duration: z.ZodNumber;
1673
+ bitrate: z.ZodNumber;
1674
+ }, "strip", z.ZodTypeAny, {
1675
+ width: number;
1676
+ height: number;
1677
+ duration: number;
1678
+ frame_rate: string;
1679
+ bitrate: number;
1680
+ }, {
1681
+ width: number;
1682
+ height: number;
1683
+ duration: number;
1684
+ frame_rate: string;
1685
+ bitrate: number;
1686
+ }>;
1687
+ small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1688
+ width: z.ZodNumber;
1689
+ height: z.ZodNumber;
1690
+ size: z.ZodString;
1691
+ aspect: z.ZodNumber;
1692
+ }, "strip", z.ZodTypeAny, {
1693
+ width: number;
1694
+ height: number;
1695
+ size: string;
1696
+ aspect: number;
1697
+ }, {
1698
+ width: number;
1699
+ height: number;
1700
+ size: string;
1701
+ aspect: number;
1702
+ }>>>;
1703
+ }, "strip", z.ZodTypeAny, {
1704
+ length: string;
1705
+ width: number;
1706
+ height: number;
1707
+ duration: number;
1708
+ fps: number;
1709
+ size: string;
1710
+ aspect: number;
1711
+ original: {
1712
+ width: number;
1713
+ height: number;
1714
+ duration: number;
1715
+ frame_rate: string;
1716
+ bitrate: number;
1717
+ };
1718
+ small?: {
1719
+ width: number;
1720
+ height: number;
1721
+ size: string;
1722
+ aspect: number;
1723
+ } | null | undefined;
1724
+ }, {
1725
+ length: string;
1726
+ width: number;
1727
+ height: number;
1728
+ duration: number;
1729
+ fps: number;
1730
+ size: string;
1731
+ aspect: number;
1732
+ original: {
1733
+ width: number;
1734
+ height: number;
1735
+ duration: number;
1736
+ frame_rate: string;
1737
+ bitrate: number;
1738
+ };
1739
+ small?: {
1740
+ width: number;
1741
+ height: number;
1742
+ size: string;
1743
+ aspect: number;
1744
+ } | null | undefined;
1745
+ }>;
1746
+ }>, "strip", z.ZodTypeAny, {
1747
+ id: string;
1748
+ type: "gifv";
1749
+ url: string;
1750
+ description: string | null;
1751
+ preview_url: string;
1752
+ remote_url: string | null;
1753
+ bluehash: string;
1754
+ meta: {
1755
+ length: string;
1756
+ width: number;
1757
+ height: number;
1758
+ duration: number;
1759
+ fps: number;
1760
+ size: string;
1761
+ aspect: number;
1762
+ original: {
1763
+ width: number;
1764
+ height: number;
1765
+ duration: number;
1766
+ frame_rate: string;
1767
+ bitrate: number;
1768
+ };
1769
+ small?: {
1770
+ width: number;
1771
+ height: number;
1772
+ size: string;
1773
+ aspect: number;
1774
+ } | null | undefined;
1775
+ };
1776
+ }, {
1777
+ id: string;
1778
+ type: "gifv";
1779
+ url: string;
1780
+ description: string | null;
1781
+ preview_url: string;
1782
+ remote_url: string | null;
1783
+ bluehash: string;
1784
+ meta: {
1785
+ length: string;
1786
+ width: number;
1787
+ height: number;
1788
+ duration: number;
1789
+ fps: number;
1790
+ size: string;
1791
+ aspect: number;
1792
+ original: {
1793
+ width: number;
1794
+ height: number;
1795
+ duration: number;
1796
+ frame_rate: string;
1797
+ bitrate: number;
1798
+ };
1799
+ small?: {
1800
+ width: number;
1801
+ height: number;
1802
+ size: string;
1803
+ aspect: number;
1804
+ } | null | undefined;
1805
+ };
1806
+ }>, z.ZodObject<z.objectUtil.extendShape<{
1807
+ id: z.ZodString;
1808
+ url: z.ZodString;
1809
+ preview_url: z.ZodString;
1810
+ remote_url: z.ZodNullable<z.ZodString>;
1811
+ description: z.ZodNullable<z.ZodString>;
1812
+ bluehash: z.ZodString;
1813
+ }, {
1814
+ type: z.ZodLiteral<"video">;
1815
+ meta: z.ZodObject<{
1816
+ length: z.ZodString;
1817
+ duration: z.ZodNumber;
1818
+ fps: z.ZodNumber;
1819
+ size: z.ZodString;
1820
+ width: z.ZodNumber;
1821
+ height: z.ZodNumber;
1822
+ aspect: z.ZodNumber;
1823
+ audio_encode: z.ZodString;
1824
+ audio_bitrate: z.ZodString;
1825
+ audio_channels: z.ZodString;
1826
+ original: z.ZodObject<{
1827
+ width: z.ZodNumber;
1828
+ height: z.ZodNumber;
1829
+ frame_rate: z.ZodString;
1830
+ duration: z.ZodNumber;
1831
+ bitrate: z.ZodNumber;
1832
+ }, "strip", z.ZodTypeAny, {
1833
+ width: number;
1834
+ height: number;
1835
+ duration: number;
1836
+ frame_rate: string;
1837
+ bitrate: number;
1838
+ }, {
1839
+ width: number;
1840
+ height: number;
1841
+ duration: number;
1842
+ frame_rate: string;
1843
+ bitrate: number;
1844
+ }>;
1845
+ small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1846
+ width: z.ZodNumber;
1847
+ height: z.ZodNumber;
1848
+ size: z.ZodString;
1849
+ aspect: z.ZodNumber;
1850
+ }, "strip", z.ZodTypeAny, {
1851
+ width: number;
1852
+ height: number;
1853
+ size: string;
1854
+ aspect: number;
1855
+ }, {
1856
+ width: number;
1857
+ height: number;
1858
+ size: string;
1859
+ aspect: number;
1860
+ }>>>;
1861
+ }, "strip", z.ZodTypeAny, {
1862
+ length: string;
1863
+ width: number;
1864
+ height: number;
1865
+ duration: number;
1866
+ fps: number;
1867
+ size: string;
1868
+ aspect: number;
1869
+ original: {
1870
+ width: number;
1871
+ height: number;
1872
+ duration: number;
1873
+ frame_rate: string;
1874
+ bitrate: number;
1875
+ };
1876
+ audio_encode: string;
1877
+ audio_bitrate: string;
1878
+ audio_channels: string;
1879
+ small?: {
1880
+ width: number;
1881
+ height: number;
1882
+ size: string;
1883
+ aspect: number;
1884
+ } | null | undefined;
1885
+ }, {
1886
+ length: string;
1887
+ width: number;
1888
+ height: number;
1889
+ duration: number;
1890
+ fps: number;
1891
+ size: string;
1892
+ aspect: number;
1893
+ original: {
1894
+ width: number;
1895
+ height: number;
1896
+ duration: number;
1897
+ frame_rate: string;
1898
+ bitrate: number;
1899
+ };
1900
+ audio_encode: string;
1901
+ audio_bitrate: string;
1902
+ audio_channels: string;
1903
+ small?: {
1904
+ width: number;
1905
+ height: number;
1906
+ size: string;
1907
+ aspect: number;
1908
+ } | null | undefined;
1909
+ }>;
1910
+ }>, "strip", z.ZodTypeAny, {
1911
+ id: string;
1912
+ type: "video";
1913
+ url: string;
1914
+ description: string | null;
1915
+ preview_url: string;
1916
+ remote_url: string | null;
1917
+ bluehash: string;
1918
+ meta: {
1919
+ length: string;
1920
+ width: number;
1921
+ height: number;
1922
+ duration: number;
1923
+ fps: number;
1924
+ size: string;
1925
+ aspect: number;
1926
+ original: {
1927
+ width: number;
1928
+ height: number;
1929
+ duration: number;
1930
+ frame_rate: string;
1931
+ bitrate: number;
1932
+ };
1933
+ audio_encode: string;
1934
+ audio_bitrate: string;
1935
+ audio_channels: string;
1936
+ small?: {
1937
+ width: number;
1938
+ height: number;
1939
+ size: string;
1940
+ aspect: number;
1941
+ } | null | undefined;
1942
+ };
1943
+ }, {
1944
+ id: string;
1945
+ type: "video";
1946
+ url: string;
1947
+ description: string | null;
1948
+ preview_url: string;
1949
+ remote_url: string | null;
1950
+ bluehash: string;
1951
+ meta: {
1952
+ length: string;
1953
+ width: number;
1954
+ height: number;
1955
+ duration: number;
1956
+ fps: number;
1957
+ size: string;
1958
+ aspect: number;
1959
+ original: {
1960
+ width: number;
1961
+ height: number;
1962
+ duration: number;
1963
+ frame_rate: string;
1964
+ bitrate: number;
1965
+ };
1966
+ audio_encode: string;
1967
+ audio_bitrate: string;
1968
+ audio_channels: string;
1969
+ small?: {
1970
+ width: number;
1971
+ height: number;
1972
+ size: string;
1973
+ aspect: number;
1974
+ } | null | undefined;
1975
+ };
1976
+ }>, z.ZodObject<z.objectUtil.extendShape<{
1977
+ id: z.ZodString;
1978
+ url: z.ZodString;
1979
+ preview_url: z.ZodString;
1980
+ remote_url: z.ZodNullable<z.ZodString>;
1981
+ description: z.ZodNullable<z.ZodString>;
1982
+ bluehash: z.ZodString;
1983
+ }, {
1984
+ type: z.ZodLiteral<"audio">;
1985
+ meta: z.ZodObject<{
1986
+ length: z.ZodString;
1987
+ duration: z.ZodNumber;
1988
+ audio_encode: z.ZodString;
1989
+ audio_bitrate: z.ZodString;
1990
+ audio_channels: z.ZodString;
1991
+ original: z.ZodObject<{
1992
+ duration: z.ZodNumber;
1993
+ bitrate: z.ZodNumber;
1994
+ }, "strip", z.ZodTypeAny, {
1995
+ duration: number;
1996
+ bitrate: number;
1997
+ }, {
1998
+ duration: number;
1999
+ bitrate: number;
2000
+ }>;
2001
+ }, "strip", z.ZodTypeAny, {
2002
+ length: string;
2003
+ duration: number;
2004
+ original: {
2005
+ duration: number;
2006
+ bitrate: number;
2007
+ };
2008
+ audio_encode: string;
2009
+ audio_bitrate: string;
2010
+ audio_channels: string;
2011
+ }, {
2012
+ length: string;
2013
+ duration: number;
2014
+ original: {
2015
+ duration: number;
2016
+ bitrate: number;
2017
+ };
2018
+ audio_encode: string;
2019
+ audio_bitrate: string;
2020
+ audio_channels: string;
2021
+ }>;
2022
+ }>, "strip", z.ZodTypeAny, {
2023
+ id: string;
2024
+ type: "audio";
2025
+ url: string;
2026
+ description: string | null;
2027
+ preview_url: string;
2028
+ remote_url: string | null;
2029
+ bluehash: string;
2030
+ meta: {
2031
+ length: string;
2032
+ duration: number;
2033
+ original: {
2034
+ duration: number;
2035
+ bitrate: number;
2036
+ };
2037
+ audio_encode: string;
2038
+ audio_bitrate: string;
2039
+ audio_channels: string;
2040
+ };
2041
+ }, {
2042
+ id: string;
2043
+ type: "audio";
2044
+ url: string;
2045
+ description: string | null;
2046
+ preview_url: string;
2047
+ remote_url: string | null;
2048
+ bluehash: string;
2049
+ meta: {
2050
+ length: string;
2051
+ duration: number;
2052
+ original: {
2053
+ duration: number;
2054
+ bitrate: number;
2055
+ };
2056
+ audio_encode: string;
2057
+ audio_bitrate: string;
2058
+ audio_channels: string;
2059
+ };
2060
+ }>, z.ZodObject<z.objectUtil.extendShape<{
2061
+ id: z.ZodString;
2062
+ url: z.ZodString;
2063
+ preview_url: z.ZodString;
2064
+ remote_url: z.ZodNullable<z.ZodString>;
2065
+ description: z.ZodNullable<z.ZodString>;
2066
+ bluehash: z.ZodString;
2067
+ }, {
2068
+ type: z.ZodLiteral<"unknown">;
2069
+ }>, "strip", z.ZodTypeAny, {
2070
+ id: string;
2071
+ type: "unknown";
2072
+ url: string;
2073
+ description: string | null;
2074
+ preview_url: string;
2075
+ remote_url: string | null;
2076
+ bluehash: string;
2077
+ }, {
2078
+ id: string;
2079
+ type: "unknown";
2080
+ url: string;
2081
+ description: string | null;
2082
+ preview_url: string;
2083
+ remote_url: string | null;
2084
+ bluehash: string;
2085
+ }>]>, "many">;
2086
+ application: z.ZodOptional<z.ZodObject<{
2087
+ name: z.ZodString;
2088
+ website: z.ZodNullable<z.ZodString>;
2089
+ }, "strip", z.ZodTypeAny, {
2090
+ name: string;
2091
+ website: string | null;
2092
+ }, {
2093
+ name: string;
2094
+ website: string | null;
2095
+ }>>;
2096
+ emojis: z.ZodArray<z.ZodObject<{
2097
+ shortcode: z.ZodString;
2098
+ static_url: z.ZodString;
2099
+ url: z.ZodString;
2100
+ visible_in_picker: z.ZodBoolean;
2101
+ category: z.ZodNullable<z.ZodString>;
2102
+ }, "strip", z.ZodTypeAny, {
2103
+ url: string;
2104
+ shortcode: string;
2105
+ static_url: string;
2106
+ visible_in_picker: boolean;
2107
+ category: string | null;
2108
+ }, {
2109
+ url: string;
2110
+ shortcode: string;
2111
+ static_url: string;
2112
+ visible_in_picker: boolean;
2113
+ category: string | null;
2114
+ }>, "many">;
2115
+ reblogs_count: z.ZodNumber;
2116
+ favourites_count: z.ZodNumber;
2117
+ replies_count: z.ZodNumber;
2118
+ url: z.ZodNullable<z.ZodString>;
2119
+ in_reply_to_id: z.ZodNullable<z.ZodString>;
2120
+ in_reply_to_account_id: z.ZodNullable<z.ZodString>;
2121
+ poll: z.ZodNullable<z.ZodObject<{
2122
+ id: z.ZodString;
2123
+ expires_at: z.ZodNullable<z.ZodString>;
2124
+ expired: z.ZodBoolean;
2125
+ multiple: z.ZodBoolean;
2126
+ votes_count: z.ZodNumber;
2127
+ voters_count: z.ZodNumber;
2128
+ options: z.ZodArray<z.ZodObject<{
2129
+ title: z.ZodString;
2130
+ votes_count: z.ZodNullable<z.ZodNumber>;
2131
+ }, "strip", z.ZodTypeAny, {
2132
+ title: string;
2133
+ votes_count: number | null;
2134
+ }, {
2135
+ title: string;
2136
+ votes_count: number | null;
2137
+ }>, "many">;
2138
+ emojis: z.ZodArray<z.ZodObject<{
2139
+ shortcode: z.ZodString;
2140
+ static_url: z.ZodString;
2141
+ url: z.ZodString;
2142
+ visible_in_picker: z.ZodBoolean;
2143
+ category: z.ZodNullable<z.ZodString>;
2144
+ }, "strip", z.ZodTypeAny, {
2145
+ url: string;
2146
+ shortcode: string;
2147
+ static_url: string;
2148
+ visible_in_picker: boolean;
2149
+ category: string | null;
2150
+ }, {
2151
+ url: string;
2152
+ shortcode: string;
2153
+ static_url: string;
2154
+ visible_in_picker: boolean;
2155
+ category: string | null;
2156
+ }>, "many">;
2157
+ voted: z.ZodOptional<z.ZodBoolean>;
2158
+ own_votes: z.ZodArray<z.ZodNumber, "many">;
2159
+ }, "strip", z.ZodTypeAny, {
2160
+ id: string;
2161
+ options: {
2162
+ title: string;
2163
+ votes_count: number | null;
2164
+ }[];
2165
+ emojis: {
2166
+ url: string;
2167
+ shortcode: string;
2168
+ static_url: string;
2169
+ visible_in_picker: boolean;
2170
+ category: string | null;
2171
+ }[];
2172
+ expires_at: string | null;
2173
+ votes_count: number;
2174
+ expired: boolean;
2175
+ multiple: boolean;
2176
+ voters_count: number;
2177
+ own_votes: number[];
2178
+ voted?: boolean | undefined;
2179
+ }, {
2180
+ id: string;
2181
+ options: {
2182
+ title: string;
2183
+ votes_count: number | null;
2184
+ }[];
2185
+ emojis: {
2186
+ url: string;
2187
+ shortcode: string;
2188
+ static_url: string;
2189
+ visible_in_picker: boolean;
2190
+ category: string | null;
2191
+ }[];
2192
+ expires_at: string | null;
2193
+ votes_count: number;
2194
+ expired: boolean;
2195
+ multiple: boolean;
2196
+ voters_count: number;
2197
+ own_votes: number[];
2198
+ voted?: boolean | undefined;
2199
+ }>>;
2200
+ card: z.ZodNullable<z.ZodObject<{
2201
+ url: z.ZodString;
2202
+ title: z.ZodString;
2203
+ description: z.ZodString;
2204
+ type: z.ZodEnum<["link", "photo", "video", "rich"]>;
2205
+ author_name: z.ZodString;
2206
+ author_url: z.ZodString;
2207
+ provider_name: z.ZodString;
2208
+ provider_url: z.ZodString;
2209
+ html: z.ZodString;
2210
+ width: z.ZodNumber;
2211
+ height: z.ZodNumber;
2212
+ image: z.ZodNullable<z.ZodString>;
2213
+ embed_url: z.ZodString;
2214
+ blurhash: z.ZodNullable<z.ZodString>;
2215
+ }, "strip", z.ZodTypeAny, {
2216
+ type: "link" | "photo" | "video" | "rich";
2217
+ url: string;
2218
+ blurhash: string | null;
2219
+ width: number;
2220
+ height: number;
2221
+ description: string;
2222
+ title: string;
2223
+ author_name: string;
2224
+ author_url: string;
2225
+ provider_name: string;
2226
+ provider_url: string;
2227
+ html: string;
2228
+ image: string | null;
2229
+ embed_url: string;
2230
+ }, {
2231
+ type: "link" | "photo" | "video" | "rich";
2232
+ url: string;
2233
+ blurhash: string | null;
2234
+ width: number;
2235
+ height: number;
2236
+ description: string;
2237
+ title: string;
2238
+ author_name: string;
2239
+ author_url: string;
2240
+ provider_name: string;
2241
+ provider_url: string;
2242
+ html: string;
2243
+ image: string | null;
2244
+ embed_url: string;
2245
+ }>>;
2246
+ language: z.ZodNullable<z.ZodString>;
2247
+ text: z.ZodNullable<z.ZodString>;
2248
+ created_at: z.ZodString;
2249
+ edited_at: z.ZodNullable<z.ZodString>;
2250
+ favourited: z.ZodOptional<z.ZodBoolean>;
2251
+ reblogged: z.ZodOptional<z.ZodBoolean>;
2252
+ muted: z.ZodOptional<z.ZodBoolean>;
2253
+ bookmarked: z.ZodOptional<z.ZodBoolean>;
2254
+ pinned: z.ZodOptional<z.ZodBoolean>;
2255
+ filtered: z.ZodOptional<z.ZodObject<{
2256
+ filter: z.ZodObject<{
2257
+ id: z.ZodString;
2258
+ title: z.ZodString;
2259
+ context: z.ZodArray<z.ZodEnum<["home", "notifications", "public", "thread", "account"]>, "many">;
2260
+ expires_at: z.ZodNullable<z.ZodString>;
2261
+ filter_action: z.ZodEnum<["warn", "hide"]>;
2262
+ keywords: z.ZodArray<z.ZodObject<{
2263
+ id: z.ZodString;
2264
+ keyword: z.ZodString;
2265
+ whole_word: z.ZodBoolean;
2266
+ }, "strip", z.ZodTypeAny, {
2267
+ id: string;
2268
+ keyword: string;
2269
+ whole_word: boolean;
2270
+ }, {
2271
+ id: string;
2272
+ keyword: string;
2273
+ whole_word: boolean;
2274
+ }>, "many">;
2275
+ statuses: z.ZodArray<z.ZodObject<{
2276
+ id: z.ZodString;
2277
+ status_id: z.ZodString;
2278
+ }, "strip", z.ZodTypeAny, {
2279
+ id: string;
2280
+ status_id: string;
2281
+ }, {
2282
+ id: string;
2283
+ status_id: string;
2284
+ }>, "many">;
2285
+ }, "strip", z.ZodTypeAny, {
2286
+ id: string;
2287
+ title: string;
2288
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
2289
+ expires_at: string | null;
2290
+ filter_action: "warn" | "hide";
2291
+ keywords: {
2292
+ id: string;
2293
+ keyword: string;
2294
+ whole_word: boolean;
2295
+ }[];
2296
+ statuses: {
2297
+ id: string;
2298
+ status_id: string;
2299
+ }[];
2300
+ }, {
2301
+ id: string;
2302
+ title: string;
2303
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
2304
+ expires_at: string | null;
2305
+ filter_action: "warn" | "hide";
2306
+ keywords: {
2307
+ id: string;
2308
+ keyword: string;
2309
+ whole_word: boolean;
2310
+ }[];
2311
+ statuses: {
2312
+ id: string;
2313
+ status_id: string;
2314
+ }[];
2315
+ }>;
2316
+ keyword_matches: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
2317
+ status_matches: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
2318
+ }, "strip", z.ZodTypeAny, {
2319
+ filter: {
2320
+ id: string;
2321
+ title: string;
2322
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
2323
+ expires_at: string | null;
2324
+ filter_action: "warn" | "hide";
2325
+ keywords: {
2326
+ id: string;
2327
+ keyword: string;
2328
+ whole_word: boolean;
2329
+ }[];
2330
+ statuses: {
2331
+ id: string;
2332
+ status_id: string;
2333
+ }[];
2334
+ };
2335
+ keyword_matches: string[] | null;
2336
+ status_matches: string[] | null;
2337
+ }, {
2338
+ filter: {
2339
+ id: string;
2340
+ title: string;
2341
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
2342
+ expires_at: string | null;
2343
+ filter_action: "warn" | "hide";
2344
+ keywords: {
2345
+ id: string;
2346
+ keyword: string;
2347
+ whole_word: boolean;
2348
+ }[];
2349
+ statuses: {
2350
+ id: string;
2351
+ status_id: string;
2352
+ }[];
2353
+ };
2354
+ keyword_matches: string[] | null;
2355
+ status_matches: string[] | null;
2356
+ }>>;
2357
+ }, "strip", z.ZodTypeAny, {
2358
+ id: string;
2359
+ url: string | null;
2360
+ content: string;
2361
+ emojis: {
2362
+ url: string;
2363
+ shortcode: string;
2364
+ static_url: string;
2365
+ visible_in_picker: boolean;
2366
+ category: string | null;
2367
+ }[];
2368
+ created_at: string;
2369
+ account: {
2370
+ id: string;
2371
+ url: string;
2372
+ username: string;
2373
+ acct: string;
2374
+ display_name: string;
2375
+ note: string;
2376
+ avatar: string;
2377
+ avatar_static: string;
2378
+ header: string;
2379
+ header_static: string;
2380
+ loacked: string;
2381
+ fields: {
2382
+ value: string;
2383
+ name: string;
2384
+ verified_at: string | null;
2385
+ }[];
2386
+ emojis: {
2387
+ url: string;
2388
+ shortcode: string;
2389
+ static_url: string;
2390
+ visible_in_picker: boolean;
2391
+ category: string | null;
2392
+ }[];
2393
+ bot: boolean;
2394
+ group: boolean;
2395
+ discoverable: boolean | null;
2396
+ created_at: string;
2397
+ last_status_at: string | null;
2398
+ statuses_count: number;
2399
+ followers_count: number;
2400
+ following_count: number;
2401
+ moved: {
2402
+ id: string;
2403
+ url: string;
2404
+ username: string;
2405
+ acct: string;
2406
+ display_name: string;
2407
+ note: string;
2408
+ avatar: string;
2409
+ avatar_static: string;
2410
+ header: string;
2411
+ header_static: string;
2412
+ loacked: string;
2413
+ fields: {
2414
+ value: string;
2415
+ name: string;
2416
+ verified_at: string | null;
2417
+ }[];
2418
+ emojis: {
2419
+ url: string;
2420
+ shortcode: string;
2421
+ static_url: string;
2422
+ visible_in_picker: boolean;
2423
+ category: string | null;
2424
+ }[];
2425
+ bot: boolean;
2426
+ group: boolean;
2427
+ discoverable: boolean | null;
2428
+ created_at: string;
2429
+ last_status_at: string | null;
2430
+ statuses_count: number;
2431
+ followers_count: number;
2432
+ following_count: number;
2433
+ noindex?: boolean | null | undefined;
2434
+ suspended?: boolean | undefined;
2435
+ limited?: boolean | undefined;
2436
+ } | null;
2437
+ noindex?: boolean | null | undefined;
2438
+ suspended?: boolean | undefined;
2439
+ limited?: boolean | undefined;
2440
+ };
2441
+ uri: string;
2442
+ visibility: "public" | "unlist" | "private" | "direct";
2443
+ sensitive: boolean;
2444
+ spoiler_text: string;
2445
+ media_attachments: ({
2446
+ id: string;
2447
+ type: "gifv";
2448
+ url: string;
2449
+ description: string | null;
2450
+ preview_url: string;
2451
+ remote_url: string | null;
2452
+ bluehash: string;
2453
+ meta: {
2454
+ length: string;
2455
+ width: number;
2456
+ height: number;
2457
+ duration: number;
2458
+ fps: number;
2459
+ size: string;
2460
+ aspect: number;
2461
+ original: {
2462
+ width: number;
2463
+ height: number;
2464
+ duration: number;
2465
+ frame_rate: string;
2466
+ bitrate: number;
2467
+ };
2468
+ small?: {
2469
+ width: number;
2470
+ height: number;
2471
+ size: string;
2472
+ aspect: number;
2473
+ } | null | undefined;
2474
+ };
2475
+ } | {
2476
+ id: string;
2477
+ type: "image";
2478
+ url: string;
2479
+ description: string | null;
2480
+ preview_url: string;
2481
+ remote_url: string | null;
2482
+ bluehash: string;
2483
+ meta: {
2484
+ original: {
2485
+ width: number;
2486
+ height: number;
2487
+ size: string;
2488
+ aspect: number;
2489
+ };
2490
+ small?: {
2491
+ width: number;
2492
+ height: number;
2493
+ size: string;
2494
+ aspect: number;
2495
+ } | null | undefined;
2496
+ focus?: {
2497
+ x: number;
2498
+ y: number;
2499
+ } | null | undefined;
2500
+ };
2501
+ } | {
2502
+ id: string;
2503
+ type: "video";
2504
+ url: string;
2505
+ description: string | null;
2506
+ preview_url: string;
2507
+ remote_url: string | null;
2508
+ bluehash: string;
2509
+ meta: {
2510
+ length: string;
2511
+ width: number;
2512
+ height: number;
2513
+ duration: number;
2514
+ fps: number;
2515
+ size: string;
2516
+ aspect: number;
2517
+ original: {
2518
+ width: number;
2519
+ height: number;
2520
+ duration: number;
2521
+ frame_rate: string;
2522
+ bitrate: number;
2523
+ };
2524
+ audio_encode: string;
2525
+ audio_bitrate: string;
2526
+ audio_channels: string;
2527
+ small?: {
2528
+ width: number;
2529
+ height: number;
2530
+ size: string;
2531
+ aspect: number;
2532
+ } | null | undefined;
2533
+ };
2534
+ } | {
2535
+ id: string;
2536
+ type: "audio";
2537
+ url: string;
2538
+ description: string | null;
2539
+ preview_url: string;
2540
+ remote_url: string | null;
2541
+ bluehash: string;
2542
+ meta: {
2543
+ length: string;
2544
+ duration: number;
2545
+ original: {
2546
+ duration: number;
2547
+ bitrate: number;
2548
+ };
2549
+ audio_encode: string;
2550
+ audio_bitrate: string;
2551
+ audio_channels: string;
2552
+ };
2553
+ } | {
2554
+ id: string;
2555
+ type: "unknown";
2556
+ url: string;
2557
+ description: string | null;
2558
+ preview_url: string;
2559
+ remote_url: string | null;
2560
+ bluehash: string;
2561
+ })[];
2562
+ reblogs_count: number;
2563
+ favourites_count: number;
2564
+ replies_count: number;
2565
+ in_reply_to_id: string | null;
2566
+ in_reply_to_account_id: string | null;
2567
+ poll: {
2568
+ id: string;
2569
+ options: {
2570
+ title: string;
2571
+ votes_count: number | null;
2572
+ }[];
2573
+ emojis: {
2574
+ url: string;
2575
+ shortcode: string;
2576
+ static_url: string;
2577
+ visible_in_picker: boolean;
2578
+ category: string | null;
2579
+ }[];
2580
+ expires_at: string | null;
2581
+ votes_count: number;
2582
+ expired: boolean;
2583
+ multiple: boolean;
2584
+ voters_count: number;
2585
+ own_votes: number[];
2586
+ voted?: boolean | undefined;
2587
+ } | null;
2588
+ card: {
2589
+ type: "link" | "photo" | "video" | "rich";
2590
+ url: string;
2591
+ blurhash: string | null;
2592
+ width: number;
2593
+ height: number;
2594
+ description: string;
2595
+ title: string;
2596
+ author_name: string;
2597
+ author_url: string;
2598
+ provider_name: string;
2599
+ provider_url: string;
2600
+ html: string;
2601
+ image: string | null;
2602
+ embed_url: string;
2603
+ } | null;
2604
+ language: string | null;
2605
+ text: string | null;
2606
+ edited_at: string | null;
2607
+ application?: {
2608
+ name: string;
2609
+ website: string | null;
2610
+ } | undefined;
2611
+ favourited?: boolean | undefined;
2612
+ reblogged?: boolean | undefined;
2613
+ muted?: boolean | undefined;
2614
+ bookmarked?: boolean | undefined;
2615
+ pinned?: boolean | undefined;
2616
+ filtered?: {
2617
+ filter: {
2618
+ id: string;
2619
+ title: string;
2620
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
2621
+ expires_at: string | null;
2622
+ filter_action: "warn" | "hide";
2623
+ keywords: {
2624
+ id: string;
2625
+ keyword: string;
2626
+ whole_word: boolean;
2627
+ }[];
2628
+ statuses: {
2629
+ id: string;
2630
+ status_id: string;
2631
+ }[];
2632
+ };
2633
+ keyword_matches: string[] | null;
2634
+ status_matches: string[] | null;
2635
+ } | undefined;
2636
+ }, {
2637
+ id: string;
2638
+ url: string | null;
2639
+ content: string;
2640
+ emojis: {
2641
+ url: string;
2642
+ shortcode: string;
2643
+ static_url: string;
2644
+ visible_in_picker: boolean;
2645
+ category: string | null;
2646
+ }[];
2647
+ created_at: string;
2648
+ account: {
2649
+ id: string;
2650
+ url: string;
2651
+ username: string;
2652
+ acct: string;
2653
+ display_name: string;
2654
+ note: string;
2655
+ avatar: string;
2656
+ avatar_static: string;
2657
+ header: string;
2658
+ header_static: string;
2659
+ loacked: string;
2660
+ fields: {
2661
+ value: string;
2662
+ name: string;
2663
+ verified_at: string | null;
2664
+ }[];
2665
+ emojis: {
2666
+ url: string;
2667
+ shortcode: string;
2668
+ static_url: string;
2669
+ visible_in_picker: boolean;
2670
+ category: string | null;
2671
+ }[];
2672
+ bot: boolean;
2673
+ group: boolean;
2674
+ discoverable: boolean | null;
2675
+ created_at: string;
2676
+ last_status_at: string | null;
2677
+ statuses_count: number;
2678
+ followers_count: number;
2679
+ following_count: number;
2680
+ moved: {
2681
+ id: string;
2682
+ url: string;
2683
+ username: string;
2684
+ acct: string;
2685
+ display_name: string;
2686
+ note: string;
2687
+ avatar: string;
2688
+ avatar_static: string;
2689
+ header: string;
2690
+ header_static: string;
2691
+ loacked: string;
2692
+ fields: {
2693
+ value: string;
2694
+ name: string;
2695
+ verified_at: string | null;
2696
+ }[];
2697
+ emojis: {
2698
+ url: string;
2699
+ shortcode: string;
2700
+ static_url: string;
2701
+ visible_in_picker: boolean;
2702
+ category: string | null;
2703
+ }[];
2704
+ bot: boolean;
2705
+ group: boolean;
2706
+ discoverable: boolean | null;
2707
+ created_at: string;
2708
+ last_status_at: string | null;
2709
+ statuses_count: number;
2710
+ followers_count: number;
2711
+ following_count: number;
2712
+ noindex?: boolean | null | undefined;
2713
+ suspended?: boolean | undefined;
2714
+ limited?: boolean | undefined;
2715
+ } | null;
2716
+ noindex?: boolean | null | undefined;
2717
+ suspended?: boolean | undefined;
2718
+ limited?: boolean | undefined;
2719
+ };
2720
+ uri: string;
2721
+ visibility: "public" | "unlist" | "private" | "direct";
2722
+ sensitive: boolean;
2723
+ spoiler_text: string;
2724
+ media_attachments: ({
2725
+ id: string;
2726
+ type: "gifv";
2727
+ url: string;
2728
+ description: string | null;
2729
+ preview_url: string;
2730
+ remote_url: string | null;
2731
+ bluehash: string;
2732
+ meta: {
2733
+ length: string;
2734
+ width: number;
2735
+ height: number;
2736
+ duration: number;
2737
+ fps: number;
2738
+ size: string;
2739
+ aspect: number;
2740
+ original: {
2741
+ width: number;
2742
+ height: number;
2743
+ duration: number;
2744
+ frame_rate: string;
2745
+ bitrate: number;
2746
+ };
2747
+ small?: {
2748
+ width: number;
2749
+ height: number;
2750
+ size: string;
2751
+ aspect: number;
2752
+ } | null | undefined;
2753
+ };
2754
+ } | {
2755
+ id: string;
2756
+ type: "image";
2757
+ url: string;
2758
+ description: string | null;
2759
+ preview_url: string;
2760
+ remote_url: string | null;
2761
+ bluehash: string;
2762
+ meta: {
2763
+ original: {
2764
+ width: number;
2765
+ height: number;
2766
+ size: string;
2767
+ aspect: number;
2768
+ };
2769
+ small?: {
2770
+ width: number;
2771
+ height: number;
2772
+ size: string;
2773
+ aspect: number;
2774
+ } | null | undefined;
2775
+ focus?: {
2776
+ x: number;
2777
+ y: number;
2778
+ } | null | undefined;
2779
+ };
2780
+ } | {
2781
+ id: string;
2782
+ type: "video";
2783
+ url: string;
2784
+ description: string | null;
2785
+ preview_url: string;
2786
+ remote_url: string | null;
2787
+ bluehash: string;
2788
+ meta: {
2789
+ length: string;
2790
+ width: number;
2791
+ height: number;
2792
+ duration: number;
2793
+ fps: number;
2794
+ size: string;
2795
+ aspect: number;
2796
+ original: {
2797
+ width: number;
2798
+ height: number;
2799
+ duration: number;
2800
+ frame_rate: string;
2801
+ bitrate: number;
2802
+ };
2803
+ audio_encode: string;
2804
+ audio_bitrate: string;
2805
+ audio_channels: string;
2806
+ small?: {
2807
+ width: number;
2808
+ height: number;
2809
+ size: string;
2810
+ aspect: number;
2811
+ } | null | undefined;
2812
+ };
2813
+ } | {
2814
+ id: string;
2815
+ type: "audio";
2816
+ url: string;
2817
+ description: string | null;
2818
+ preview_url: string;
2819
+ remote_url: string | null;
2820
+ bluehash: string;
2821
+ meta: {
2822
+ length: string;
2823
+ duration: number;
2824
+ original: {
2825
+ duration: number;
2826
+ bitrate: number;
2827
+ };
2828
+ audio_encode: string;
2829
+ audio_bitrate: string;
2830
+ audio_channels: string;
2831
+ };
2832
+ } | {
2833
+ id: string;
2834
+ type: "unknown";
2835
+ url: string;
2836
+ description: string | null;
2837
+ preview_url: string;
2838
+ remote_url: string | null;
2839
+ bluehash: string;
2840
+ })[];
2841
+ reblogs_count: number;
2842
+ favourites_count: number;
2843
+ replies_count: number;
2844
+ in_reply_to_id: string | null;
2845
+ in_reply_to_account_id: string | null;
2846
+ poll: {
2847
+ id: string;
2848
+ options: {
2849
+ title: string;
2850
+ votes_count: number | null;
2851
+ }[];
2852
+ emojis: {
2853
+ url: string;
2854
+ shortcode: string;
2855
+ static_url: string;
2856
+ visible_in_picker: boolean;
2857
+ category: string | null;
2858
+ }[];
2859
+ expires_at: string | null;
2860
+ votes_count: number;
2861
+ expired: boolean;
2862
+ multiple: boolean;
2863
+ voters_count: number;
2864
+ own_votes: number[];
2865
+ voted?: boolean | undefined;
2866
+ } | null;
2867
+ card: {
2868
+ type: "link" | "photo" | "video" | "rich";
2869
+ url: string;
2870
+ blurhash: string | null;
2871
+ width: number;
2872
+ height: number;
2873
+ description: string;
2874
+ title: string;
2875
+ author_name: string;
2876
+ author_url: string;
2877
+ provider_name: string;
2878
+ provider_url: string;
2879
+ html: string;
2880
+ image: string | null;
2881
+ embed_url: string;
2882
+ } | null;
2883
+ language: string | null;
2884
+ text: string | null;
2885
+ edited_at: string | null;
2886
+ application?: {
2887
+ name: string;
2888
+ website: string | null;
2889
+ } | undefined;
2890
+ favourited?: boolean | undefined;
2891
+ reblogged?: boolean | undefined;
2892
+ muted?: boolean | undefined;
2893
+ bookmarked?: boolean | undefined;
2894
+ pinned?: boolean | undefined;
2895
+ filtered?: {
2896
+ filter: {
2897
+ id: string;
2898
+ title: string;
2899
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
2900
+ expires_at: string | null;
2901
+ filter_action: "warn" | "hide";
2902
+ keywords: {
2903
+ id: string;
2904
+ keyword: string;
2905
+ whole_word: boolean;
2906
+ }[];
2907
+ statuses: {
2908
+ id: string;
2909
+ status_id: string;
2910
+ }[];
2911
+ };
2912
+ keyword_matches: string[] | null;
2913
+ status_matches: string[] | null;
2914
+ } | undefined;
2915
+ }>>;
2916
+ }>, "strip", z.ZodTypeAny, {
2917
+ id: string;
2918
+ url: string | null;
2919
+ content: string;
2920
+ emojis: {
2921
+ url: string;
2922
+ shortcode: string;
2923
+ static_url: string;
2924
+ visible_in_picker: boolean;
2925
+ category: string | null;
2926
+ }[];
2927
+ created_at: string;
2928
+ account: {
2929
+ id: string;
2930
+ url: string;
2931
+ username: string;
2932
+ acct: string;
2933
+ display_name: string;
2934
+ note: string;
2935
+ avatar: string;
2936
+ avatar_static: string;
2937
+ header: string;
2938
+ header_static: string;
2939
+ loacked: string;
2940
+ fields: {
2941
+ value: string;
2942
+ name: string;
2943
+ verified_at: string | null;
2944
+ }[];
2945
+ emojis: {
2946
+ url: string;
2947
+ shortcode: string;
2948
+ static_url: string;
2949
+ visible_in_picker: boolean;
2950
+ category: string | null;
2951
+ }[];
2952
+ bot: boolean;
2953
+ group: boolean;
2954
+ discoverable: boolean | null;
2955
+ created_at: string;
2956
+ last_status_at: string | null;
2957
+ statuses_count: number;
2958
+ followers_count: number;
2959
+ following_count: number;
2960
+ moved: {
2961
+ id: string;
2962
+ url: string;
2963
+ username: string;
2964
+ acct: string;
2965
+ display_name: string;
2966
+ note: string;
2967
+ avatar: string;
2968
+ avatar_static: string;
2969
+ header: string;
2970
+ header_static: string;
2971
+ loacked: string;
2972
+ fields: {
2973
+ value: string;
2974
+ name: string;
2975
+ verified_at: string | null;
2976
+ }[];
2977
+ emojis: {
2978
+ url: string;
2979
+ shortcode: string;
2980
+ static_url: string;
2981
+ visible_in_picker: boolean;
2982
+ category: string | null;
2983
+ }[];
2984
+ bot: boolean;
2985
+ group: boolean;
2986
+ discoverable: boolean | null;
2987
+ created_at: string;
2988
+ last_status_at: string | null;
2989
+ statuses_count: number;
2990
+ followers_count: number;
2991
+ following_count: number;
2992
+ noindex?: boolean | null | undefined;
2993
+ suspended?: boolean | undefined;
2994
+ limited?: boolean | undefined;
2995
+ } | null;
2996
+ noindex?: boolean | null | undefined;
2997
+ suspended?: boolean | undefined;
2998
+ limited?: boolean | undefined;
2999
+ };
3000
+ uri: string;
3001
+ visibility: "public" | "unlist" | "private" | "direct";
3002
+ sensitive: boolean;
3003
+ spoiler_text: string;
3004
+ media_attachments: ({
3005
+ id: string;
3006
+ type: "gifv";
3007
+ url: string;
3008
+ description: string | null;
3009
+ preview_url: string;
3010
+ remote_url: string | null;
3011
+ bluehash: string;
3012
+ meta: {
3013
+ length: string;
3014
+ width: number;
3015
+ height: number;
3016
+ duration: number;
3017
+ fps: number;
3018
+ size: string;
3019
+ aspect: number;
3020
+ original: {
3021
+ width: number;
3022
+ height: number;
3023
+ duration: number;
3024
+ frame_rate: string;
3025
+ bitrate: number;
3026
+ };
3027
+ small?: {
3028
+ width: number;
3029
+ height: number;
3030
+ size: string;
3031
+ aspect: number;
3032
+ } | null | undefined;
3033
+ };
3034
+ } | {
3035
+ id: string;
3036
+ type: "image";
3037
+ url: string;
3038
+ description: string | null;
3039
+ preview_url: string;
3040
+ remote_url: string | null;
3041
+ bluehash: string;
3042
+ meta: {
3043
+ original: {
3044
+ width: number;
3045
+ height: number;
3046
+ size: string;
3047
+ aspect: number;
3048
+ };
3049
+ small?: {
3050
+ width: number;
3051
+ height: number;
3052
+ size: string;
3053
+ aspect: number;
3054
+ } | null | undefined;
3055
+ focus?: {
3056
+ x: number;
3057
+ y: number;
3058
+ } | null | undefined;
3059
+ };
3060
+ } | {
3061
+ id: string;
3062
+ type: "video";
3063
+ url: string;
3064
+ description: string | null;
3065
+ preview_url: string;
3066
+ remote_url: string | null;
3067
+ bluehash: string;
3068
+ meta: {
3069
+ length: string;
3070
+ width: number;
3071
+ height: number;
3072
+ duration: number;
3073
+ fps: number;
3074
+ size: string;
3075
+ aspect: number;
3076
+ original: {
3077
+ width: number;
3078
+ height: number;
3079
+ duration: number;
3080
+ frame_rate: string;
3081
+ bitrate: number;
3082
+ };
3083
+ audio_encode: string;
3084
+ audio_bitrate: string;
3085
+ audio_channels: string;
3086
+ small?: {
3087
+ width: number;
3088
+ height: number;
3089
+ size: string;
3090
+ aspect: number;
3091
+ } | null | undefined;
3092
+ };
3093
+ } | {
3094
+ id: string;
3095
+ type: "audio";
3096
+ url: string;
3097
+ description: string | null;
3098
+ preview_url: string;
3099
+ remote_url: string | null;
3100
+ bluehash: string;
3101
+ meta: {
3102
+ length: string;
3103
+ duration: number;
3104
+ original: {
3105
+ duration: number;
3106
+ bitrate: number;
3107
+ };
3108
+ audio_encode: string;
3109
+ audio_bitrate: string;
3110
+ audio_channels: string;
3111
+ };
3112
+ } | {
3113
+ id: string;
3114
+ type: "unknown";
3115
+ url: string;
3116
+ description: string | null;
3117
+ preview_url: string;
3118
+ remote_url: string | null;
3119
+ bluehash: string;
3120
+ })[];
3121
+ reblogs_count: number;
3122
+ favourites_count: number;
3123
+ replies_count: number;
3124
+ in_reply_to_id: string | null;
3125
+ in_reply_to_account_id: string | null;
3126
+ poll: {
3127
+ id: string;
3128
+ options: {
3129
+ title: string;
3130
+ votes_count: number | null;
3131
+ }[];
3132
+ emojis: {
3133
+ url: string;
3134
+ shortcode: string;
3135
+ static_url: string;
3136
+ visible_in_picker: boolean;
3137
+ category: string | null;
3138
+ }[];
3139
+ expires_at: string | null;
3140
+ votes_count: number;
3141
+ expired: boolean;
3142
+ multiple: boolean;
3143
+ voters_count: number;
3144
+ own_votes: number[];
3145
+ voted?: boolean | undefined;
3146
+ } | null;
3147
+ card: {
3148
+ type: "link" | "photo" | "video" | "rich";
3149
+ url: string;
3150
+ blurhash: string | null;
3151
+ width: number;
3152
+ height: number;
3153
+ description: string;
3154
+ title: string;
3155
+ author_name: string;
3156
+ author_url: string;
3157
+ provider_name: string;
3158
+ provider_url: string;
3159
+ html: string;
3160
+ image: string | null;
3161
+ embed_url: string;
3162
+ } | null;
3163
+ language: string | null;
3164
+ text: string | null;
3165
+ edited_at: string | null;
3166
+ reblog: {
3167
+ id: string;
3168
+ url: string | null;
3169
+ content: string;
3170
+ emojis: {
3171
+ url: string;
3172
+ shortcode: string;
3173
+ static_url: string;
3174
+ visible_in_picker: boolean;
3175
+ category: string | null;
3176
+ }[];
3177
+ created_at: string;
3178
+ account: {
3179
+ id: string;
3180
+ url: string;
3181
+ username: string;
3182
+ acct: string;
3183
+ display_name: string;
3184
+ note: string;
3185
+ avatar: string;
3186
+ avatar_static: string;
3187
+ header: string;
3188
+ header_static: string;
3189
+ loacked: string;
3190
+ fields: {
3191
+ value: string;
3192
+ name: string;
3193
+ verified_at: string | null;
3194
+ }[];
3195
+ emojis: {
3196
+ url: string;
3197
+ shortcode: string;
3198
+ static_url: string;
3199
+ visible_in_picker: boolean;
3200
+ category: string | null;
3201
+ }[];
3202
+ bot: boolean;
3203
+ group: boolean;
3204
+ discoverable: boolean | null;
3205
+ created_at: string;
3206
+ last_status_at: string | null;
3207
+ statuses_count: number;
3208
+ followers_count: number;
3209
+ following_count: number;
3210
+ moved: {
3211
+ id: string;
3212
+ url: string;
3213
+ username: string;
3214
+ acct: string;
3215
+ display_name: string;
3216
+ note: string;
3217
+ avatar: string;
3218
+ avatar_static: string;
3219
+ header: string;
3220
+ header_static: string;
3221
+ loacked: string;
3222
+ fields: {
3223
+ value: string;
3224
+ name: string;
3225
+ verified_at: string | null;
3226
+ }[];
3227
+ emojis: {
3228
+ url: string;
3229
+ shortcode: string;
3230
+ static_url: string;
3231
+ visible_in_picker: boolean;
3232
+ category: string | null;
3233
+ }[];
3234
+ bot: boolean;
3235
+ group: boolean;
3236
+ discoverable: boolean | null;
3237
+ created_at: string;
3238
+ last_status_at: string | null;
3239
+ statuses_count: number;
3240
+ followers_count: number;
3241
+ following_count: number;
3242
+ noindex?: boolean | null | undefined;
3243
+ suspended?: boolean | undefined;
3244
+ limited?: boolean | undefined;
3245
+ } | null;
3246
+ noindex?: boolean | null | undefined;
3247
+ suspended?: boolean | undefined;
3248
+ limited?: boolean | undefined;
3249
+ };
3250
+ uri: string;
3251
+ visibility: "public" | "unlist" | "private" | "direct";
3252
+ sensitive: boolean;
3253
+ spoiler_text: string;
3254
+ media_attachments: ({
3255
+ id: string;
3256
+ type: "gifv";
3257
+ url: string;
3258
+ description: string | null;
3259
+ preview_url: string;
3260
+ remote_url: string | null;
3261
+ bluehash: string;
3262
+ meta: {
3263
+ length: string;
3264
+ width: number;
3265
+ height: number;
3266
+ duration: number;
3267
+ fps: number;
3268
+ size: string;
3269
+ aspect: number;
3270
+ original: {
3271
+ width: number;
3272
+ height: number;
3273
+ duration: number;
3274
+ frame_rate: string;
3275
+ bitrate: number;
3276
+ };
3277
+ small?: {
3278
+ width: number;
3279
+ height: number;
3280
+ size: string;
3281
+ aspect: number;
3282
+ } | null | undefined;
3283
+ };
3284
+ } | {
3285
+ id: string;
3286
+ type: "image";
3287
+ url: string;
3288
+ description: string | null;
3289
+ preview_url: string;
3290
+ remote_url: string | null;
3291
+ bluehash: string;
3292
+ meta: {
3293
+ original: {
3294
+ width: number;
3295
+ height: number;
3296
+ size: string;
3297
+ aspect: number;
3298
+ };
3299
+ small?: {
3300
+ width: number;
3301
+ height: number;
3302
+ size: string;
3303
+ aspect: number;
3304
+ } | null | undefined;
3305
+ focus?: {
3306
+ x: number;
3307
+ y: number;
3308
+ } | null | undefined;
3309
+ };
3310
+ } | {
3311
+ id: string;
3312
+ type: "video";
3313
+ url: string;
3314
+ description: string | null;
3315
+ preview_url: string;
3316
+ remote_url: string | null;
3317
+ bluehash: string;
3318
+ meta: {
3319
+ length: string;
3320
+ width: number;
3321
+ height: number;
3322
+ duration: number;
3323
+ fps: number;
3324
+ size: string;
3325
+ aspect: number;
3326
+ original: {
3327
+ width: number;
3328
+ height: number;
3329
+ duration: number;
3330
+ frame_rate: string;
3331
+ bitrate: number;
3332
+ };
3333
+ audio_encode: string;
3334
+ audio_bitrate: string;
3335
+ audio_channels: string;
3336
+ small?: {
3337
+ width: number;
3338
+ height: number;
3339
+ size: string;
3340
+ aspect: number;
3341
+ } | null | undefined;
3342
+ };
3343
+ } | {
3344
+ id: string;
3345
+ type: "audio";
3346
+ url: string;
3347
+ description: string | null;
3348
+ preview_url: string;
3349
+ remote_url: string | null;
3350
+ bluehash: string;
3351
+ meta: {
3352
+ length: string;
3353
+ duration: number;
3354
+ original: {
3355
+ duration: number;
3356
+ bitrate: number;
3357
+ };
3358
+ audio_encode: string;
3359
+ audio_bitrate: string;
3360
+ audio_channels: string;
3361
+ };
3362
+ } | {
3363
+ id: string;
3364
+ type: "unknown";
3365
+ url: string;
3366
+ description: string | null;
3367
+ preview_url: string;
3368
+ remote_url: string | null;
3369
+ bluehash: string;
3370
+ })[];
3371
+ reblogs_count: number;
3372
+ favourites_count: number;
3373
+ replies_count: number;
3374
+ in_reply_to_id: string | null;
3375
+ in_reply_to_account_id: string | null;
3376
+ poll: {
3377
+ id: string;
3378
+ options: {
3379
+ title: string;
3380
+ votes_count: number | null;
3381
+ }[];
3382
+ emojis: {
3383
+ url: string;
3384
+ shortcode: string;
3385
+ static_url: string;
3386
+ visible_in_picker: boolean;
3387
+ category: string | null;
3388
+ }[];
3389
+ expires_at: string | null;
3390
+ votes_count: number;
3391
+ expired: boolean;
3392
+ multiple: boolean;
3393
+ voters_count: number;
3394
+ own_votes: number[];
3395
+ voted?: boolean | undefined;
3396
+ } | null;
3397
+ card: {
3398
+ type: "link" | "photo" | "video" | "rich";
3399
+ url: string;
3400
+ blurhash: string | null;
3401
+ width: number;
3402
+ height: number;
3403
+ description: string;
3404
+ title: string;
3405
+ author_name: string;
3406
+ author_url: string;
3407
+ provider_name: string;
3408
+ provider_url: string;
3409
+ html: string;
3410
+ image: string | null;
3411
+ embed_url: string;
3412
+ } | null;
3413
+ language: string | null;
3414
+ text: string | null;
3415
+ edited_at: string | null;
3416
+ application?: {
3417
+ name: string;
3418
+ website: string | null;
3419
+ } | undefined;
3420
+ favourited?: boolean | undefined;
3421
+ reblogged?: boolean | undefined;
3422
+ muted?: boolean | undefined;
3423
+ bookmarked?: boolean | undefined;
3424
+ pinned?: boolean | undefined;
3425
+ filtered?: {
3426
+ filter: {
3427
+ id: string;
3428
+ title: string;
3429
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
3430
+ expires_at: string | null;
3431
+ filter_action: "warn" | "hide";
3432
+ keywords: {
3433
+ id: string;
3434
+ keyword: string;
3435
+ whole_word: boolean;
3436
+ }[];
3437
+ statuses: {
3438
+ id: string;
3439
+ status_id: string;
3440
+ }[];
3441
+ };
3442
+ keyword_matches: string[] | null;
3443
+ status_matches: string[] | null;
3444
+ } | undefined;
3445
+ } | null;
3446
+ application?: {
3447
+ name: string;
3448
+ website: string | null;
3449
+ } | undefined;
3450
+ favourited?: boolean | undefined;
3451
+ reblogged?: boolean | undefined;
3452
+ muted?: boolean | undefined;
3453
+ bookmarked?: boolean | undefined;
3454
+ pinned?: boolean | undefined;
3455
+ filtered?: {
3456
+ filter: {
3457
+ id: string;
3458
+ title: string;
3459
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
3460
+ expires_at: string | null;
3461
+ filter_action: "warn" | "hide";
3462
+ keywords: {
3463
+ id: string;
3464
+ keyword: string;
3465
+ whole_word: boolean;
3466
+ }[];
3467
+ statuses: {
3468
+ id: string;
3469
+ status_id: string;
3470
+ }[];
3471
+ };
3472
+ keyword_matches: string[] | null;
3473
+ status_matches: string[] | null;
3474
+ } | undefined;
3475
+ }, {
3476
+ id: string;
3477
+ url: string | null;
3478
+ content: string;
3479
+ emojis: {
3480
+ url: string;
3481
+ shortcode: string;
3482
+ static_url: string;
3483
+ visible_in_picker: boolean;
3484
+ category: string | null;
3485
+ }[];
3486
+ created_at: string;
3487
+ account: {
3488
+ id: string;
3489
+ url: string;
3490
+ username: string;
3491
+ acct: string;
3492
+ display_name: string;
3493
+ note: string;
3494
+ avatar: string;
3495
+ avatar_static: string;
3496
+ header: string;
3497
+ header_static: string;
3498
+ loacked: string;
3499
+ fields: {
3500
+ value: string;
3501
+ name: string;
3502
+ verified_at: string | null;
3503
+ }[];
3504
+ emojis: {
3505
+ url: string;
3506
+ shortcode: string;
3507
+ static_url: string;
3508
+ visible_in_picker: boolean;
3509
+ category: string | null;
3510
+ }[];
3511
+ bot: boolean;
3512
+ group: boolean;
3513
+ discoverable: boolean | null;
3514
+ created_at: string;
3515
+ last_status_at: string | null;
3516
+ statuses_count: number;
3517
+ followers_count: number;
3518
+ following_count: number;
3519
+ moved: {
3520
+ id: string;
3521
+ url: string;
3522
+ username: string;
3523
+ acct: string;
3524
+ display_name: string;
3525
+ note: string;
3526
+ avatar: string;
3527
+ avatar_static: string;
3528
+ header: string;
3529
+ header_static: string;
3530
+ loacked: string;
3531
+ fields: {
3532
+ value: string;
3533
+ name: string;
3534
+ verified_at: string | null;
3535
+ }[];
3536
+ emojis: {
3537
+ url: string;
3538
+ shortcode: string;
3539
+ static_url: string;
3540
+ visible_in_picker: boolean;
3541
+ category: string | null;
3542
+ }[];
3543
+ bot: boolean;
3544
+ group: boolean;
3545
+ discoverable: boolean | null;
3546
+ created_at: string;
3547
+ last_status_at: string | null;
3548
+ statuses_count: number;
3549
+ followers_count: number;
3550
+ following_count: number;
3551
+ noindex?: boolean | null | undefined;
3552
+ suspended?: boolean | undefined;
3553
+ limited?: boolean | undefined;
3554
+ } | null;
3555
+ noindex?: boolean | null | undefined;
3556
+ suspended?: boolean | undefined;
3557
+ limited?: boolean | undefined;
3558
+ };
3559
+ uri: string;
3560
+ visibility: "public" | "unlist" | "private" | "direct";
3561
+ sensitive: boolean;
3562
+ spoiler_text: string;
3563
+ media_attachments: ({
3564
+ id: string;
3565
+ type: "gifv";
3566
+ url: string;
3567
+ description: string | null;
3568
+ preview_url: string;
3569
+ remote_url: string | null;
3570
+ bluehash: string;
3571
+ meta: {
3572
+ length: string;
3573
+ width: number;
3574
+ height: number;
3575
+ duration: number;
3576
+ fps: number;
3577
+ size: string;
3578
+ aspect: number;
3579
+ original: {
3580
+ width: number;
3581
+ height: number;
3582
+ duration: number;
3583
+ frame_rate: string;
3584
+ bitrate: number;
3585
+ };
3586
+ small?: {
3587
+ width: number;
3588
+ height: number;
3589
+ size: string;
3590
+ aspect: number;
3591
+ } | null | undefined;
3592
+ };
3593
+ } | {
3594
+ id: string;
3595
+ type: "image";
3596
+ url: string;
3597
+ description: string | null;
3598
+ preview_url: string;
3599
+ remote_url: string | null;
3600
+ bluehash: string;
3601
+ meta: {
3602
+ original: {
3603
+ width: number;
3604
+ height: number;
3605
+ size: string;
3606
+ aspect: number;
3607
+ };
3608
+ small?: {
3609
+ width: number;
3610
+ height: number;
3611
+ size: string;
3612
+ aspect: number;
3613
+ } | null | undefined;
3614
+ focus?: {
3615
+ x: number;
3616
+ y: number;
3617
+ } | null | undefined;
3618
+ };
3619
+ } | {
3620
+ id: string;
3621
+ type: "video";
3622
+ url: string;
3623
+ description: string | null;
3624
+ preview_url: string;
3625
+ remote_url: string | null;
3626
+ bluehash: string;
3627
+ meta: {
3628
+ length: string;
3629
+ width: number;
3630
+ height: number;
3631
+ duration: number;
3632
+ fps: number;
3633
+ size: string;
3634
+ aspect: number;
3635
+ original: {
3636
+ width: number;
3637
+ height: number;
3638
+ duration: number;
3639
+ frame_rate: string;
3640
+ bitrate: number;
3641
+ };
3642
+ audio_encode: string;
3643
+ audio_bitrate: string;
3644
+ audio_channels: string;
3645
+ small?: {
3646
+ width: number;
3647
+ height: number;
3648
+ size: string;
3649
+ aspect: number;
3650
+ } | null | undefined;
3651
+ };
3652
+ } | {
3653
+ id: string;
3654
+ type: "audio";
3655
+ url: string;
3656
+ description: string | null;
3657
+ preview_url: string;
3658
+ remote_url: string | null;
3659
+ bluehash: string;
3660
+ meta: {
3661
+ length: string;
3662
+ duration: number;
3663
+ original: {
3664
+ duration: number;
3665
+ bitrate: number;
3666
+ };
3667
+ audio_encode: string;
3668
+ audio_bitrate: string;
3669
+ audio_channels: string;
3670
+ };
3671
+ } | {
3672
+ id: string;
3673
+ type: "unknown";
3674
+ url: string;
3675
+ description: string | null;
3676
+ preview_url: string;
3677
+ remote_url: string | null;
3678
+ bluehash: string;
3679
+ })[];
3680
+ reblogs_count: number;
3681
+ favourites_count: number;
3682
+ replies_count: number;
3683
+ in_reply_to_id: string | null;
3684
+ in_reply_to_account_id: string | null;
3685
+ poll: {
3686
+ id: string;
3687
+ options: {
3688
+ title: string;
3689
+ votes_count: number | null;
3690
+ }[];
3691
+ emojis: {
3692
+ url: string;
3693
+ shortcode: string;
3694
+ static_url: string;
3695
+ visible_in_picker: boolean;
3696
+ category: string | null;
3697
+ }[];
3698
+ expires_at: string | null;
3699
+ votes_count: number;
3700
+ expired: boolean;
3701
+ multiple: boolean;
3702
+ voters_count: number;
3703
+ own_votes: number[];
3704
+ voted?: boolean | undefined;
3705
+ } | null;
3706
+ card: {
3707
+ type: "link" | "photo" | "video" | "rich";
3708
+ url: string;
3709
+ blurhash: string | null;
3710
+ width: number;
3711
+ height: number;
3712
+ description: string;
3713
+ title: string;
3714
+ author_name: string;
3715
+ author_url: string;
3716
+ provider_name: string;
3717
+ provider_url: string;
3718
+ html: string;
3719
+ image: string | null;
3720
+ embed_url: string;
3721
+ } | null;
3722
+ language: string | null;
3723
+ text: string | null;
3724
+ edited_at: string | null;
3725
+ reblog: {
3726
+ id: string;
3727
+ url: string | null;
3728
+ content: string;
3729
+ emojis: {
3730
+ url: string;
3731
+ shortcode: string;
3732
+ static_url: string;
3733
+ visible_in_picker: boolean;
3734
+ category: string | null;
3735
+ }[];
3736
+ created_at: string;
3737
+ account: {
3738
+ id: string;
3739
+ url: string;
3740
+ username: string;
3741
+ acct: string;
3742
+ display_name: string;
3743
+ note: string;
3744
+ avatar: string;
3745
+ avatar_static: string;
3746
+ header: string;
3747
+ header_static: string;
3748
+ loacked: string;
3749
+ fields: {
3750
+ value: string;
3751
+ name: string;
3752
+ verified_at: string | null;
3753
+ }[];
3754
+ emojis: {
3755
+ url: string;
3756
+ shortcode: string;
3757
+ static_url: string;
3758
+ visible_in_picker: boolean;
3759
+ category: string | null;
3760
+ }[];
3761
+ bot: boolean;
3762
+ group: boolean;
3763
+ discoverable: boolean | null;
3764
+ created_at: string;
3765
+ last_status_at: string | null;
3766
+ statuses_count: number;
3767
+ followers_count: number;
3768
+ following_count: number;
3769
+ moved: {
3770
+ id: string;
3771
+ url: string;
3772
+ username: string;
3773
+ acct: string;
3774
+ display_name: string;
3775
+ note: string;
3776
+ avatar: string;
3777
+ avatar_static: string;
3778
+ header: string;
3779
+ header_static: string;
3780
+ loacked: string;
3781
+ fields: {
3782
+ value: string;
3783
+ name: string;
3784
+ verified_at: string | null;
3785
+ }[];
3786
+ emojis: {
3787
+ url: string;
3788
+ shortcode: string;
3789
+ static_url: string;
3790
+ visible_in_picker: boolean;
3791
+ category: string | null;
3792
+ }[];
3793
+ bot: boolean;
3794
+ group: boolean;
3795
+ discoverable: boolean | null;
3796
+ created_at: string;
3797
+ last_status_at: string | null;
3798
+ statuses_count: number;
3799
+ followers_count: number;
3800
+ following_count: number;
3801
+ noindex?: boolean | null | undefined;
3802
+ suspended?: boolean | undefined;
3803
+ limited?: boolean | undefined;
3804
+ } | null;
3805
+ noindex?: boolean | null | undefined;
3806
+ suspended?: boolean | undefined;
3807
+ limited?: boolean | undefined;
3808
+ };
3809
+ uri: string;
3810
+ visibility: "public" | "unlist" | "private" | "direct";
3811
+ sensitive: boolean;
3812
+ spoiler_text: string;
3813
+ media_attachments: ({
3814
+ id: string;
3815
+ type: "gifv";
3816
+ url: string;
3817
+ description: string | null;
3818
+ preview_url: string;
3819
+ remote_url: string | null;
3820
+ bluehash: string;
3821
+ meta: {
3822
+ length: string;
3823
+ width: number;
3824
+ height: number;
3825
+ duration: number;
3826
+ fps: number;
3827
+ size: string;
3828
+ aspect: number;
3829
+ original: {
3830
+ width: number;
3831
+ height: number;
3832
+ duration: number;
3833
+ frame_rate: string;
3834
+ bitrate: number;
3835
+ };
3836
+ small?: {
3837
+ width: number;
3838
+ height: number;
3839
+ size: string;
3840
+ aspect: number;
3841
+ } | null | undefined;
3842
+ };
3843
+ } | {
3844
+ id: string;
3845
+ type: "image";
3846
+ url: string;
3847
+ description: string | null;
3848
+ preview_url: string;
3849
+ remote_url: string | null;
3850
+ bluehash: string;
3851
+ meta: {
3852
+ original: {
3853
+ width: number;
3854
+ height: number;
3855
+ size: string;
3856
+ aspect: number;
3857
+ };
3858
+ small?: {
3859
+ width: number;
3860
+ height: number;
3861
+ size: string;
3862
+ aspect: number;
3863
+ } | null | undefined;
3864
+ focus?: {
3865
+ x: number;
3866
+ y: number;
3867
+ } | null | undefined;
3868
+ };
3869
+ } | {
3870
+ id: string;
3871
+ type: "video";
3872
+ url: string;
3873
+ description: string | null;
3874
+ preview_url: string;
3875
+ remote_url: string | null;
3876
+ bluehash: string;
3877
+ meta: {
3878
+ length: string;
3879
+ width: number;
3880
+ height: number;
3881
+ duration: number;
3882
+ fps: number;
3883
+ size: string;
3884
+ aspect: number;
3885
+ original: {
3886
+ width: number;
3887
+ height: number;
3888
+ duration: number;
3889
+ frame_rate: string;
3890
+ bitrate: number;
3891
+ };
3892
+ audio_encode: string;
3893
+ audio_bitrate: string;
3894
+ audio_channels: string;
3895
+ small?: {
3896
+ width: number;
3897
+ height: number;
3898
+ size: string;
3899
+ aspect: number;
3900
+ } | null | undefined;
3901
+ };
3902
+ } | {
3903
+ id: string;
3904
+ type: "audio";
3905
+ url: string;
3906
+ description: string | null;
3907
+ preview_url: string;
3908
+ remote_url: string | null;
3909
+ bluehash: string;
3910
+ meta: {
3911
+ length: string;
3912
+ duration: number;
3913
+ original: {
3914
+ duration: number;
3915
+ bitrate: number;
3916
+ };
3917
+ audio_encode: string;
3918
+ audio_bitrate: string;
3919
+ audio_channels: string;
3920
+ };
3921
+ } | {
3922
+ id: string;
3923
+ type: "unknown";
3924
+ url: string;
3925
+ description: string | null;
3926
+ preview_url: string;
3927
+ remote_url: string | null;
3928
+ bluehash: string;
3929
+ })[];
3930
+ reblogs_count: number;
3931
+ favourites_count: number;
3932
+ replies_count: number;
3933
+ in_reply_to_id: string | null;
3934
+ in_reply_to_account_id: string | null;
3935
+ poll: {
3936
+ id: string;
3937
+ options: {
3938
+ title: string;
3939
+ votes_count: number | null;
3940
+ }[];
3941
+ emojis: {
3942
+ url: string;
3943
+ shortcode: string;
3944
+ static_url: string;
3945
+ visible_in_picker: boolean;
3946
+ category: string | null;
3947
+ }[];
3948
+ expires_at: string | null;
3949
+ votes_count: number;
3950
+ expired: boolean;
3951
+ multiple: boolean;
3952
+ voters_count: number;
3953
+ own_votes: number[];
3954
+ voted?: boolean | undefined;
3955
+ } | null;
3956
+ card: {
3957
+ type: "link" | "photo" | "video" | "rich";
3958
+ url: string;
3959
+ blurhash: string | null;
3960
+ width: number;
3961
+ height: number;
3962
+ description: string;
3963
+ title: string;
3964
+ author_name: string;
3965
+ author_url: string;
3966
+ provider_name: string;
3967
+ provider_url: string;
3968
+ html: string;
3969
+ image: string | null;
3970
+ embed_url: string;
3971
+ } | null;
3972
+ language: string | null;
3973
+ text: string | null;
3974
+ edited_at: string | null;
3975
+ application?: {
3976
+ name: string;
3977
+ website: string | null;
3978
+ } | undefined;
3979
+ favourited?: boolean | undefined;
3980
+ reblogged?: boolean | undefined;
3981
+ muted?: boolean | undefined;
3982
+ bookmarked?: boolean | undefined;
3983
+ pinned?: boolean | undefined;
3984
+ filtered?: {
3985
+ filter: {
3986
+ id: string;
3987
+ title: string;
3988
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
3989
+ expires_at: string | null;
3990
+ filter_action: "warn" | "hide";
3991
+ keywords: {
3992
+ id: string;
3993
+ keyword: string;
3994
+ whole_word: boolean;
3995
+ }[];
3996
+ statuses: {
3997
+ id: string;
3998
+ status_id: string;
3999
+ }[];
4000
+ };
4001
+ keyword_matches: string[] | null;
4002
+ status_matches: string[] | null;
4003
+ } | undefined;
4004
+ } | null;
4005
+ application?: {
4006
+ name: string;
4007
+ website: string | null;
4008
+ } | undefined;
4009
+ favourited?: boolean | undefined;
4010
+ reblogged?: boolean | undefined;
4011
+ muted?: boolean | undefined;
4012
+ bookmarked?: boolean | undefined;
4013
+ pinned?: boolean | undefined;
4014
+ filtered?: {
4015
+ filter: {
4016
+ id: string;
4017
+ title: string;
4018
+ context: ("home" | "notifications" | "public" | "thread" | "account")[];
4019
+ expires_at: string | null;
4020
+ filter_action: "warn" | "hide";
4021
+ keywords: {
4022
+ id: string;
4023
+ keyword: string;
4024
+ whole_word: boolean;
4025
+ }[];
4026
+ statuses: {
4027
+ id: string;
4028
+ status_id: string;
4029
+ }[];
4030
+ };
4031
+ keyword_matches: string[] | null;
4032
+ status_matches: string[] | null;
4033
+ } | undefined;
4034
+ }>;
4035
+ export type Status = z.infer<typeof Status>;