@llun/activities.schema 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,7 +13,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
13
13
  avatar_static: z.ZodString;
14
14
  header: z.ZodString;
15
15
  header_static: z.ZodString;
16
- loacked: z.ZodString;
16
+ locked: z.ZodBoolean;
17
17
  fields: z.ZodArray<z.ZodObject<{
18
18
  name: z.ZodString;
19
19
  value: z.ZodString;
@@ -58,7 +58,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
58
58
  followers_count: z.ZodNumber;
59
59
  following_count: z.ZodNumber;
60
60
  }, {
61
- moved: z.ZodNullable<z.ZodObject<{
61
+ moved: z.ZodOptional<z.ZodNullable<z.ZodObject<{
62
62
  id: z.ZodString;
63
63
  username: z.ZodString;
64
64
  acct: z.ZodString;
@@ -69,7 +69,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
69
69
  avatar_static: z.ZodString;
70
70
  header: z.ZodString;
71
71
  header_static: z.ZodString;
72
- loacked: z.ZodString;
72
+ locked: z.ZodBoolean;
73
73
  fields: z.ZodArray<z.ZodObject<{
74
74
  name: z.ZodString;
75
75
  value: z.ZodString;
@@ -124,7 +124,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
124
124
  avatar_static: string;
125
125
  header: string;
126
126
  header_static: string;
127
- loacked: string;
127
+ locked: boolean;
128
128
  fields: {
129
129
  value: string;
130
130
  name: string;
@@ -159,7 +159,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
159
159
  avatar_static: string;
160
160
  header: string;
161
161
  header_static: string;
162
- loacked: string;
162
+ locked: boolean;
163
163
  fields: {
164
164
  value: string;
165
165
  name: string;
@@ -183,7 +183,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
183
183
  noindex?: boolean | null | undefined;
184
184
  suspended?: boolean | undefined;
185
185
  limited?: boolean | undefined;
186
- }>>;
186
+ }>>>;
187
187
  }>, "strip", z.ZodTypeAny, {
188
188
  id: string;
189
189
  url: string;
@@ -195,7 +195,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
195
195
  avatar_static: string;
196
196
  header: string;
197
197
  header_static: string;
198
- loacked: string;
198
+ locked: boolean;
199
199
  fields: {
200
200
  value: string;
201
201
  name: string;
@@ -216,7 +216,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
216
216
  statuses_count: number;
217
217
  followers_count: number;
218
218
  following_count: number;
219
- moved: {
219
+ noindex?: boolean | null | undefined;
220
+ suspended?: boolean | undefined;
221
+ limited?: boolean | undefined;
222
+ moved?: {
220
223
  id: string;
221
224
  url: string;
222
225
  username: string;
@@ -227,7 +230,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
227
230
  avatar_static: string;
228
231
  header: string;
229
232
  header_static: string;
230
- loacked: string;
233
+ locked: boolean;
231
234
  fields: {
232
235
  value: string;
233
236
  name: string;
@@ -251,10 +254,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
251
254
  noindex?: boolean | null | undefined;
252
255
  suspended?: boolean | undefined;
253
256
  limited?: boolean | undefined;
254
- } | null;
255
- noindex?: boolean | null | undefined;
256
- suspended?: boolean | undefined;
257
- limited?: boolean | undefined;
257
+ } | null | undefined;
258
258
  }, {
259
259
  id: string;
260
260
  url: string;
@@ -266,7 +266,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
266
266
  avatar_static: string;
267
267
  header: string;
268
268
  header_static: string;
269
- loacked: string;
269
+ locked: boolean;
270
270
  fields: {
271
271
  value: string;
272
272
  name: string;
@@ -287,7 +287,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
287
287
  statuses_count: number;
288
288
  followers_count: number;
289
289
  following_count: number;
290
- moved: {
290
+ noindex?: boolean | null | undefined;
291
+ suspended?: boolean | undefined;
292
+ limited?: boolean | undefined;
293
+ moved?: {
291
294
  id: string;
292
295
  url: string;
293
296
  username: string;
@@ -298,7 +301,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
298
301
  avatar_static: string;
299
302
  header: string;
300
303
  header_static: string;
301
- loacked: string;
304
+ locked: boolean;
302
305
  fields: {
303
306
  value: string;
304
307
  name: string;
@@ -322,10 +325,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
322
325
  noindex?: boolean | null | undefined;
323
326
  suspended?: boolean | undefined;
324
327
  limited?: boolean | undefined;
325
- } | null;
326
- noindex?: boolean | null | undefined;
327
- suspended?: boolean | undefined;
328
- limited?: boolean | undefined;
328
+ } | null | undefined;
329
329
  }>;
330
330
  content: z.ZodString;
331
331
  visibility: z.ZodEnum<["public", "unlist", "private", "direct"]>;
@@ -497,14 +497,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
497
497
  width: number;
498
498
  height: number;
499
499
  duration: number;
500
- bitrate: number;
501
500
  frame_rate: string;
501
+ bitrate: number;
502
502
  }, {
503
503
  width: number;
504
504
  height: number;
505
505
  duration: number;
506
- bitrate: number;
507
506
  frame_rate: string;
507
+ bitrate: number;
508
508
  }>;
509
509
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
510
510
  width: z.ZodNumber;
@@ -527,16 +527,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
527
527
  width: number;
528
528
  height: number;
529
529
  duration: number;
530
+ fps: number;
531
+ size: string;
532
+ aspect: number;
530
533
  original: {
531
534
  width: number;
532
535
  height: number;
533
536
  duration: number;
534
- bitrate: number;
535
537
  frame_rate: string;
538
+ bitrate: number;
536
539
  };
537
- fps: number;
538
- size: string;
539
- aspect: number;
540
540
  small?: {
541
541
  width: number;
542
542
  height: number;
@@ -548,16 +548,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
548
548
  width: number;
549
549
  height: number;
550
550
  duration: number;
551
+ fps: number;
552
+ size: string;
553
+ aspect: number;
551
554
  original: {
552
555
  width: number;
553
556
  height: number;
554
557
  duration: number;
555
- bitrate: number;
556
558
  frame_rate: string;
559
+ bitrate: number;
557
560
  };
558
- fps: number;
559
- size: string;
560
- aspect: number;
561
561
  small?: {
562
562
  width: number;
563
563
  height: number;
@@ -578,16 +578,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
578
578
  width: number;
579
579
  height: number;
580
580
  duration: number;
581
+ fps: number;
582
+ size: string;
583
+ aspect: number;
581
584
  original: {
582
585
  width: number;
583
586
  height: number;
584
587
  duration: number;
585
- bitrate: number;
586
588
  frame_rate: string;
589
+ bitrate: number;
587
590
  };
588
- fps: number;
589
- size: string;
590
- aspect: number;
591
591
  small?: {
592
592
  width: number;
593
593
  height: number;
@@ -608,16 +608,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
608
608
  width: number;
609
609
  height: number;
610
610
  duration: number;
611
+ fps: number;
612
+ size: string;
613
+ aspect: number;
611
614
  original: {
612
615
  width: number;
613
616
  height: number;
614
617
  duration: number;
615
- bitrate: number;
616
618
  frame_rate: string;
619
+ bitrate: number;
617
620
  };
618
- fps: number;
619
- size: string;
620
- aspect: number;
621
621
  small?: {
622
622
  width: number;
623
623
  height: number;
@@ -655,14 +655,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
655
655
  width: number;
656
656
  height: number;
657
657
  duration: number;
658
- bitrate: number;
659
658
  frame_rate: string;
659
+ bitrate: number;
660
660
  }, {
661
661
  width: number;
662
662
  height: number;
663
663
  duration: number;
664
- bitrate: number;
665
664
  frame_rate: string;
665
+ bitrate: number;
666
666
  }>;
667
667
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
668
668
  width: z.ZodNumber;
@@ -685,19 +685,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
685
685
  width: number;
686
686
  height: number;
687
687
  duration: number;
688
- audio_encode: string;
689
- audio_bitrate: string;
690
- audio_channels: string;
688
+ fps: number;
689
+ size: string;
690
+ aspect: number;
691
691
  original: {
692
692
  width: number;
693
693
  height: number;
694
694
  duration: number;
695
- bitrate: number;
696
695
  frame_rate: string;
696
+ bitrate: number;
697
697
  };
698
- fps: number;
699
- size: string;
700
- aspect: number;
698
+ audio_encode: string;
699
+ audio_bitrate: string;
700
+ audio_channels: string;
701
701
  small?: {
702
702
  width: number;
703
703
  height: number;
@@ -709,19 +709,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
709
709
  width: number;
710
710
  height: number;
711
711
  duration: number;
712
- audio_encode: string;
713
- audio_bitrate: string;
714
- audio_channels: string;
712
+ fps: number;
713
+ size: string;
714
+ aspect: number;
715
715
  original: {
716
716
  width: number;
717
717
  height: number;
718
718
  duration: number;
719
- bitrate: number;
720
719
  frame_rate: string;
720
+ bitrate: number;
721
721
  };
722
- fps: number;
723
- size: string;
724
- aspect: number;
722
+ audio_encode: string;
723
+ audio_bitrate: string;
724
+ audio_channels: string;
725
725
  small?: {
726
726
  width: number;
727
727
  height: number;
@@ -742,19 +742,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
742
742
  width: number;
743
743
  height: number;
744
744
  duration: number;
745
- audio_encode: string;
746
- audio_bitrate: string;
747
- audio_channels: string;
745
+ fps: number;
746
+ size: string;
747
+ aspect: number;
748
748
  original: {
749
749
  width: number;
750
750
  height: number;
751
751
  duration: number;
752
- bitrate: number;
753
752
  frame_rate: string;
753
+ bitrate: number;
754
754
  };
755
- fps: number;
756
- size: string;
757
- aspect: number;
755
+ audio_encode: string;
756
+ audio_bitrate: string;
757
+ audio_channels: string;
758
758
  small?: {
759
759
  width: number;
760
760
  height: number;
@@ -775,19 +775,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
775
775
  width: number;
776
776
  height: number;
777
777
  duration: number;
778
- audio_encode: string;
779
- audio_bitrate: string;
780
- audio_channels: string;
778
+ fps: number;
779
+ size: string;
780
+ aspect: number;
781
781
  original: {
782
782
  width: number;
783
783
  height: number;
784
784
  duration: number;
785
- bitrate: number;
786
785
  frame_rate: string;
786
+ bitrate: number;
787
787
  };
788
- fps: number;
789
- size: string;
790
- aspect: number;
788
+ audio_encode: string;
789
+ audio_bitrate: string;
790
+ audio_channels: string;
791
791
  small?: {
792
792
  width: number;
793
793
  height: number;
@@ -823,23 +823,23 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
823
823
  }, "strip", z.ZodTypeAny, {
824
824
  length: string;
825
825
  duration: number;
826
- audio_encode: string;
827
- audio_bitrate: string;
828
- audio_channels: string;
829
826
  original: {
830
827
  duration: number;
831
828
  bitrate: number;
832
829
  };
833
- }, {
834
- length: string;
835
- duration: number;
836
830
  audio_encode: string;
837
831
  audio_bitrate: string;
838
832
  audio_channels: string;
833
+ }, {
834
+ length: string;
835
+ duration: number;
839
836
  original: {
840
837
  duration: number;
841
838
  bitrate: number;
842
839
  };
840
+ audio_encode: string;
841
+ audio_bitrate: string;
842
+ audio_channels: string;
843
843
  }>;
844
844
  }>, "strip", z.ZodTypeAny, {
845
845
  id: string;
@@ -852,13 +852,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
852
852
  meta: {
853
853
  length: string;
854
854
  duration: number;
855
- audio_encode: string;
856
- audio_bitrate: string;
857
- audio_channels: string;
858
855
  original: {
859
856
  duration: number;
860
857
  bitrate: number;
861
858
  };
859
+ audio_encode: string;
860
+ audio_bitrate: string;
861
+ audio_channels: string;
862
862
  };
863
863
  }, {
864
864
  id: string;
@@ -871,13 +871,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
871
871
  meta: {
872
872
  length: string;
873
873
  duration: number;
874
- audio_encode: string;
875
- audio_bitrate: string;
876
- audio_channels: string;
877
874
  original: {
878
875
  duration: number;
879
876
  bitrate: number;
880
877
  };
878
+ audio_encode: string;
879
+ audio_bitrate: string;
880
+ audio_channels: string;
881
881
  };
882
882
  }>, z.ZodObject<z.objectUtil.extendShape<{
883
883
  id: z.ZodString;
@@ -1191,7 +1191,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1191
1191
  avatar_static: z.ZodString;
1192
1192
  header: z.ZodString;
1193
1193
  header_static: z.ZodString;
1194
- loacked: z.ZodString;
1194
+ locked: z.ZodBoolean;
1195
1195
  fields: z.ZodArray<z.ZodObject<{
1196
1196
  name: z.ZodString;
1197
1197
  value: z.ZodString;
@@ -1236,7 +1236,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1236
1236
  followers_count: z.ZodNumber;
1237
1237
  following_count: z.ZodNumber;
1238
1238
  }, {
1239
- moved: z.ZodNullable<z.ZodObject<{
1239
+ moved: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1240
1240
  id: z.ZodString;
1241
1241
  username: z.ZodString;
1242
1242
  acct: z.ZodString;
@@ -1247,7 +1247,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1247
1247
  avatar_static: z.ZodString;
1248
1248
  header: z.ZodString;
1249
1249
  header_static: z.ZodString;
1250
- loacked: z.ZodString;
1250
+ locked: z.ZodBoolean;
1251
1251
  fields: z.ZodArray<z.ZodObject<{
1252
1252
  name: z.ZodString;
1253
1253
  value: z.ZodString;
@@ -1302,7 +1302,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1302
1302
  avatar_static: string;
1303
1303
  header: string;
1304
1304
  header_static: string;
1305
- loacked: string;
1305
+ locked: boolean;
1306
1306
  fields: {
1307
1307
  value: string;
1308
1308
  name: string;
@@ -1337,7 +1337,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1337
1337
  avatar_static: string;
1338
1338
  header: string;
1339
1339
  header_static: string;
1340
- loacked: string;
1340
+ locked: boolean;
1341
1341
  fields: {
1342
1342
  value: string;
1343
1343
  name: string;
@@ -1361,7 +1361,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1361
1361
  noindex?: boolean | null | undefined;
1362
1362
  suspended?: boolean | undefined;
1363
1363
  limited?: boolean | undefined;
1364
- }>>;
1364
+ }>>>;
1365
1365
  }>, "strip", z.ZodTypeAny, {
1366
1366
  id: string;
1367
1367
  url: string;
@@ -1373,7 +1373,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1373
1373
  avatar_static: string;
1374
1374
  header: string;
1375
1375
  header_static: string;
1376
- loacked: string;
1376
+ locked: boolean;
1377
1377
  fields: {
1378
1378
  value: string;
1379
1379
  name: string;
@@ -1394,7 +1394,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1394
1394
  statuses_count: number;
1395
1395
  followers_count: number;
1396
1396
  following_count: number;
1397
- moved: {
1397
+ noindex?: boolean | null | undefined;
1398
+ suspended?: boolean | undefined;
1399
+ limited?: boolean | undefined;
1400
+ moved?: {
1398
1401
  id: string;
1399
1402
  url: string;
1400
1403
  username: string;
@@ -1405,7 +1408,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1405
1408
  avatar_static: string;
1406
1409
  header: string;
1407
1410
  header_static: string;
1408
- loacked: string;
1411
+ locked: boolean;
1409
1412
  fields: {
1410
1413
  value: string;
1411
1414
  name: string;
@@ -1429,10 +1432,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1429
1432
  noindex?: boolean | null | undefined;
1430
1433
  suspended?: boolean | undefined;
1431
1434
  limited?: boolean | undefined;
1432
- } | null;
1433
- noindex?: boolean | null | undefined;
1434
- suspended?: boolean | undefined;
1435
- limited?: boolean | undefined;
1435
+ } | null | undefined;
1436
1436
  }, {
1437
1437
  id: string;
1438
1438
  url: string;
@@ -1444,7 +1444,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1444
1444
  avatar_static: string;
1445
1445
  header: string;
1446
1446
  header_static: string;
1447
- loacked: string;
1447
+ locked: boolean;
1448
1448
  fields: {
1449
1449
  value: string;
1450
1450
  name: string;
@@ -1465,7 +1465,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1465
1465
  statuses_count: number;
1466
1466
  followers_count: number;
1467
1467
  following_count: number;
1468
- moved: {
1468
+ noindex?: boolean | null | undefined;
1469
+ suspended?: boolean | undefined;
1470
+ limited?: boolean | undefined;
1471
+ moved?: {
1469
1472
  id: string;
1470
1473
  url: string;
1471
1474
  username: string;
@@ -1476,7 +1479,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1476
1479
  avatar_static: string;
1477
1480
  header: string;
1478
1481
  header_static: string;
1479
- loacked: string;
1482
+ locked: boolean;
1480
1483
  fields: {
1481
1484
  value: string;
1482
1485
  name: string;
@@ -1500,10 +1503,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1500
1503
  noindex?: boolean | null | undefined;
1501
1504
  suspended?: boolean | undefined;
1502
1505
  limited?: boolean | undefined;
1503
- } | null;
1504
- noindex?: boolean | null | undefined;
1505
- suspended?: boolean | undefined;
1506
- limited?: boolean | undefined;
1506
+ } | null | undefined;
1507
1507
  }>;
1508
1508
  content: z.ZodString;
1509
1509
  visibility: z.ZodEnum<["public", "unlist", "private", "direct"]>;
@@ -1675,14 +1675,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1675
1675
  width: number;
1676
1676
  height: number;
1677
1677
  duration: number;
1678
- bitrate: number;
1679
1678
  frame_rate: string;
1679
+ bitrate: number;
1680
1680
  }, {
1681
1681
  width: number;
1682
1682
  height: number;
1683
1683
  duration: number;
1684
- bitrate: number;
1685
1684
  frame_rate: string;
1685
+ bitrate: number;
1686
1686
  }>;
1687
1687
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1688
1688
  width: z.ZodNumber;
@@ -1705,16 +1705,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1705
1705
  width: number;
1706
1706
  height: number;
1707
1707
  duration: number;
1708
+ fps: number;
1709
+ size: string;
1710
+ aspect: number;
1708
1711
  original: {
1709
1712
  width: number;
1710
1713
  height: number;
1711
1714
  duration: number;
1712
- bitrate: number;
1713
1715
  frame_rate: string;
1716
+ bitrate: number;
1714
1717
  };
1715
- fps: number;
1716
- size: string;
1717
- aspect: number;
1718
1718
  small?: {
1719
1719
  width: number;
1720
1720
  height: number;
@@ -1726,16 +1726,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1726
1726
  width: number;
1727
1727
  height: number;
1728
1728
  duration: number;
1729
+ fps: number;
1730
+ size: string;
1731
+ aspect: number;
1729
1732
  original: {
1730
1733
  width: number;
1731
1734
  height: number;
1732
1735
  duration: number;
1733
- bitrate: number;
1734
1736
  frame_rate: string;
1737
+ bitrate: number;
1735
1738
  };
1736
- fps: number;
1737
- size: string;
1738
- aspect: number;
1739
1739
  small?: {
1740
1740
  width: number;
1741
1741
  height: number;
@@ -1756,16 +1756,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1756
1756
  width: number;
1757
1757
  height: number;
1758
1758
  duration: number;
1759
+ fps: number;
1760
+ size: string;
1761
+ aspect: number;
1759
1762
  original: {
1760
1763
  width: number;
1761
1764
  height: number;
1762
1765
  duration: number;
1763
- bitrate: number;
1764
1766
  frame_rate: string;
1767
+ bitrate: number;
1765
1768
  };
1766
- fps: number;
1767
- size: string;
1768
- aspect: number;
1769
1769
  small?: {
1770
1770
  width: number;
1771
1771
  height: number;
@@ -1786,16 +1786,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1786
1786
  width: number;
1787
1787
  height: number;
1788
1788
  duration: number;
1789
+ fps: number;
1790
+ size: string;
1791
+ aspect: number;
1789
1792
  original: {
1790
1793
  width: number;
1791
1794
  height: number;
1792
1795
  duration: number;
1793
- bitrate: number;
1794
1796
  frame_rate: string;
1797
+ bitrate: number;
1795
1798
  };
1796
- fps: number;
1797
- size: string;
1798
- aspect: number;
1799
1799
  small?: {
1800
1800
  width: number;
1801
1801
  height: number;
@@ -1833,14 +1833,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1833
1833
  width: number;
1834
1834
  height: number;
1835
1835
  duration: number;
1836
- bitrate: number;
1837
1836
  frame_rate: string;
1837
+ bitrate: number;
1838
1838
  }, {
1839
1839
  width: number;
1840
1840
  height: number;
1841
1841
  duration: number;
1842
- bitrate: number;
1843
1842
  frame_rate: string;
1843
+ bitrate: number;
1844
1844
  }>;
1845
1845
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1846
1846
  width: z.ZodNumber;
@@ -1863,19 +1863,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1863
1863
  width: number;
1864
1864
  height: number;
1865
1865
  duration: number;
1866
- audio_encode: string;
1867
- audio_bitrate: string;
1868
- audio_channels: string;
1866
+ fps: number;
1867
+ size: string;
1868
+ aspect: number;
1869
1869
  original: {
1870
1870
  width: number;
1871
1871
  height: number;
1872
1872
  duration: number;
1873
- bitrate: number;
1874
1873
  frame_rate: string;
1874
+ bitrate: number;
1875
1875
  };
1876
- fps: number;
1877
- size: string;
1878
- aspect: number;
1876
+ audio_encode: string;
1877
+ audio_bitrate: string;
1878
+ audio_channels: string;
1879
1879
  small?: {
1880
1880
  width: number;
1881
1881
  height: number;
@@ -1887,19 +1887,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1887
1887
  width: number;
1888
1888
  height: number;
1889
1889
  duration: number;
1890
- audio_encode: string;
1891
- audio_bitrate: string;
1892
- audio_channels: string;
1890
+ fps: number;
1891
+ size: string;
1892
+ aspect: number;
1893
1893
  original: {
1894
1894
  width: number;
1895
1895
  height: number;
1896
1896
  duration: number;
1897
- bitrate: number;
1898
1897
  frame_rate: string;
1898
+ bitrate: number;
1899
1899
  };
1900
- fps: number;
1901
- size: string;
1902
- aspect: number;
1900
+ audio_encode: string;
1901
+ audio_bitrate: string;
1902
+ audio_channels: string;
1903
1903
  small?: {
1904
1904
  width: number;
1905
1905
  height: number;
@@ -1920,19 +1920,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1920
1920
  width: number;
1921
1921
  height: number;
1922
1922
  duration: number;
1923
- audio_encode: string;
1924
- audio_bitrate: string;
1925
- audio_channels: string;
1923
+ fps: number;
1924
+ size: string;
1925
+ aspect: number;
1926
1926
  original: {
1927
1927
  width: number;
1928
1928
  height: number;
1929
1929
  duration: number;
1930
- bitrate: number;
1931
1930
  frame_rate: string;
1931
+ bitrate: number;
1932
1932
  };
1933
- fps: number;
1934
- size: string;
1935
- aspect: number;
1933
+ audio_encode: string;
1934
+ audio_bitrate: string;
1935
+ audio_channels: string;
1936
1936
  small?: {
1937
1937
  width: number;
1938
1938
  height: number;
@@ -1953,19 +1953,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
1953
1953
  width: number;
1954
1954
  height: number;
1955
1955
  duration: number;
1956
- audio_encode: string;
1957
- audio_bitrate: string;
1958
- audio_channels: string;
1956
+ fps: number;
1957
+ size: string;
1958
+ aspect: number;
1959
1959
  original: {
1960
1960
  width: number;
1961
1961
  height: number;
1962
1962
  duration: number;
1963
- bitrate: number;
1964
1963
  frame_rate: string;
1964
+ bitrate: number;
1965
1965
  };
1966
- fps: number;
1967
- size: string;
1968
- aspect: number;
1966
+ audio_encode: string;
1967
+ audio_bitrate: string;
1968
+ audio_channels: string;
1969
1969
  small?: {
1970
1970
  width: number;
1971
1971
  height: number;
@@ -2001,24 +2001,24 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2001
2001
  }, "strip", z.ZodTypeAny, {
2002
2002
  length: string;
2003
2003
  duration: number;
2004
- audio_encode: string;
2005
- audio_bitrate: string;
2006
- audio_channels: string;
2007
2004
  original: {
2008
2005
  duration: number;
2009
2006
  bitrate: number;
2010
2007
  };
2011
- }, {
2012
- length: string;
2013
- duration: number;
2014
2008
  audio_encode: string;
2015
2009
  audio_bitrate: string;
2016
2010
  audio_channels: string;
2011
+ }, {
2012
+ length: string;
2013
+ duration: number;
2017
2014
  original: {
2018
2015
  duration: number;
2019
2016
  bitrate: number;
2020
2017
  };
2021
- }>;
2018
+ audio_encode: string;
2019
+ audio_bitrate: string;
2020
+ audio_channels: string;
2021
+ }>;
2022
2022
  }>, "strip", z.ZodTypeAny, {
2023
2023
  id: string;
2024
2024
  type: "audio";
@@ -2030,13 +2030,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2030
2030
  meta: {
2031
2031
  length: string;
2032
2032
  duration: number;
2033
- audio_encode: string;
2034
- audio_bitrate: string;
2035
- audio_channels: string;
2036
2033
  original: {
2037
2034
  duration: number;
2038
2035
  bitrate: number;
2039
2036
  };
2037
+ audio_encode: string;
2038
+ audio_bitrate: string;
2039
+ audio_channels: string;
2040
2040
  };
2041
2041
  }, {
2042
2042
  id: string;
@@ -2049,13 +2049,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2049
2049
  meta: {
2050
2050
  length: string;
2051
2051
  duration: number;
2052
- audio_encode: string;
2053
- audio_bitrate: string;
2054
- audio_channels: string;
2055
2052
  original: {
2056
2053
  duration: number;
2057
2054
  bitrate: number;
2058
2055
  };
2056
+ audio_encode: string;
2057
+ audio_bitrate: string;
2058
+ audio_channels: string;
2059
2059
  };
2060
2060
  }>, z.ZodObject<z.objectUtil.extendShape<{
2061
2061
  id: z.ZodString;
@@ -2377,7 +2377,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2377
2377
  avatar_static: string;
2378
2378
  header: string;
2379
2379
  header_static: string;
2380
- loacked: string;
2380
+ locked: boolean;
2381
2381
  fields: {
2382
2382
  value: string;
2383
2383
  name: string;
@@ -2398,7 +2398,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2398
2398
  statuses_count: number;
2399
2399
  followers_count: number;
2400
2400
  following_count: number;
2401
- moved: {
2401
+ noindex?: boolean | null | undefined;
2402
+ suspended?: boolean | undefined;
2403
+ limited?: boolean | undefined;
2404
+ moved?: {
2402
2405
  id: string;
2403
2406
  url: string;
2404
2407
  username: string;
@@ -2409,7 +2412,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2409
2412
  avatar_static: string;
2410
2413
  header: string;
2411
2414
  header_static: string;
2412
- loacked: string;
2415
+ locked: boolean;
2413
2416
  fields: {
2414
2417
  value: string;
2415
2418
  name: string;
@@ -2433,35 +2436,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2433
2436
  noindex?: boolean | null | undefined;
2434
2437
  suspended?: boolean | undefined;
2435
2438
  limited?: boolean | undefined;
2436
- } | null;
2437
- noindex?: boolean | null | undefined;
2438
- suspended?: boolean | undefined;
2439
- limited?: boolean | undefined;
2439
+ } | null | undefined;
2440
2440
  };
2441
2441
  uri: string;
2442
2442
  visibility: "public" | "unlist" | "private" | "direct";
2443
2443
  sensitive: boolean;
2444
2444
  spoiler_text: string;
2445
2445
  media_attachments: ({
2446
- id: string;
2447
- type: "audio";
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
- duration: number;
2456
- audio_encode: string;
2457
- audio_bitrate: string;
2458
- audio_channels: string;
2459
- original: {
2460
- duration: number;
2461
- bitrate: number;
2462
- };
2463
- };
2464
- } | {
2465
2446
  id: string;
2466
2447
  type: "gifv";
2467
2448
  url: string;
@@ -2474,16 +2455,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2474
2455
  width: number;
2475
2456
  height: number;
2476
2457
  duration: number;
2458
+ fps: number;
2459
+ size: string;
2460
+ aspect: number;
2477
2461
  original: {
2478
2462
  width: number;
2479
2463
  height: number;
2480
2464
  duration: number;
2481
- bitrate: number;
2482
2465
  frame_rate: string;
2466
+ bitrate: number;
2483
2467
  };
2484
- fps: number;
2485
- size: string;
2486
- aspect: number;
2487
2468
  small?: {
2488
2469
  width: number;
2489
2470
  height: number;
@@ -2530,19 +2511,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2530
2511
  width: number;
2531
2512
  height: number;
2532
2513
  duration: number;
2533
- audio_encode: string;
2534
- audio_bitrate: string;
2535
- audio_channels: string;
2514
+ fps: number;
2515
+ size: string;
2516
+ aspect: number;
2536
2517
  original: {
2537
2518
  width: number;
2538
2519
  height: number;
2539
2520
  duration: number;
2540
- bitrate: number;
2541
2521
  frame_rate: string;
2522
+ bitrate: number;
2542
2523
  };
2543
- fps: number;
2544
- size: string;
2545
- aspect: number;
2524
+ audio_encode: string;
2525
+ audio_bitrate: string;
2526
+ audio_channels: string;
2546
2527
  small?: {
2547
2528
  width: number;
2548
2529
  height: number;
@@ -2550,6 +2531,25 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2550
2531
  aspect: number;
2551
2532
  } | null | undefined;
2552
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
2553
  } | {
2554
2554
  id: string;
2555
2555
  type: "unknown";
@@ -2656,7 +2656,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2656
2656
  avatar_static: string;
2657
2657
  header: string;
2658
2658
  header_static: string;
2659
- loacked: string;
2659
+ locked: boolean;
2660
2660
  fields: {
2661
2661
  value: string;
2662
2662
  name: string;
@@ -2677,7 +2677,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2677
2677
  statuses_count: number;
2678
2678
  followers_count: number;
2679
2679
  following_count: number;
2680
- moved: {
2680
+ noindex?: boolean | null | undefined;
2681
+ suspended?: boolean | undefined;
2682
+ limited?: boolean | undefined;
2683
+ moved?: {
2681
2684
  id: string;
2682
2685
  url: string;
2683
2686
  username: string;
@@ -2688,7 +2691,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2688
2691
  avatar_static: string;
2689
2692
  header: string;
2690
2693
  header_static: string;
2691
- loacked: string;
2694
+ locked: boolean;
2692
2695
  fields: {
2693
2696
  value: string;
2694
2697
  name: string;
@@ -2712,35 +2715,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2712
2715
  noindex?: boolean | null | undefined;
2713
2716
  suspended?: boolean | undefined;
2714
2717
  limited?: boolean | undefined;
2715
- } | null;
2716
- noindex?: boolean | null | undefined;
2717
- suspended?: boolean | undefined;
2718
- limited?: boolean | undefined;
2718
+ } | null | undefined;
2719
2719
  };
2720
2720
  uri: string;
2721
2721
  visibility: "public" | "unlist" | "private" | "direct";
2722
2722
  sensitive: boolean;
2723
2723
  spoiler_text: string;
2724
2724
  media_attachments: ({
2725
- id: string;
2726
- type: "audio";
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
- duration: number;
2735
- audio_encode: string;
2736
- audio_bitrate: string;
2737
- audio_channels: string;
2738
- original: {
2739
- duration: number;
2740
- bitrate: number;
2741
- };
2742
- };
2743
- } | {
2744
2725
  id: string;
2745
2726
  type: "gifv";
2746
2727
  url: string;
@@ -2753,16 +2734,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2753
2734
  width: number;
2754
2735
  height: number;
2755
2736
  duration: number;
2737
+ fps: number;
2738
+ size: string;
2739
+ aspect: number;
2756
2740
  original: {
2757
2741
  width: number;
2758
2742
  height: number;
2759
2743
  duration: number;
2760
- bitrate: number;
2761
2744
  frame_rate: string;
2745
+ bitrate: number;
2762
2746
  };
2763
- fps: number;
2764
- size: string;
2765
- aspect: number;
2766
2747
  small?: {
2767
2748
  width: number;
2768
2749
  height: number;
@@ -2809,19 +2790,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2809
2790
  width: number;
2810
2791
  height: number;
2811
2792
  duration: number;
2812
- audio_encode: string;
2813
- audio_bitrate: string;
2814
- audio_channels: string;
2793
+ fps: number;
2794
+ size: string;
2795
+ aspect: number;
2815
2796
  original: {
2816
2797
  width: number;
2817
2798
  height: number;
2818
2799
  duration: number;
2819
- bitrate: number;
2820
2800
  frame_rate: string;
2801
+ bitrate: number;
2821
2802
  };
2822
- fps: number;
2823
- size: string;
2824
- aspect: number;
2803
+ audio_encode: string;
2804
+ audio_bitrate: string;
2805
+ audio_channels: string;
2825
2806
  small?: {
2826
2807
  width: number;
2827
2808
  height: number;
@@ -2829,6 +2810,25 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2829
2810
  aspect: number;
2830
2811
  } | null | undefined;
2831
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
2832
  } | {
2833
2833
  id: string;
2834
2834
  type: "unknown";
@@ -2936,7 +2936,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2936
2936
  avatar_static: string;
2937
2937
  header: string;
2938
2938
  header_static: string;
2939
- loacked: string;
2939
+ locked: boolean;
2940
2940
  fields: {
2941
2941
  value: string;
2942
2942
  name: string;
@@ -2957,7 +2957,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2957
2957
  statuses_count: number;
2958
2958
  followers_count: number;
2959
2959
  following_count: number;
2960
- moved: {
2960
+ noindex?: boolean | null | undefined;
2961
+ suspended?: boolean | undefined;
2962
+ limited?: boolean | undefined;
2963
+ moved?: {
2961
2964
  id: string;
2962
2965
  url: string;
2963
2966
  username: string;
@@ -2968,7 +2971,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2968
2971
  avatar_static: string;
2969
2972
  header: string;
2970
2973
  header_static: string;
2971
- loacked: string;
2974
+ locked: boolean;
2972
2975
  fields: {
2973
2976
  value: string;
2974
2977
  name: string;
@@ -2992,35 +2995,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
2992
2995
  noindex?: boolean | null | undefined;
2993
2996
  suspended?: boolean | undefined;
2994
2997
  limited?: boolean | undefined;
2995
- } | null;
2996
- noindex?: boolean | null | undefined;
2997
- suspended?: boolean | undefined;
2998
- limited?: boolean | undefined;
2998
+ } | null | undefined;
2999
2999
  };
3000
3000
  uri: string;
3001
3001
  visibility: "public" | "unlist" | "private" | "direct";
3002
3002
  sensitive: boolean;
3003
3003
  spoiler_text: string;
3004
3004
  media_attachments: ({
3005
- id: string;
3006
- type: "audio";
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
- duration: number;
3015
- audio_encode: string;
3016
- audio_bitrate: string;
3017
- audio_channels: string;
3018
- original: {
3019
- duration: number;
3020
- bitrate: number;
3021
- };
3022
- };
3023
- } | {
3024
3005
  id: string;
3025
3006
  type: "gifv";
3026
3007
  url: string;
@@ -3033,16 +3014,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3033
3014
  width: number;
3034
3015
  height: number;
3035
3016
  duration: number;
3017
+ fps: number;
3018
+ size: string;
3019
+ aspect: number;
3036
3020
  original: {
3037
3021
  width: number;
3038
3022
  height: number;
3039
3023
  duration: number;
3040
- bitrate: number;
3041
3024
  frame_rate: string;
3025
+ bitrate: number;
3042
3026
  };
3043
- fps: number;
3044
- size: string;
3045
- aspect: number;
3046
3027
  small?: {
3047
3028
  width: number;
3048
3029
  height: number;
@@ -3089,19 +3070,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3089
3070
  width: number;
3090
3071
  height: number;
3091
3072
  duration: number;
3092
- audio_encode: string;
3093
- audio_bitrate: string;
3094
- audio_channels: string;
3073
+ fps: number;
3074
+ size: string;
3075
+ aspect: number;
3095
3076
  original: {
3096
3077
  width: number;
3097
3078
  height: number;
3098
3079
  duration: number;
3099
- bitrate: number;
3100
3080
  frame_rate: string;
3081
+ bitrate: number;
3101
3082
  };
3102
- fps: number;
3103
- size: string;
3104
- aspect: number;
3083
+ audio_encode: string;
3084
+ audio_bitrate: string;
3085
+ audio_channels: string;
3105
3086
  small?: {
3106
3087
  width: number;
3107
3088
  height: number;
@@ -3109,6 +3090,25 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3109
3090
  aspect: number;
3110
3091
  } | null | undefined;
3111
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
3112
  } | {
3113
3113
  id: string;
3114
3114
  type: "unknown";
@@ -3186,7 +3186,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3186
3186
  avatar_static: string;
3187
3187
  header: string;
3188
3188
  header_static: string;
3189
- loacked: string;
3189
+ locked: boolean;
3190
3190
  fields: {
3191
3191
  value: string;
3192
3192
  name: string;
@@ -3207,7 +3207,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3207
3207
  statuses_count: number;
3208
3208
  followers_count: number;
3209
3209
  following_count: number;
3210
- moved: {
3210
+ noindex?: boolean | null | undefined;
3211
+ suspended?: boolean | undefined;
3212
+ limited?: boolean | undefined;
3213
+ moved?: {
3211
3214
  id: string;
3212
3215
  url: string;
3213
3216
  username: string;
@@ -3218,7 +3221,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3218
3221
  avatar_static: string;
3219
3222
  header: string;
3220
3223
  header_static: string;
3221
- loacked: string;
3224
+ locked: boolean;
3222
3225
  fields: {
3223
3226
  value: string;
3224
3227
  name: string;
@@ -3242,35 +3245,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3242
3245
  noindex?: boolean | null | undefined;
3243
3246
  suspended?: boolean | undefined;
3244
3247
  limited?: boolean | undefined;
3245
- } | null;
3246
- noindex?: boolean | null | undefined;
3247
- suspended?: boolean | undefined;
3248
- limited?: boolean | undefined;
3248
+ } | null | undefined;
3249
3249
  };
3250
3250
  uri: string;
3251
3251
  visibility: "public" | "unlist" | "private" | "direct";
3252
3252
  sensitive: boolean;
3253
3253
  spoiler_text: string;
3254
3254
  media_attachments: ({
3255
- id: string;
3256
- type: "audio";
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
- duration: number;
3265
- audio_encode: string;
3266
- audio_bitrate: string;
3267
- audio_channels: string;
3268
- original: {
3269
- duration: number;
3270
- bitrate: number;
3271
- };
3272
- };
3273
- } | {
3274
3255
  id: string;
3275
3256
  type: "gifv";
3276
3257
  url: string;
@@ -3283,16 +3264,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3283
3264
  width: number;
3284
3265
  height: number;
3285
3266
  duration: number;
3267
+ fps: number;
3268
+ size: string;
3269
+ aspect: number;
3286
3270
  original: {
3287
3271
  width: number;
3288
3272
  height: number;
3289
3273
  duration: number;
3290
- bitrate: number;
3291
3274
  frame_rate: string;
3275
+ bitrate: number;
3292
3276
  };
3293
- fps: number;
3294
- size: string;
3295
- aspect: number;
3296
3277
  small?: {
3297
3278
  width: number;
3298
3279
  height: number;
@@ -3339,19 +3320,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3339
3320
  width: number;
3340
3321
  height: number;
3341
3322
  duration: number;
3342
- audio_encode: string;
3343
- audio_bitrate: string;
3344
- audio_channels: string;
3323
+ fps: number;
3324
+ size: string;
3325
+ aspect: number;
3345
3326
  original: {
3346
3327
  width: number;
3347
3328
  height: number;
3348
3329
  duration: number;
3349
- bitrate: number;
3350
3330
  frame_rate: string;
3331
+ bitrate: number;
3351
3332
  };
3352
- fps: number;
3353
- size: string;
3354
- aspect: number;
3333
+ audio_encode: string;
3334
+ audio_bitrate: string;
3335
+ audio_channels: string;
3355
3336
  small?: {
3356
3337
  width: number;
3357
3338
  height: number;
@@ -3359,6 +3340,25 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3359
3340
  aspect: number;
3360
3341
  } | null | undefined;
3361
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
3362
  } | {
3363
3363
  id: string;
3364
3364
  type: "unknown";
@@ -3495,7 +3495,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3495
3495
  avatar_static: string;
3496
3496
  header: string;
3497
3497
  header_static: string;
3498
- loacked: string;
3498
+ locked: boolean;
3499
3499
  fields: {
3500
3500
  value: string;
3501
3501
  name: string;
@@ -3516,7 +3516,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3516
3516
  statuses_count: number;
3517
3517
  followers_count: number;
3518
3518
  following_count: number;
3519
- moved: {
3519
+ noindex?: boolean | null | undefined;
3520
+ suspended?: boolean | undefined;
3521
+ limited?: boolean | undefined;
3522
+ moved?: {
3520
3523
  id: string;
3521
3524
  url: string;
3522
3525
  username: string;
@@ -3527,7 +3530,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3527
3530
  avatar_static: string;
3528
3531
  header: string;
3529
3532
  header_static: string;
3530
- loacked: string;
3533
+ locked: boolean;
3531
3534
  fields: {
3532
3535
  value: string;
3533
3536
  name: string;
@@ -3551,35 +3554,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3551
3554
  noindex?: boolean | null | undefined;
3552
3555
  suspended?: boolean | undefined;
3553
3556
  limited?: boolean | undefined;
3554
- } | null;
3555
- noindex?: boolean | null | undefined;
3556
- suspended?: boolean | undefined;
3557
- limited?: boolean | undefined;
3557
+ } | null | undefined;
3558
3558
  };
3559
3559
  uri: string;
3560
3560
  visibility: "public" | "unlist" | "private" | "direct";
3561
3561
  sensitive: boolean;
3562
3562
  spoiler_text: string;
3563
3563
  media_attachments: ({
3564
- id: string;
3565
- type: "audio";
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
- duration: number;
3574
- audio_encode: string;
3575
- audio_bitrate: string;
3576
- audio_channels: string;
3577
- original: {
3578
- duration: number;
3579
- bitrate: number;
3580
- };
3581
- };
3582
- } | {
3583
3564
  id: string;
3584
3565
  type: "gifv";
3585
3566
  url: string;
@@ -3592,16 +3573,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3592
3573
  width: number;
3593
3574
  height: number;
3594
3575
  duration: number;
3576
+ fps: number;
3577
+ size: string;
3578
+ aspect: number;
3595
3579
  original: {
3596
3580
  width: number;
3597
3581
  height: number;
3598
3582
  duration: number;
3599
- bitrate: number;
3600
3583
  frame_rate: string;
3584
+ bitrate: number;
3601
3585
  };
3602
- fps: number;
3603
- size: string;
3604
- aspect: number;
3605
3586
  small?: {
3606
3587
  width: number;
3607
3588
  height: number;
@@ -3648,19 +3629,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3648
3629
  width: number;
3649
3630
  height: number;
3650
3631
  duration: number;
3651
- audio_encode: string;
3652
- audio_bitrate: string;
3653
- audio_channels: string;
3632
+ fps: number;
3633
+ size: string;
3634
+ aspect: number;
3654
3635
  original: {
3655
3636
  width: number;
3656
3637
  height: number;
3657
3638
  duration: number;
3658
- bitrate: number;
3659
3639
  frame_rate: string;
3640
+ bitrate: number;
3660
3641
  };
3661
- fps: number;
3662
- size: string;
3663
- aspect: number;
3642
+ audio_encode: string;
3643
+ audio_bitrate: string;
3644
+ audio_channels: string;
3664
3645
  small?: {
3665
3646
  width: number;
3666
3647
  height: number;
@@ -3668,6 +3649,25 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3668
3649
  aspect: number;
3669
3650
  } | null | undefined;
3670
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
3671
  } | {
3672
3672
  id: string;
3673
3673
  type: "unknown";
@@ -3745,7 +3745,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3745
3745
  avatar_static: string;
3746
3746
  header: string;
3747
3747
  header_static: string;
3748
- loacked: string;
3748
+ locked: boolean;
3749
3749
  fields: {
3750
3750
  value: string;
3751
3751
  name: string;
@@ -3766,7 +3766,10 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3766
3766
  statuses_count: number;
3767
3767
  followers_count: number;
3768
3768
  following_count: number;
3769
- moved: {
3769
+ noindex?: boolean | null | undefined;
3770
+ suspended?: boolean | undefined;
3771
+ limited?: boolean | undefined;
3772
+ moved?: {
3770
3773
  id: string;
3771
3774
  url: string;
3772
3775
  username: string;
@@ -3777,7 +3780,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3777
3780
  avatar_static: string;
3778
3781
  header: string;
3779
3782
  header_static: string;
3780
- loacked: string;
3783
+ locked: boolean;
3781
3784
  fields: {
3782
3785
  value: string;
3783
3786
  name: string;
@@ -3801,35 +3804,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3801
3804
  noindex?: boolean | null | undefined;
3802
3805
  suspended?: boolean | undefined;
3803
3806
  limited?: boolean | undefined;
3804
- } | null;
3805
- noindex?: boolean | null | undefined;
3806
- suspended?: boolean | undefined;
3807
- limited?: boolean | undefined;
3807
+ } | null | undefined;
3808
3808
  };
3809
3809
  uri: string;
3810
3810
  visibility: "public" | "unlist" | "private" | "direct";
3811
3811
  sensitive: boolean;
3812
3812
  spoiler_text: string;
3813
3813
  media_attachments: ({
3814
- id: string;
3815
- type: "audio";
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
- duration: number;
3824
- audio_encode: string;
3825
- audio_bitrate: string;
3826
- audio_channels: string;
3827
- original: {
3828
- duration: number;
3829
- bitrate: number;
3830
- };
3831
- };
3832
- } | {
3833
3814
  id: string;
3834
3815
  type: "gifv";
3835
3816
  url: string;
@@ -3842,16 +3823,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3842
3823
  width: number;
3843
3824
  height: number;
3844
3825
  duration: number;
3826
+ fps: number;
3827
+ size: string;
3828
+ aspect: number;
3845
3829
  original: {
3846
3830
  width: number;
3847
3831
  height: number;
3848
3832
  duration: number;
3849
- bitrate: number;
3850
3833
  frame_rate: string;
3834
+ bitrate: number;
3851
3835
  };
3852
- fps: number;
3853
- size: string;
3854
- aspect: number;
3855
3836
  small?: {
3856
3837
  width: number;
3857
3838
  height: number;
@@ -3898,19 +3879,19 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3898
3879
  width: number;
3899
3880
  height: number;
3900
3881
  duration: number;
3901
- audio_encode: string;
3902
- audio_bitrate: string;
3903
- audio_channels: string;
3882
+ fps: number;
3883
+ size: string;
3884
+ aspect: number;
3904
3885
  original: {
3905
3886
  width: number;
3906
3887
  height: number;
3907
3888
  duration: number;
3908
- bitrate: number;
3909
3889
  frame_rate: string;
3890
+ bitrate: number;
3910
3891
  };
3911
- fps: number;
3912
- size: string;
3913
- aspect: number;
3892
+ audio_encode: string;
3893
+ audio_bitrate: string;
3894
+ audio_channels: string;
3914
3895
  small?: {
3915
3896
  width: number;
3916
3897
  height: number;
@@ -3918,6 +3899,25 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
3918
3899
  aspect: number;
3919
3900
  } | null | undefined;
3920
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
3921
  } | {
3922
3922
  id: string;
3923
3923
  type: "unknown";