@llun/activities.schema 0.2.21 → 0.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/mastodon/account/source.js +2 -8
- package/dist/cjs/mastodon/mediaAttachment/audio.js +4 -4
- package/dist/cjs/mastodon/mediaAttachment/base.js +8 -4
- package/dist/cjs/mastodon/mediaAttachment/gifv.js +10 -8
- package/dist/cjs/mastodon/mediaAttachment/image.js +4 -2
- package/dist/cjs/mastodon/mediaAttachment/index.js +8 -1
- package/dist/cjs/mastodon/mediaAttachment/video.js +13 -11
- package/dist/cjs/mastodon/status/base.js +1 -1
- package/dist/esm/mastodon/account/source.js +2 -8
- package/dist/esm/mastodon/mediaAttachment/audio.js +4 -4
- package/dist/esm/mastodon/mediaAttachment/base.js +8 -4
- package/dist/esm/mastodon/mediaAttachment/gifv.js +10 -8
- package/dist/esm/mastodon/mediaAttachment/image.js +4 -2
- package/dist/esm/mastodon/mediaAttachment/index.js +7 -0
- package/dist/esm/mastodon/mediaAttachment/video.js +13 -11
- package/dist/esm/mastodon/status/base.js +1 -1
- package/dist/types/mastodon/account/source.d.ts +3 -3
- package/dist/types/mastodon/account.d.ts +12 -12
- package/dist/types/mastodon/mediaAttachment/audio.d.ts +28 -28
- package/dist/types/mastodon/mediaAttachment/base.d.ts +6 -6
- package/dist/types/mastodon/mediaAttachment/gifv.d.ts +48 -48
- package/dist/types/mastodon/mediaAttachment/image.d.ts +12 -12
- package/dist/types/mastodon/mediaAttachment/index.d.ts +737 -157
- package/dist/types/mastodon/mediaAttachment/unknown.d.ts +6 -6
- package/dist/types/mastodon/mediaAttachment/video.d.ts +63 -63
- package/dist/types/mastodon/status/base.d.ts +245 -245
- package/dist/types/mastodon/status/index.d.ts +566 -566
- package/package.json +1 -1
- package/src/mastodon/account/source.ts +4 -8
- package/src/mastodon/mediaAttachment/audio.ts +4 -4
- package/src/mastodon/mediaAttachment/base.ts +11 -7
- package/src/mastodon/mediaAttachment/gifv.ts +28 -26
- package/src/mastodon/mediaAttachment/image.ts +20 -18
- package/src/mastodon/mediaAttachment/index.ts +8 -0
- package/src/mastodon/mediaAttachment/video.ts +32 -30
- package/src/mastodon/status/base.ts +1 -1
- /package/dist/cjs/mastodon/{status/visibility.js → visibility.js} +0 -0
- /package/dist/esm/mastodon/{status/visibility.js → visibility.js} +0 -0
- /package/dist/types/mastodon/{status/visibility.d.ts → visibility.d.ts} +0 -0
- /package/src/mastodon/{status/visibility.ts → visibility.ts} +0 -0
|
@@ -30,7 +30,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
30
30
|
name: string;
|
|
31
31
|
verified_at: string | null;
|
|
32
32
|
}>, "many">;
|
|
33
|
-
privacy: z.
|
|
33
|
+
privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
34
34
|
sensitive: z.ZodBoolean;
|
|
35
35
|
language: z.ZodString;
|
|
36
36
|
follow_requests_count: z.ZodNumber;
|
|
@@ -41,7 +41,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41
41
|
name: string;
|
|
42
42
|
verified_at: string | null;
|
|
43
43
|
}[];
|
|
44
|
-
privacy: "public" | "
|
|
44
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
45
45
|
sensitive: boolean;
|
|
46
46
|
language: string;
|
|
47
47
|
follow_requests_count: number;
|
|
@@ -52,7 +52,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
52
52
|
name: string;
|
|
53
53
|
verified_at: string | null;
|
|
54
54
|
}[];
|
|
55
|
-
privacy: "public" | "
|
|
55
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
56
56
|
sensitive: boolean;
|
|
57
57
|
language: string;
|
|
58
58
|
follow_requests_count: number;
|
|
@@ -129,7 +129,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
129
129
|
name: string;
|
|
130
130
|
verified_at: string | null;
|
|
131
131
|
}>, "many">;
|
|
132
|
-
privacy: z.
|
|
132
|
+
privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
133
133
|
sensitive: z.ZodBoolean;
|
|
134
134
|
language: z.ZodString;
|
|
135
135
|
follow_requests_count: z.ZodNumber;
|
|
@@ -140,7 +140,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
140
140
|
name: string;
|
|
141
141
|
verified_at: string | null;
|
|
142
142
|
}[];
|
|
143
|
-
privacy: "public" | "
|
|
143
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
144
144
|
sensitive: boolean;
|
|
145
145
|
language: string;
|
|
146
146
|
follow_requests_count: number;
|
|
@@ -151,7 +151,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
151
151
|
name: string;
|
|
152
152
|
verified_at: string | null;
|
|
153
153
|
}[];
|
|
154
|
-
privacy: "public" | "
|
|
154
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
155
155
|
sensitive: boolean;
|
|
156
156
|
language: string;
|
|
157
157
|
follow_requests_count: number;
|
|
@@ -224,7 +224,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
224
224
|
name: string;
|
|
225
225
|
verified_at: string | null;
|
|
226
226
|
}[];
|
|
227
|
-
privacy: "public" | "
|
|
227
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
228
228
|
sensitive: boolean;
|
|
229
229
|
language: string;
|
|
230
230
|
follow_requests_count: number;
|
|
@@ -272,7 +272,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
272
272
|
name: string;
|
|
273
273
|
verified_at: string | null;
|
|
274
274
|
}[];
|
|
275
|
-
privacy: "public" | "
|
|
275
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
276
276
|
sensitive: boolean;
|
|
277
277
|
language: string;
|
|
278
278
|
follow_requests_count: number;
|
|
@@ -321,7 +321,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
321
321
|
name: string;
|
|
322
322
|
verified_at: string | null;
|
|
323
323
|
}[];
|
|
324
|
-
privacy: "public" | "
|
|
324
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
325
325
|
sensitive: boolean;
|
|
326
326
|
language: string;
|
|
327
327
|
follow_requests_count: number;
|
|
@@ -369,7 +369,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
369
369
|
name: string;
|
|
370
370
|
verified_at: string | null;
|
|
371
371
|
}[];
|
|
372
|
-
privacy: "public" | "
|
|
372
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
373
373
|
sensitive: boolean;
|
|
374
374
|
language: string;
|
|
375
375
|
follow_requests_count: number;
|
|
@@ -418,7 +418,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
418
418
|
name: string;
|
|
419
419
|
verified_at: string | null;
|
|
420
420
|
}[];
|
|
421
|
-
privacy: "public" | "
|
|
421
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
422
422
|
sensitive: boolean;
|
|
423
423
|
language: string;
|
|
424
424
|
follow_requests_count: number;
|
|
@@ -466,7 +466,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
466
466
|
name: string;
|
|
467
467
|
verified_at: string | null;
|
|
468
468
|
}[];
|
|
469
|
-
privacy: "public" | "
|
|
469
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
470
470
|
sensitive: boolean;
|
|
471
471
|
language: string;
|
|
472
472
|
follow_requests_count: number;
|
|
@@ -498,13 +498,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
498
498
|
media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
499
499
|
id: z.ZodString;
|
|
500
500
|
url: z.ZodString;
|
|
501
|
-
preview_url: z.ZodString
|
|
501
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
502
502
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
503
503
|
description: z.ZodNullable<z.ZodString>;
|
|
504
|
-
bluehash: z.ZodString
|
|
504
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
505
505
|
}, {
|
|
506
506
|
type: z.ZodLiteral<"image">;
|
|
507
|
-
meta: z.ZodObject<{
|
|
507
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
508
508
|
original: z.ZodObject<{
|
|
509
509
|
width: z.ZodNumber;
|
|
510
510
|
height: z.ZodNumber;
|
|
@@ -581,16 +581,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
581
581
|
x: number;
|
|
582
582
|
y: number;
|
|
583
583
|
} | null | undefined;
|
|
584
|
-
}
|
|
584
|
+
}>>>;
|
|
585
585
|
}>, "strip", z.ZodTypeAny, {
|
|
586
586
|
id: string;
|
|
587
587
|
type: "image";
|
|
588
588
|
description: string | null;
|
|
589
589
|
url: string;
|
|
590
|
-
preview_url: string;
|
|
590
|
+
preview_url: string | null;
|
|
591
591
|
remote_url: string | null;
|
|
592
|
-
bluehash: string;
|
|
593
|
-
meta
|
|
592
|
+
bluehash: string | null;
|
|
593
|
+
meta?: {
|
|
594
594
|
original: {
|
|
595
595
|
width: number;
|
|
596
596
|
height: number;
|
|
@@ -607,16 +607,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
607
607
|
x: number;
|
|
608
608
|
y: number;
|
|
609
609
|
} | null | undefined;
|
|
610
|
-
};
|
|
610
|
+
} | null | undefined;
|
|
611
611
|
}, {
|
|
612
612
|
id: string;
|
|
613
613
|
type: "image";
|
|
614
614
|
description: string | null;
|
|
615
615
|
url: string;
|
|
616
|
-
preview_url: string;
|
|
616
|
+
preview_url: string | null;
|
|
617
617
|
remote_url: string | null;
|
|
618
|
-
bluehash: string;
|
|
619
|
-
meta
|
|
618
|
+
bluehash: string | null;
|
|
619
|
+
meta?: {
|
|
620
620
|
original: {
|
|
621
621
|
width: number;
|
|
622
622
|
height: number;
|
|
@@ -633,20 +633,20 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
633
633
|
x: number;
|
|
634
634
|
y: number;
|
|
635
635
|
} | null | undefined;
|
|
636
|
-
};
|
|
636
|
+
} | null | undefined;
|
|
637
637
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
638
638
|
id: z.ZodString;
|
|
639
639
|
url: z.ZodString;
|
|
640
|
-
preview_url: z.ZodString
|
|
640
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
641
641
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
642
642
|
description: z.ZodNullable<z.ZodString>;
|
|
643
|
-
bluehash: z.ZodString
|
|
643
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
644
644
|
}, {
|
|
645
645
|
type: z.ZodLiteral<"gifv">;
|
|
646
|
-
meta: z.ZodObject<{
|
|
647
|
-
length: z.ZodString
|
|
648
|
-
duration: z.ZodNumber
|
|
649
|
-
fps: z.ZodNumber
|
|
646
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
647
|
+
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
648
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
649
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
650
650
|
size: z.ZodString;
|
|
651
651
|
width: z.ZodNumber;
|
|
652
652
|
height: z.ZodNumber;
|
|
@@ -654,21 +654,21 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
654
654
|
original: z.ZodObject<{
|
|
655
655
|
width: z.ZodNumber;
|
|
656
656
|
height: z.ZodNumber;
|
|
657
|
-
frame_rate: z.ZodString
|
|
658
|
-
duration: z.ZodNumber
|
|
659
|
-
bitrate: z.ZodNumber
|
|
657
|
+
frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
658
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
659
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
660
660
|
}, "strip", z.ZodTypeAny, {
|
|
661
661
|
width: number;
|
|
662
662
|
height: number;
|
|
663
|
-
duration
|
|
664
|
-
frame_rate
|
|
665
|
-
bitrate
|
|
663
|
+
duration?: number | null | undefined;
|
|
664
|
+
frame_rate?: string | null | undefined;
|
|
665
|
+
bitrate?: number | null | undefined;
|
|
666
666
|
}, {
|
|
667
667
|
width: number;
|
|
668
668
|
height: number;
|
|
669
|
-
duration
|
|
670
|
-
frame_rate
|
|
671
|
-
bitrate
|
|
669
|
+
duration?: number | null | undefined;
|
|
670
|
+
frame_rate?: string | null | undefined;
|
|
671
|
+
bitrate?: number | null | undefined;
|
|
672
672
|
}>;
|
|
673
673
|
small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
674
674
|
width: z.ZodNumber;
|
|
@@ -687,20 +687,20 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
687
687
|
aspect: number;
|
|
688
688
|
}>>>;
|
|
689
689
|
}, "strip", z.ZodTypeAny, {
|
|
690
|
-
length: string;
|
|
691
690
|
width: number;
|
|
692
691
|
height: number;
|
|
693
|
-
duration: number;
|
|
694
|
-
fps: number;
|
|
695
692
|
size: string;
|
|
696
693
|
aspect: number;
|
|
697
694
|
original: {
|
|
698
695
|
width: number;
|
|
699
696
|
height: number;
|
|
700
|
-
duration
|
|
701
|
-
frame_rate
|
|
702
|
-
bitrate
|
|
697
|
+
duration?: number | null | undefined;
|
|
698
|
+
frame_rate?: string | null | undefined;
|
|
699
|
+
bitrate?: number | null | undefined;
|
|
703
700
|
};
|
|
701
|
+
length?: string | null | undefined;
|
|
702
|
+
duration?: number | null | undefined;
|
|
703
|
+
fps?: number | null | undefined;
|
|
704
704
|
small?: {
|
|
705
705
|
width: number;
|
|
706
706
|
height: number;
|
|
@@ -708,125 +708,125 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
708
708
|
aspect: number;
|
|
709
709
|
} | null | undefined;
|
|
710
710
|
}, {
|
|
711
|
-
length: string;
|
|
712
711
|
width: number;
|
|
713
712
|
height: number;
|
|
714
|
-
duration: number;
|
|
715
|
-
fps: number;
|
|
716
713
|
size: string;
|
|
717
714
|
aspect: number;
|
|
718
715
|
original: {
|
|
719
716
|
width: number;
|
|
720
717
|
height: number;
|
|
721
|
-
duration
|
|
722
|
-
frame_rate
|
|
723
|
-
bitrate
|
|
718
|
+
duration?: number | null | undefined;
|
|
719
|
+
frame_rate?: string | null | undefined;
|
|
720
|
+
bitrate?: number | null | undefined;
|
|
724
721
|
};
|
|
722
|
+
length?: string | null | undefined;
|
|
723
|
+
duration?: number | null | undefined;
|
|
724
|
+
fps?: number | null | undefined;
|
|
725
725
|
small?: {
|
|
726
726
|
width: number;
|
|
727
727
|
height: number;
|
|
728
728
|
size: string;
|
|
729
729
|
aspect: number;
|
|
730
730
|
} | null | undefined;
|
|
731
|
-
}
|
|
731
|
+
}>>>;
|
|
732
732
|
}>, "strip", z.ZodTypeAny, {
|
|
733
733
|
id: string;
|
|
734
734
|
type: "gifv";
|
|
735
735
|
description: string | null;
|
|
736
736
|
url: string;
|
|
737
|
-
preview_url: string;
|
|
737
|
+
preview_url: string | null;
|
|
738
738
|
remote_url: string | null;
|
|
739
|
-
bluehash: string;
|
|
740
|
-
meta
|
|
741
|
-
length: string;
|
|
739
|
+
bluehash: string | null;
|
|
740
|
+
meta?: {
|
|
742
741
|
width: number;
|
|
743
742
|
height: number;
|
|
744
|
-
duration: number;
|
|
745
|
-
fps: number;
|
|
746
743
|
size: string;
|
|
747
744
|
aspect: number;
|
|
748
745
|
original: {
|
|
749
746
|
width: number;
|
|
750
747
|
height: number;
|
|
751
|
-
duration
|
|
752
|
-
frame_rate
|
|
753
|
-
bitrate
|
|
748
|
+
duration?: number | null | undefined;
|
|
749
|
+
frame_rate?: string | null | undefined;
|
|
750
|
+
bitrate?: number | null | undefined;
|
|
754
751
|
};
|
|
752
|
+
length?: string | null | undefined;
|
|
753
|
+
duration?: number | null | undefined;
|
|
754
|
+
fps?: number | null | undefined;
|
|
755
755
|
small?: {
|
|
756
756
|
width: number;
|
|
757
757
|
height: number;
|
|
758
758
|
size: string;
|
|
759
759
|
aspect: number;
|
|
760
760
|
} | null | undefined;
|
|
761
|
-
};
|
|
761
|
+
} | null | undefined;
|
|
762
762
|
}, {
|
|
763
763
|
id: string;
|
|
764
764
|
type: "gifv";
|
|
765
765
|
description: string | null;
|
|
766
766
|
url: string;
|
|
767
|
-
preview_url: string;
|
|
767
|
+
preview_url: string | null;
|
|
768
768
|
remote_url: string | null;
|
|
769
|
-
bluehash: string;
|
|
770
|
-
meta
|
|
771
|
-
length: string;
|
|
769
|
+
bluehash: string | null;
|
|
770
|
+
meta?: {
|
|
772
771
|
width: number;
|
|
773
772
|
height: number;
|
|
774
|
-
duration: number;
|
|
775
|
-
fps: number;
|
|
776
773
|
size: string;
|
|
777
774
|
aspect: number;
|
|
778
775
|
original: {
|
|
779
776
|
width: number;
|
|
780
777
|
height: number;
|
|
781
|
-
duration
|
|
782
|
-
frame_rate
|
|
783
|
-
bitrate
|
|
778
|
+
duration?: number | null | undefined;
|
|
779
|
+
frame_rate?: string | null | undefined;
|
|
780
|
+
bitrate?: number | null | undefined;
|
|
784
781
|
};
|
|
782
|
+
length?: string | null | undefined;
|
|
783
|
+
duration?: number | null | undefined;
|
|
784
|
+
fps?: number | null | undefined;
|
|
785
785
|
small?: {
|
|
786
786
|
width: number;
|
|
787
787
|
height: number;
|
|
788
788
|
size: string;
|
|
789
789
|
aspect: number;
|
|
790
790
|
} | null | undefined;
|
|
791
|
-
};
|
|
791
|
+
} | null | undefined;
|
|
792
792
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
793
793
|
id: z.ZodString;
|
|
794
794
|
url: z.ZodString;
|
|
795
|
-
preview_url: z.ZodString
|
|
795
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
796
796
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
797
797
|
description: z.ZodNullable<z.ZodString>;
|
|
798
|
-
bluehash: z.ZodString
|
|
798
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
799
799
|
}, {
|
|
800
800
|
type: z.ZodLiteral<"video">;
|
|
801
|
-
meta: z.ZodObject<{
|
|
802
|
-
length: z.ZodString
|
|
803
|
-
duration: z.ZodNumber
|
|
804
|
-
fps: z.ZodNumber
|
|
801
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
802
|
+
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
803
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
804
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
805
805
|
size: z.ZodString;
|
|
806
806
|
width: z.ZodNumber;
|
|
807
807
|
height: z.ZodNumber;
|
|
808
808
|
aspect: z.ZodNumber;
|
|
809
|
-
audio_encode: z.ZodString
|
|
810
|
-
audio_bitrate: z.ZodString
|
|
811
|
-
audio_channels: z.ZodString
|
|
809
|
+
audio_encode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
810
|
+
audio_bitrate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
811
|
+
audio_channels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
812
812
|
original: z.ZodObject<{
|
|
813
813
|
width: z.ZodNumber;
|
|
814
814
|
height: z.ZodNumber;
|
|
815
|
-
frame_rate: z.ZodString
|
|
816
|
-
duration: z.ZodNumber
|
|
817
|
-
bitrate: z.ZodNumber
|
|
815
|
+
frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
816
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
817
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
818
818
|
}, "strip", z.ZodTypeAny, {
|
|
819
819
|
width: number;
|
|
820
820
|
height: number;
|
|
821
|
-
duration
|
|
822
|
-
frame_rate
|
|
823
|
-
bitrate
|
|
821
|
+
duration?: number | null | undefined;
|
|
822
|
+
frame_rate?: string | null | undefined;
|
|
823
|
+
bitrate?: number | null | undefined;
|
|
824
824
|
}, {
|
|
825
825
|
width: number;
|
|
826
826
|
height: number;
|
|
827
|
-
duration
|
|
828
|
-
frame_rate
|
|
829
|
-
bitrate
|
|
827
|
+
duration?: number | null | undefined;
|
|
828
|
+
frame_rate?: string | null | undefined;
|
|
829
|
+
bitrate?: number | null | undefined;
|
|
830
830
|
}>;
|
|
831
831
|
small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
832
832
|
width: z.ZodNumber;
|
|
@@ -845,211 +845,211 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
845
845
|
aspect: number;
|
|
846
846
|
}>>>;
|
|
847
847
|
}, "strip", z.ZodTypeAny, {
|
|
848
|
-
length: string;
|
|
849
848
|
width: number;
|
|
850
849
|
height: number;
|
|
851
|
-
duration: number;
|
|
852
|
-
fps: number;
|
|
853
850
|
size: string;
|
|
854
851
|
aspect: number;
|
|
855
852
|
original: {
|
|
856
853
|
width: number;
|
|
857
854
|
height: number;
|
|
858
|
-
duration
|
|
859
|
-
frame_rate
|
|
860
|
-
bitrate
|
|
855
|
+
duration?: number | null | undefined;
|
|
856
|
+
frame_rate?: string | null | undefined;
|
|
857
|
+
bitrate?: number | null | undefined;
|
|
861
858
|
};
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
859
|
+
length?: string | null | undefined;
|
|
860
|
+
duration?: number | null | undefined;
|
|
861
|
+
fps?: number | null | undefined;
|
|
865
862
|
small?: {
|
|
866
863
|
width: number;
|
|
867
864
|
height: number;
|
|
868
865
|
size: string;
|
|
869
866
|
aspect: number;
|
|
870
867
|
} | null | undefined;
|
|
868
|
+
audio_encode?: string | null | undefined;
|
|
869
|
+
audio_bitrate?: string | null | undefined;
|
|
870
|
+
audio_channels?: string | null | undefined;
|
|
871
871
|
}, {
|
|
872
|
-
length: string;
|
|
873
872
|
width: number;
|
|
874
873
|
height: number;
|
|
875
|
-
duration: number;
|
|
876
|
-
fps: number;
|
|
877
874
|
size: string;
|
|
878
875
|
aspect: number;
|
|
879
876
|
original: {
|
|
880
877
|
width: number;
|
|
881
878
|
height: number;
|
|
882
|
-
duration
|
|
883
|
-
frame_rate
|
|
884
|
-
bitrate
|
|
879
|
+
duration?: number | null | undefined;
|
|
880
|
+
frame_rate?: string | null | undefined;
|
|
881
|
+
bitrate?: number | null | undefined;
|
|
885
882
|
};
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
883
|
+
length?: string | null | undefined;
|
|
884
|
+
duration?: number | null | undefined;
|
|
885
|
+
fps?: number | null | undefined;
|
|
889
886
|
small?: {
|
|
890
887
|
width: number;
|
|
891
888
|
height: number;
|
|
892
889
|
size: string;
|
|
893
890
|
aspect: number;
|
|
894
891
|
} | null | undefined;
|
|
895
|
-
|
|
892
|
+
audio_encode?: string | null | undefined;
|
|
893
|
+
audio_bitrate?: string | null | undefined;
|
|
894
|
+
audio_channels?: string | null | undefined;
|
|
895
|
+
}>>>;
|
|
896
896
|
}>, "strip", z.ZodTypeAny, {
|
|
897
897
|
id: string;
|
|
898
898
|
type: "video";
|
|
899
899
|
description: string | null;
|
|
900
900
|
url: string;
|
|
901
|
-
preview_url: string;
|
|
901
|
+
preview_url: string | null;
|
|
902
902
|
remote_url: string | null;
|
|
903
|
-
bluehash: string;
|
|
904
|
-
meta
|
|
905
|
-
length: string;
|
|
903
|
+
bluehash: string | null;
|
|
904
|
+
meta?: {
|
|
906
905
|
width: number;
|
|
907
906
|
height: number;
|
|
908
|
-
duration: number;
|
|
909
|
-
fps: number;
|
|
910
907
|
size: string;
|
|
911
908
|
aspect: number;
|
|
912
909
|
original: {
|
|
913
910
|
width: number;
|
|
914
911
|
height: number;
|
|
915
|
-
duration
|
|
916
|
-
frame_rate
|
|
917
|
-
bitrate
|
|
912
|
+
duration?: number | null | undefined;
|
|
913
|
+
frame_rate?: string | null | undefined;
|
|
914
|
+
bitrate?: number | null | undefined;
|
|
918
915
|
};
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
916
|
+
length?: string | null | undefined;
|
|
917
|
+
duration?: number | null | undefined;
|
|
918
|
+
fps?: number | null | undefined;
|
|
922
919
|
small?: {
|
|
923
920
|
width: number;
|
|
924
921
|
height: number;
|
|
925
922
|
size: string;
|
|
926
923
|
aspect: number;
|
|
927
924
|
} | null | undefined;
|
|
928
|
-
|
|
925
|
+
audio_encode?: string | null | undefined;
|
|
926
|
+
audio_bitrate?: string | null | undefined;
|
|
927
|
+
audio_channels?: string | null | undefined;
|
|
928
|
+
} | null | undefined;
|
|
929
929
|
}, {
|
|
930
930
|
id: string;
|
|
931
931
|
type: "video";
|
|
932
932
|
description: string | null;
|
|
933
933
|
url: string;
|
|
934
|
-
preview_url: string;
|
|
934
|
+
preview_url: string | null;
|
|
935
935
|
remote_url: string | null;
|
|
936
|
-
bluehash: string;
|
|
937
|
-
meta
|
|
938
|
-
length: string;
|
|
936
|
+
bluehash: string | null;
|
|
937
|
+
meta?: {
|
|
939
938
|
width: number;
|
|
940
939
|
height: number;
|
|
941
|
-
duration: number;
|
|
942
|
-
fps: number;
|
|
943
940
|
size: string;
|
|
944
941
|
aspect: number;
|
|
945
942
|
original: {
|
|
946
943
|
width: number;
|
|
947
944
|
height: number;
|
|
948
|
-
duration
|
|
949
|
-
frame_rate
|
|
950
|
-
bitrate
|
|
945
|
+
duration?: number | null | undefined;
|
|
946
|
+
frame_rate?: string | null | undefined;
|
|
947
|
+
bitrate?: number | null | undefined;
|
|
951
948
|
};
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
949
|
+
length?: string | null | undefined;
|
|
950
|
+
duration?: number | null | undefined;
|
|
951
|
+
fps?: number | null | undefined;
|
|
955
952
|
small?: {
|
|
956
953
|
width: number;
|
|
957
954
|
height: number;
|
|
958
955
|
size: string;
|
|
959
956
|
aspect: number;
|
|
960
957
|
} | null | undefined;
|
|
961
|
-
|
|
958
|
+
audio_encode?: string | null | undefined;
|
|
959
|
+
audio_bitrate?: string | null | undefined;
|
|
960
|
+
audio_channels?: string | null | undefined;
|
|
961
|
+
} | null | undefined;
|
|
962
962
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
963
963
|
id: z.ZodString;
|
|
964
964
|
url: z.ZodString;
|
|
965
|
-
preview_url: z.ZodString
|
|
965
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
966
966
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
967
967
|
description: z.ZodNullable<z.ZodString>;
|
|
968
|
-
bluehash: z.ZodString
|
|
968
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
969
969
|
}, {
|
|
970
970
|
type: z.ZodLiteral<"audio">;
|
|
971
971
|
meta: z.ZodObject<{
|
|
972
972
|
length: z.ZodString;
|
|
973
973
|
duration: z.ZodNumber;
|
|
974
|
-
audio_encode: z.ZodString
|
|
975
|
-
audio_bitrate: z.ZodString
|
|
976
|
-
audio_channels: z.ZodString
|
|
974
|
+
audio_encode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
975
|
+
audio_bitrate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
976
|
+
audio_channels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
977
977
|
original: z.ZodObject<{
|
|
978
978
|
duration: z.ZodNumber;
|
|
979
|
-
bitrate: z.ZodNumber
|
|
979
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
980
980
|
}, "strip", z.ZodTypeAny, {
|
|
981
981
|
duration: number;
|
|
982
|
-
bitrate
|
|
982
|
+
bitrate?: number | null | undefined;
|
|
983
983
|
}, {
|
|
984
984
|
duration: number;
|
|
985
|
-
bitrate
|
|
985
|
+
bitrate?: number | null | undefined;
|
|
986
986
|
}>;
|
|
987
987
|
}, "strip", z.ZodTypeAny, {
|
|
988
988
|
length: string;
|
|
989
989
|
duration: number;
|
|
990
990
|
original: {
|
|
991
991
|
duration: number;
|
|
992
|
-
bitrate
|
|
992
|
+
bitrate?: number | null | undefined;
|
|
993
993
|
};
|
|
994
|
-
audio_encode
|
|
995
|
-
audio_bitrate
|
|
996
|
-
audio_channels
|
|
994
|
+
audio_encode?: string | null | undefined;
|
|
995
|
+
audio_bitrate?: string | null | undefined;
|
|
996
|
+
audio_channels?: string | null | undefined;
|
|
997
997
|
}, {
|
|
998
998
|
length: string;
|
|
999
999
|
duration: number;
|
|
1000
1000
|
original: {
|
|
1001
1001
|
duration: number;
|
|
1002
|
-
bitrate
|
|
1002
|
+
bitrate?: number | null | undefined;
|
|
1003
1003
|
};
|
|
1004
|
-
audio_encode
|
|
1005
|
-
audio_bitrate
|
|
1006
|
-
audio_channels
|
|
1004
|
+
audio_encode?: string | null | undefined;
|
|
1005
|
+
audio_bitrate?: string | null | undefined;
|
|
1006
|
+
audio_channels?: string | null | undefined;
|
|
1007
1007
|
}>;
|
|
1008
1008
|
}>, "strip", z.ZodTypeAny, {
|
|
1009
1009
|
id: string;
|
|
1010
1010
|
type: "audio";
|
|
1011
1011
|
description: string | null;
|
|
1012
1012
|
url: string;
|
|
1013
|
-
preview_url: string;
|
|
1013
|
+
preview_url: string | null;
|
|
1014
1014
|
remote_url: string | null;
|
|
1015
|
-
bluehash: string;
|
|
1015
|
+
bluehash: string | null;
|
|
1016
1016
|
meta: {
|
|
1017
1017
|
length: string;
|
|
1018
1018
|
duration: number;
|
|
1019
1019
|
original: {
|
|
1020
1020
|
duration: number;
|
|
1021
|
-
bitrate
|
|
1021
|
+
bitrate?: number | null | undefined;
|
|
1022
1022
|
};
|
|
1023
|
-
audio_encode
|
|
1024
|
-
audio_bitrate
|
|
1025
|
-
audio_channels
|
|
1023
|
+
audio_encode?: string | null | undefined;
|
|
1024
|
+
audio_bitrate?: string | null | undefined;
|
|
1025
|
+
audio_channels?: string | null | undefined;
|
|
1026
1026
|
};
|
|
1027
1027
|
}, {
|
|
1028
1028
|
id: string;
|
|
1029
1029
|
type: "audio";
|
|
1030
1030
|
description: string | null;
|
|
1031
1031
|
url: string;
|
|
1032
|
-
preview_url: string;
|
|
1032
|
+
preview_url: string | null;
|
|
1033
1033
|
remote_url: string | null;
|
|
1034
|
-
bluehash: string;
|
|
1034
|
+
bluehash: string | null;
|
|
1035
1035
|
meta: {
|
|
1036
1036
|
length: string;
|
|
1037
1037
|
duration: number;
|
|
1038
1038
|
original: {
|
|
1039
1039
|
duration: number;
|
|
1040
|
-
bitrate
|
|
1040
|
+
bitrate?: number | null | undefined;
|
|
1041
1041
|
};
|
|
1042
|
-
audio_encode
|
|
1043
|
-
audio_bitrate
|
|
1044
|
-
audio_channels
|
|
1042
|
+
audio_encode?: string | null | undefined;
|
|
1043
|
+
audio_bitrate?: string | null | undefined;
|
|
1044
|
+
audio_channels?: string | null | undefined;
|
|
1045
1045
|
};
|
|
1046
1046
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1047
1047
|
id: z.ZodString;
|
|
1048
1048
|
url: z.ZodString;
|
|
1049
|
-
preview_url: z.ZodString
|
|
1049
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
1050
1050
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1051
1051
|
description: z.ZodNullable<z.ZodString>;
|
|
1052
|
-
bluehash: z.ZodString
|
|
1052
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
1053
1053
|
}, {
|
|
1054
1054
|
type: z.ZodLiteral<"unknown">;
|
|
1055
1055
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1057,17 +1057,17 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1057
1057
|
type: "unknown";
|
|
1058
1058
|
description: string | null;
|
|
1059
1059
|
url: string;
|
|
1060
|
-
preview_url: string;
|
|
1060
|
+
preview_url: string | null;
|
|
1061
1061
|
remote_url: string | null;
|
|
1062
|
-
bluehash: string;
|
|
1062
|
+
bluehash: string | null;
|
|
1063
1063
|
}, {
|
|
1064
1064
|
id: string;
|
|
1065
1065
|
type: "unknown";
|
|
1066
1066
|
description: string | null;
|
|
1067
1067
|
url: string;
|
|
1068
|
-
preview_url: string;
|
|
1068
|
+
preview_url: string | null;
|
|
1069
1069
|
remote_url: string | null;
|
|
1070
|
-
bluehash: string;
|
|
1070
|
+
bluehash: string | null;
|
|
1071
1071
|
}>]>, "many">;
|
|
1072
1072
|
application: z.ZodOptional<z.ZodObject<{
|
|
1073
1073
|
name: z.ZodString;
|
|
@@ -1372,7 +1372,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1372
1372
|
name: string;
|
|
1373
1373
|
verified_at: string | null;
|
|
1374
1374
|
}>, "many">;
|
|
1375
|
-
privacy: z.
|
|
1375
|
+
privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
1376
1376
|
sensitive: z.ZodBoolean;
|
|
1377
1377
|
language: z.ZodString;
|
|
1378
1378
|
follow_requests_count: z.ZodNumber;
|
|
@@ -1383,7 +1383,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1383
1383
|
name: string;
|
|
1384
1384
|
verified_at: string | null;
|
|
1385
1385
|
}[];
|
|
1386
|
-
privacy: "public" | "
|
|
1386
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1387
1387
|
sensitive: boolean;
|
|
1388
1388
|
language: string;
|
|
1389
1389
|
follow_requests_count: number;
|
|
@@ -1394,7 +1394,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1394
1394
|
name: string;
|
|
1395
1395
|
verified_at: string | null;
|
|
1396
1396
|
}[];
|
|
1397
|
-
privacy: "public" | "
|
|
1397
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1398
1398
|
sensitive: boolean;
|
|
1399
1399
|
language: string;
|
|
1400
1400
|
follow_requests_count: number;
|
|
@@ -1471,7 +1471,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1471
1471
|
name: string;
|
|
1472
1472
|
verified_at: string | null;
|
|
1473
1473
|
}>, "many">;
|
|
1474
|
-
privacy: z.
|
|
1474
|
+
privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
1475
1475
|
sensitive: z.ZodBoolean;
|
|
1476
1476
|
language: z.ZodString;
|
|
1477
1477
|
follow_requests_count: z.ZodNumber;
|
|
@@ -1482,7 +1482,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1482
1482
|
name: string;
|
|
1483
1483
|
verified_at: string | null;
|
|
1484
1484
|
}[];
|
|
1485
|
-
privacy: "public" | "
|
|
1485
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1486
1486
|
sensitive: boolean;
|
|
1487
1487
|
language: string;
|
|
1488
1488
|
follow_requests_count: number;
|
|
@@ -1493,7 +1493,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1493
1493
|
name: string;
|
|
1494
1494
|
verified_at: string | null;
|
|
1495
1495
|
}[];
|
|
1496
|
-
privacy: "public" | "
|
|
1496
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1497
1497
|
sensitive: boolean;
|
|
1498
1498
|
language: string;
|
|
1499
1499
|
follow_requests_count: number;
|
|
@@ -1566,7 +1566,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1566
1566
|
name: string;
|
|
1567
1567
|
verified_at: string | null;
|
|
1568
1568
|
}[];
|
|
1569
|
-
privacy: "public" | "
|
|
1569
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1570
1570
|
sensitive: boolean;
|
|
1571
1571
|
language: string;
|
|
1572
1572
|
follow_requests_count: number;
|
|
@@ -1614,7 +1614,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1614
1614
|
name: string;
|
|
1615
1615
|
verified_at: string | null;
|
|
1616
1616
|
}[];
|
|
1617
|
-
privacy: "public" | "
|
|
1617
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1618
1618
|
sensitive: boolean;
|
|
1619
1619
|
language: string;
|
|
1620
1620
|
follow_requests_count: number;
|
|
@@ -1663,7 +1663,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1663
1663
|
name: string;
|
|
1664
1664
|
verified_at: string | null;
|
|
1665
1665
|
}[];
|
|
1666
|
-
privacy: "public" | "
|
|
1666
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1667
1667
|
sensitive: boolean;
|
|
1668
1668
|
language: string;
|
|
1669
1669
|
follow_requests_count: number;
|
|
@@ -1711,7 +1711,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1711
1711
|
name: string;
|
|
1712
1712
|
verified_at: string | null;
|
|
1713
1713
|
}[];
|
|
1714
|
-
privacy: "public" | "
|
|
1714
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1715
1715
|
sensitive: boolean;
|
|
1716
1716
|
language: string;
|
|
1717
1717
|
follow_requests_count: number;
|
|
@@ -1760,7 +1760,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1760
1760
|
name: string;
|
|
1761
1761
|
verified_at: string | null;
|
|
1762
1762
|
}[];
|
|
1763
|
-
privacy: "public" | "
|
|
1763
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1764
1764
|
sensitive: boolean;
|
|
1765
1765
|
language: string;
|
|
1766
1766
|
follow_requests_count: number;
|
|
@@ -1808,7 +1808,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1808
1808
|
name: string;
|
|
1809
1809
|
verified_at: string | null;
|
|
1810
1810
|
}[];
|
|
1811
|
-
privacy: "public" | "
|
|
1811
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1812
1812
|
sensitive: boolean;
|
|
1813
1813
|
language: string;
|
|
1814
1814
|
follow_requests_count: number;
|
|
@@ -1840,13 +1840,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1840
1840
|
media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1841
1841
|
id: z.ZodString;
|
|
1842
1842
|
url: z.ZodString;
|
|
1843
|
-
preview_url: z.ZodString
|
|
1843
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
1844
1844
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1845
1845
|
description: z.ZodNullable<z.ZodString>;
|
|
1846
|
-
bluehash: z.ZodString
|
|
1846
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
1847
1847
|
}, {
|
|
1848
1848
|
type: z.ZodLiteral<"image">;
|
|
1849
|
-
meta: z.ZodObject<{
|
|
1849
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1850
1850
|
original: z.ZodObject<{
|
|
1851
1851
|
width: z.ZodNumber;
|
|
1852
1852
|
height: z.ZodNumber;
|
|
@@ -1923,16 +1923,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1923
1923
|
x: number;
|
|
1924
1924
|
y: number;
|
|
1925
1925
|
} | null | undefined;
|
|
1926
|
-
}
|
|
1926
|
+
}>>>;
|
|
1927
1927
|
}>, "strip", z.ZodTypeAny, {
|
|
1928
1928
|
id: string;
|
|
1929
1929
|
type: "image";
|
|
1930
1930
|
description: string | null;
|
|
1931
1931
|
url: string;
|
|
1932
|
-
preview_url: string;
|
|
1932
|
+
preview_url: string | null;
|
|
1933
1933
|
remote_url: string | null;
|
|
1934
|
-
bluehash: string;
|
|
1935
|
-
meta
|
|
1934
|
+
bluehash: string | null;
|
|
1935
|
+
meta?: {
|
|
1936
1936
|
original: {
|
|
1937
1937
|
width: number;
|
|
1938
1938
|
height: number;
|
|
@@ -1949,16 +1949,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1949
1949
|
x: number;
|
|
1950
1950
|
y: number;
|
|
1951
1951
|
} | null | undefined;
|
|
1952
|
-
};
|
|
1952
|
+
} | null | undefined;
|
|
1953
1953
|
}, {
|
|
1954
1954
|
id: string;
|
|
1955
1955
|
type: "image";
|
|
1956
1956
|
description: string | null;
|
|
1957
1957
|
url: string;
|
|
1958
|
-
preview_url: string;
|
|
1958
|
+
preview_url: string | null;
|
|
1959
1959
|
remote_url: string | null;
|
|
1960
|
-
bluehash: string;
|
|
1961
|
-
meta
|
|
1960
|
+
bluehash: string | null;
|
|
1961
|
+
meta?: {
|
|
1962
1962
|
original: {
|
|
1963
1963
|
width: number;
|
|
1964
1964
|
height: number;
|
|
@@ -1975,20 +1975,20 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1975
1975
|
x: number;
|
|
1976
1976
|
y: number;
|
|
1977
1977
|
} | null | undefined;
|
|
1978
|
-
};
|
|
1978
|
+
} | null | undefined;
|
|
1979
1979
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1980
1980
|
id: z.ZodString;
|
|
1981
1981
|
url: z.ZodString;
|
|
1982
|
-
preview_url: z.ZodString
|
|
1982
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
1983
1983
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1984
1984
|
description: z.ZodNullable<z.ZodString>;
|
|
1985
|
-
bluehash: z.ZodString
|
|
1985
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
1986
1986
|
}, {
|
|
1987
1987
|
type: z.ZodLiteral<"gifv">;
|
|
1988
|
-
meta: z.ZodObject<{
|
|
1989
|
-
length: z.ZodString
|
|
1990
|
-
duration: z.ZodNumber
|
|
1991
|
-
fps: z.ZodNumber
|
|
1988
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1989
|
+
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1990
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1991
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1992
1992
|
size: z.ZodString;
|
|
1993
1993
|
width: z.ZodNumber;
|
|
1994
1994
|
height: z.ZodNumber;
|
|
@@ -1996,21 +1996,21 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1996
1996
|
original: z.ZodObject<{
|
|
1997
1997
|
width: z.ZodNumber;
|
|
1998
1998
|
height: z.ZodNumber;
|
|
1999
|
-
frame_rate: z.ZodString
|
|
2000
|
-
duration: z.ZodNumber
|
|
2001
|
-
bitrate: z.ZodNumber
|
|
1999
|
+
frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2000
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2001
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2002
2002
|
}, "strip", z.ZodTypeAny, {
|
|
2003
2003
|
width: number;
|
|
2004
2004
|
height: number;
|
|
2005
|
-
duration
|
|
2006
|
-
frame_rate
|
|
2007
|
-
bitrate
|
|
2005
|
+
duration?: number | null | undefined;
|
|
2006
|
+
frame_rate?: string | null | undefined;
|
|
2007
|
+
bitrate?: number | null | undefined;
|
|
2008
2008
|
}, {
|
|
2009
2009
|
width: number;
|
|
2010
2010
|
height: number;
|
|
2011
|
-
duration
|
|
2012
|
-
frame_rate
|
|
2013
|
-
bitrate
|
|
2011
|
+
duration?: number | null | undefined;
|
|
2012
|
+
frame_rate?: string | null | undefined;
|
|
2013
|
+
bitrate?: number | null | undefined;
|
|
2014
2014
|
}>;
|
|
2015
2015
|
small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2016
2016
|
width: z.ZodNumber;
|
|
@@ -2029,20 +2029,20 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2029
2029
|
aspect: number;
|
|
2030
2030
|
}>>>;
|
|
2031
2031
|
}, "strip", z.ZodTypeAny, {
|
|
2032
|
-
length: string;
|
|
2033
2032
|
width: number;
|
|
2034
2033
|
height: number;
|
|
2035
|
-
duration: number;
|
|
2036
|
-
fps: number;
|
|
2037
2034
|
size: string;
|
|
2038
2035
|
aspect: number;
|
|
2039
2036
|
original: {
|
|
2040
2037
|
width: number;
|
|
2041
2038
|
height: number;
|
|
2042
|
-
duration
|
|
2043
|
-
frame_rate
|
|
2044
|
-
bitrate
|
|
2039
|
+
duration?: number | null | undefined;
|
|
2040
|
+
frame_rate?: string | null | undefined;
|
|
2041
|
+
bitrate?: number | null | undefined;
|
|
2045
2042
|
};
|
|
2043
|
+
length?: string | null | undefined;
|
|
2044
|
+
duration?: number | null | undefined;
|
|
2045
|
+
fps?: number | null | undefined;
|
|
2046
2046
|
small?: {
|
|
2047
2047
|
width: number;
|
|
2048
2048
|
height: number;
|
|
@@ -2050,125 +2050,125 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2050
2050
|
aspect: number;
|
|
2051
2051
|
} | null | undefined;
|
|
2052
2052
|
}, {
|
|
2053
|
-
length: string;
|
|
2054
2053
|
width: number;
|
|
2055
2054
|
height: number;
|
|
2056
|
-
duration: number;
|
|
2057
|
-
fps: number;
|
|
2058
2055
|
size: string;
|
|
2059
2056
|
aspect: number;
|
|
2060
2057
|
original: {
|
|
2061
2058
|
width: number;
|
|
2062
2059
|
height: number;
|
|
2063
|
-
duration
|
|
2064
|
-
frame_rate
|
|
2065
|
-
bitrate
|
|
2060
|
+
duration?: number | null | undefined;
|
|
2061
|
+
frame_rate?: string | null | undefined;
|
|
2062
|
+
bitrate?: number | null | undefined;
|
|
2066
2063
|
};
|
|
2064
|
+
length?: string | null | undefined;
|
|
2065
|
+
duration?: number | null | undefined;
|
|
2066
|
+
fps?: number | null | undefined;
|
|
2067
2067
|
small?: {
|
|
2068
2068
|
width: number;
|
|
2069
2069
|
height: number;
|
|
2070
2070
|
size: string;
|
|
2071
2071
|
aspect: number;
|
|
2072
2072
|
} | null | undefined;
|
|
2073
|
-
}
|
|
2073
|
+
}>>>;
|
|
2074
2074
|
}>, "strip", z.ZodTypeAny, {
|
|
2075
2075
|
id: string;
|
|
2076
2076
|
type: "gifv";
|
|
2077
2077
|
description: string | null;
|
|
2078
2078
|
url: string;
|
|
2079
|
-
preview_url: string;
|
|
2079
|
+
preview_url: string | null;
|
|
2080
2080
|
remote_url: string | null;
|
|
2081
|
-
bluehash: string;
|
|
2082
|
-
meta
|
|
2083
|
-
length: string;
|
|
2081
|
+
bluehash: string | null;
|
|
2082
|
+
meta?: {
|
|
2084
2083
|
width: number;
|
|
2085
2084
|
height: number;
|
|
2086
|
-
duration: number;
|
|
2087
|
-
fps: number;
|
|
2088
2085
|
size: string;
|
|
2089
2086
|
aspect: number;
|
|
2090
2087
|
original: {
|
|
2091
2088
|
width: number;
|
|
2092
2089
|
height: number;
|
|
2093
|
-
duration
|
|
2094
|
-
frame_rate
|
|
2095
|
-
bitrate
|
|
2090
|
+
duration?: number | null | undefined;
|
|
2091
|
+
frame_rate?: string | null | undefined;
|
|
2092
|
+
bitrate?: number | null | undefined;
|
|
2096
2093
|
};
|
|
2094
|
+
length?: string | null | undefined;
|
|
2095
|
+
duration?: number | null | undefined;
|
|
2096
|
+
fps?: number | null | undefined;
|
|
2097
2097
|
small?: {
|
|
2098
2098
|
width: number;
|
|
2099
2099
|
height: number;
|
|
2100
2100
|
size: string;
|
|
2101
2101
|
aspect: number;
|
|
2102
2102
|
} | null | undefined;
|
|
2103
|
-
};
|
|
2103
|
+
} | null | undefined;
|
|
2104
2104
|
}, {
|
|
2105
2105
|
id: string;
|
|
2106
2106
|
type: "gifv";
|
|
2107
2107
|
description: string | null;
|
|
2108
2108
|
url: string;
|
|
2109
|
-
preview_url: string;
|
|
2109
|
+
preview_url: string | null;
|
|
2110
2110
|
remote_url: string | null;
|
|
2111
|
-
bluehash: string;
|
|
2112
|
-
meta
|
|
2113
|
-
length: string;
|
|
2111
|
+
bluehash: string | null;
|
|
2112
|
+
meta?: {
|
|
2114
2113
|
width: number;
|
|
2115
2114
|
height: number;
|
|
2116
|
-
duration: number;
|
|
2117
|
-
fps: number;
|
|
2118
2115
|
size: string;
|
|
2119
2116
|
aspect: number;
|
|
2120
2117
|
original: {
|
|
2121
2118
|
width: number;
|
|
2122
2119
|
height: number;
|
|
2123
|
-
duration
|
|
2124
|
-
frame_rate
|
|
2125
|
-
bitrate
|
|
2120
|
+
duration?: number | null | undefined;
|
|
2121
|
+
frame_rate?: string | null | undefined;
|
|
2122
|
+
bitrate?: number | null | undefined;
|
|
2126
2123
|
};
|
|
2124
|
+
length?: string | null | undefined;
|
|
2125
|
+
duration?: number | null | undefined;
|
|
2126
|
+
fps?: number | null | undefined;
|
|
2127
2127
|
small?: {
|
|
2128
2128
|
width: number;
|
|
2129
2129
|
height: number;
|
|
2130
2130
|
size: string;
|
|
2131
2131
|
aspect: number;
|
|
2132
2132
|
} | null | undefined;
|
|
2133
|
-
};
|
|
2133
|
+
} | null | undefined;
|
|
2134
2134
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2135
2135
|
id: z.ZodString;
|
|
2136
2136
|
url: z.ZodString;
|
|
2137
|
-
preview_url: z.ZodString
|
|
2137
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
2138
2138
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
2139
2139
|
description: z.ZodNullable<z.ZodString>;
|
|
2140
|
-
bluehash: z.ZodString
|
|
2140
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
2141
2141
|
}, {
|
|
2142
2142
|
type: z.ZodLiteral<"video">;
|
|
2143
|
-
meta: z.ZodObject<{
|
|
2144
|
-
length: z.ZodString
|
|
2145
|
-
duration: z.ZodNumber
|
|
2146
|
-
fps: z.ZodNumber
|
|
2143
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2144
|
+
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2145
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2146
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2147
2147
|
size: z.ZodString;
|
|
2148
2148
|
width: z.ZodNumber;
|
|
2149
2149
|
height: z.ZodNumber;
|
|
2150
2150
|
aspect: z.ZodNumber;
|
|
2151
|
-
audio_encode: z.ZodString
|
|
2152
|
-
audio_bitrate: z.ZodString
|
|
2153
|
-
audio_channels: z.ZodString
|
|
2151
|
+
audio_encode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2152
|
+
audio_bitrate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2153
|
+
audio_channels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2154
2154
|
original: z.ZodObject<{
|
|
2155
2155
|
width: z.ZodNumber;
|
|
2156
2156
|
height: z.ZodNumber;
|
|
2157
|
-
frame_rate: z.ZodString
|
|
2158
|
-
duration: z.ZodNumber
|
|
2159
|
-
bitrate: z.ZodNumber
|
|
2157
|
+
frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2158
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2159
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2160
2160
|
}, "strip", z.ZodTypeAny, {
|
|
2161
2161
|
width: number;
|
|
2162
2162
|
height: number;
|
|
2163
|
-
duration
|
|
2164
|
-
frame_rate
|
|
2165
|
-
bitrate
|
|
2163
|
+
duration?: number | null | undefined;
|
|
2164
|
+
frame_rate?: string | null | undefined;
|
|
2165
|
+
bitrate?: number | null | undefined;
|
|
2166
2166
|
}, {
|
|
2167
2167
|
width: number;
|
|
2168
2168
|
height: number;
|
|
2169
|
-
duration
|
|
2170
|
-
frame_rate
|
|
2171
|
-
bitrate
|
|
2169
|
+
duration?: number | null | undefined;
|
|
2170
|
+
frame_rate?: string | null | undefined;
|
|
2171
|
+
bitrate?: number | null | undefined;
|
|
2172
2172
|
}>;
|
|
2173
2173
|
small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2174
2174
|
width: z.ZodNumber;
|
|
@@ -2187,211 +2187,211 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2187
2187
|
aspect: number;
|
|
2188
2188
|
}>>>;
|
|
2189
2189
|
}, "strip", z.ZodTypeAny, {
|
|
2190
|
-
length: string;
|
|
2191
2190
|
width: number;
|
|
2192
2191
|
height: number;
|
|
2193
|
-
duration: number;
|
|
2194
|
-
fps: number;
|
|
2195
2192
|
size: string;
|
|
2196
2193
|
aspect: number;
|
|
2197
2194
|
original: {
|
|
2198
2195
|
width: number;
|
|
2199
2196
|
height: number;
|
|
2200
|
-
duration
|
|
2201
|
-
frame_rate
|
|
2202
|
-
bitrate
|
|
2197
|
+
duration?: number | null | undefined;
|
|
2198
|
+
frame_rate?: string | null | undefined;
|
|
2199
|
+
bitrate?: number | null | undefined;
|
|
2203
2200
|
};
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2201
|
+
length?: string | null | undefined;
|
|
2202
|
+
duration?: number | null | undefined;
|
|
2203
|
+
fps?: number | null | undefined;
|
|
2207
2204
|
small?: {
|
|
2208
2205
|
width: number;
|
|
2209
2206
|
height: number;
|
|
2210
2207
|
size: string;
|
|
2211
2208
|
aspect: number;
|
|
2212
2209
|
} | null | undefined;
|
|
2210
|
+
audio_encode?: string | null | undefined;
|
|
2211
|
+
audio_bitrate?: string | null | undefined;
|
|
2212
|
+
audio_channels?: string | null | undefined;
|
|
2213
2213
|
}, {
|
|
2214
|
-
length: string;
|
|
2215
2214
|
width: number;
|
|
2216
2215
|
height: number;
|
|
2217
|
-
duration: number;
|
|
2218
|
-
fps: number;
|
|
2219
2216
|
size: string;
|
|
2220
2217
|
aspect: number;
|
|
2221
2218
|
original: {
|
|
2222
2219
|
width: number;
|
|
2223
2220
|
height: number;
|
|
2224
|
-
duration
|
|
2225
|
-
frame_rate
|
|
2226
|
-
bitrate
|
|
2221
|
+
duration?: number | null | undefined;
|
|
2222
|
+
frame_rate?: string | null | undefined;
|
|
2223
|
+
bitrate?: number | null | undefined;
|
|
2227
2224
|
};
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2225
|
+
length?: string | null | undefined;
|
|
2226
|
+
duration?: number | null | undefined;
|
|
2227
|
+
fps?: number | null | undefined;
|
|
2231
2228
|
small?: {
|
|
2232
2229
|
width: number;
|
|
2233
2230
|
height: number;
|
|
2234
2231
|
size: string;
|
|
2235
2232
|
aspect: number;
|
|
2236
2233
|
} | null | undefined;
|
|
2237
|
-
|
|
2234
|
+
audio_encode?: string | null | undefined;
|
|
2235
|
+
audio_bitrate?: string | null | undefined;
|
|
2236
|
+
audio_channels?: string | null | undefined;
|
|
2237
|
+
}>>>;
|
|
2238
2238
|
}>, "strip", z.ZodTypeAny, {
|
|
2239
2239
|
id: string;
|
|
2240
2240
|
type: "video";
|
|
2241
2241
|
description: string | null;
|
|
2242
2242
|
url: string;
|
|
2243
|
-
preview_url: string;
|
|
2243
|
+
preview_url: string | null;
|
|
2244
2244
|
remote_url: string | null;
|
|
2245
|
-
bluehash: string;
|
|
2246
|
-
meta
|
|
2247
|
-
length: string;
|
|
2245
|
+
bluehash: string | null;
|
|
2246
|
+
meta?: {
|
|
2248
2247
|
width: number;
|
|
2249
2248
|
height: number;
|
|
2250
|
-
duration: number;
|
|
2251
|
-
fps: number;
|
|
2252
2249
|
size: string;
|
|
2253
2250
|
aspect: number;
|
|
2254
2251
|
original: {
|
|
2255
2252
|
width: number;
|
|
2256
2253
|
height: number;
|
|
2257
|
-
duration
|
|
2258
|
-
frame_rate
|
|
2259
|
-
bitrate
|
|
2254
|
+
duration?: number | null | undefined;
|
|
2255
|
+
frame_rate?: string | null | undefined;
|
|
2256
|
+
bitrate?: number | null | undefined;
|
|
2260
2257
|
};
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2258
|
+
length?: string | null | undefined;
|
|
2259
|
+
duration?: number | null | undefined;
|
|
2260
|
+
fps?: number | null | undefined;
|
|
2264
2261
|
small?: {
|
|
2265
2262
|
width: number;
|
|
2266
2263
|
height: number;
|
|
2267
2264
|
size: string;
|
|
2268
2265
|
aspect: number;
|
|
2269
2266
|
} | null | undefined;
|
|
2270
|
-
|
|
2267
|
+
audio_encode?: string | null | undefined;
|
|
2268
|
+
audio_bitrate?: string | null | undefined;
|
|
2269
|
+
audio_channels?: string | null | undefined;
|
|
2270
|
+
} | null | undefined;
|
|
2271
2271
|
}, {
|
|
2272
2272
|
id: string;
|
|
2273
2273
|
type: "video";
|
|
2274
2274
|
description: string | null;
|
|
2275
2275
|
url: string;
|
|
2276
|
-
preview_url: string;
|
|
2276
|
+
preview_url: string | null;
|
|
2277
2277
|
remote_url: string | null;
|
|
2278
|
-
bluehash: string;
|
|
2279
|
-
meta
|
|
2280
|
-
length: string;
|
|
2278
|
+
bluehash: string | null;
|
|
2279
|
+
meta?: {
|
|
2281
2280
|
width: number;
|
|
2282
2281
|
height: number;
|
|
2283
|
-
duration: number;
|
|
2284
|
-
fps: number;
|
|
2285
2282
|
size: string;
|
|
2286
2283
|
aspect: number;
|
|
2287
2284
|
original: {
|
|
2288
2285
|
width: number;
|
|
2289
2286
|
height: number;
|
|
2290
|
-
duration
|
|
2291
|
-
frame_rate
|
|
2292
|
-
bitrate
|
|
2287
|
+
duration?: number | null | undefined;
|
|
2288
|
+
frame_rate?: string | null | undefined;
|
|
2289
|
+
bitrate?: number | null | undefined;
|
|
2293
2290
|
};
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2291
|
+
length?: string | null | undefined;
|
|
2292
|
+
duration?: number | null | undefined;
|
|
2293
|
+
fps?: number | null | undefined;
|
|
2297
2294
|
small?: {
|
|
2298
2295
|
width: number;
|
|
2299
2296
|
height: number;
|
|
2300
2297
|
size: string;
|
|
2301
2298
|
aspect: number;
|
|
2302
2299
|
} | null | undefined;
|
|
2303
|
-
|
|
2300
|
+
audio_encode?: string | null | undefined;
|
|
2301
|
+
audio_bitrate?: string | null | undefined;
|
|
2302
|
+
audio_channels?: string | null | undefined;
|
|
2303
|
+
} | null | undefined;
|
|
2304
2304
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2305
2305
|
id: z.ZodString;
|
|
2306
2306
|
url: z.ZodString;
|
|
2307
|
-
preview_url: z.ZodString
|
|
2307
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
2308
2308
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
2309
2309
|
description: z.ZodNullable<z.ZodString>;
|
|
2310
|
-
bluehash: z.ZodString
|
|
2310
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
2311
2311
|
}, {
|
|
2312
2312
|
type: z.ZodLiteral<"audio">;
|
|
2313
2313
|
meta: z.ZodObject<{
|
|
2314
2314
|
length: z.ZodString;
|
|
2315
2315
|
duration: z.ZodNumber;
|
|
2316
|
-
audio_encode: z.ZodString
|
|
2317
|
-
audio_bitrate: z.ZodString
|
|
2318
|
-
audio_channels: z.ZodString
|
|
2316
|
+
audio_encode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2317
|
+
audio_bitrate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2318
|
+
audio_channels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2319
2319
|
original: z.ZodObject<{
|
|
2320
2320
|
duration: z.ZodNumber;
|
|
2321
|
-
bitrate: z.ZodNumber
|
|
2321
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2322
2322
|
}, "strip", z.ZodTypeAny, {
|
|
2323
2323
|
duration: number;
|
|
2324
|
-
bitrate
|
|
2324
|
+
bitrate?: number | null | undefined;
|
|
2325
2325
|
}, {
|
|
2326
2326
|
duration: number;
|
|
2327
|
-
bitrate
|
|
2327
|
+
bitrate?: number | null | undefined;
|
|
2328
2328
|
}>;
|
|
2329
2329
|
}, "strip", z.ZodTypeAny, {
|
|
2330
2330
|
length: string;
|
|
2331
2331
|
duration: number;
|
|
2332
2332
|
original: {
|
|
2333
2333
|
duration: number;
|
|
2334
|
-
bitrate
|
|
2334
|
+
bitrate?: number | null | undefined;
|
|
2335
2335
|
};
|
|
2336
|
-
audio_encode
|
|
2337
|
-
audio_bitrate
|
|
2338
|
-
audio_channels
|
|
2336
|
+
audio_encode?: string | null | undefined;
|
|
2337
|
+
audio_bitrate?: string | null | undefined;
|
|
2338
|
+
audio_channels?: string | null | undefined;
|
|
2339
2339
|
}, {
|
|
2340
2340
|
length: string;
|
|
2341
2341
|
duration: number;
|
|
2342
2342
|
original: {
|
|
2343
2343
|
duration: number;
|
|
2344
|
-
bitrate
|
|
2344
|
+
bitrate?: number | null | undefined;
|
|
2345
2345
|
};
|
|
2346
|
-
audio_encode
|
|
2347
|
-
audio_bitrate
|
|
2348
|
-
audio_channels
|
|
2346
|
+
audio_encode?: string | null | undefined;
|
|
2347
|
+
audio_bitrate?: string | null | undefined;
|
|
2348
|
+
audio_channels?: string | null | undefined;
|
|
2349
2349
|
}>;
|
|
2350
2350
|
}>, "strip", z.ZodTypeAny, {
|
|
2351
2351
|
id: string;
|
|
2352
2352
|
type: "audio";
|
|
2353
2353
|
description: string | null;
|
|
2354
2354
|
url: string;
|
|
2355
|
-
preview_url: string;
|
|
2355
|
+
preview_url: string | null;
|
|
2356
2356
|
remote_url: string | null;
|
|
2357
|
-
bluehash: string;
|
|
2357
|
+
bluehash: string | null;
|
|
2358
2358
|
meta: {
|
|
2359
2359
|
length: string;
|
|
2360
2360
|
duration: number;
|
|
2361
2361
|
original: {
|
|
2362
2362
|
duration: number;
|
|
2363
|
-
bitrate
|
|
2363
|
+
bitrate?: number | null | undefined;
|
|
2364
2364
|
};
|
|
2365
|
-
audio_encode
|
|
2366
|
-
audio_bitrate
|
|
2367
|
-
audio_channels
|
|
2365
|
+
audio_encode?: string | null | undefined;
|
|
2366
|
+
audio_bitrate?: string | null | undefined;
|
|
2367
|
+
audio_channels?: string | null | undefined;
|
|
2368
2368
|
};
|
|
2369
2369
|
}, {
|
|
2370
2370
|
id: string;
|
|
2371
2371
|
type: "audio";
|
|
2372
2372
|
description: string | null;
|
|
2373
2373
|
url: string;
|
|
2374
|
-
preview_url: string;
|
|
2374
|
+
preview_url: string | null;
|
|
2375
2375
|
remote_url: string | null;
|
|
2376
|
-
bluehash: string;
|
|
2376
|
+
bluehash: string | null;
|
|
2377
2377
|
meta: {
|
|
2378
2378
|
length: string;
|
|
2379
2379
|
duration: number;
|
|
2380
2380
|
original: {
|
|
2381
2381
|
duration: number;
|
|
2382
|
-
bitrate
|
|
2382
|
+
bitrate?: number | null | undefined;
|
|
2383
2383
|
};
|
|
2384
|
-
audio_encode
|
|
2385
|
-
audio_bitrate
|
|
2386
|
-
audio_channels
|
|
2384
|
+
audio_encode?: string | null | undefined;
|
|
2385
|
+
audio_bitrate?: string | null | undefined;
|
|
2386
|
+
audio_channels?: string | null | undefined;
|
|
2387
2387
|
};
|
|
2388
2388
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2389
2389
|
id: z.ZodString;
|
|
2390
2390
|
url: z.ZodString;
|
|
2391
|
-
preview_url: z.ZodString
|
|
2391
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
2392
2392
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
2393
2393
|
description: z.ZodNullable<z.ZodString>;
|
|
2394
|
-
bluehash: z.ZodString
|
|
2394
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
2395
2395
|
}, {
|
|
2396
2396
|
type: z.ZodLiteral<"unknown">;
|
|
2397
2397
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2399,17 +2399,17 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2399
2399
|
type: "unknown";
|
|
2400
2400
|
description: string | null;
|
|
2401
2401
|
url: string;
|
|
2402
|
-
preview_url: string;
|
|
2402
|
+
preview_url: string | null;
|
|
2403
2403
|
remote_url: string | null;
|
|
2404
|
-
bluehash: string;
|
|
2404
|
+
bluehash: string | null;
|
|
2405
2405
|
}, {
|
|
2406
2406
|
id: string;
|
|
2407
2407
|
type: "unknown";
|
|
2408
2408
|
description: string | null;
|
|
2409
2409
|
url: string;
|
|
2410
|
-
preview_url: string;
|
|
2410
|
+
preview_url: string | null;
|
|
2411
2411
|
remote_url: string | null;
|
|
2412
|
-
bluehash: string;
|
|
2412
|
+
bluehash: string | null;
|
|
2413
2413
|
}>]>, "many">;
|
|
2414
2414
|
application: z.ZodOptional<z.ZodObject<{
|
|
2415
2415
|
name: z.ZodString;
|
|
@@ -2722,7 +2722,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2722
2722
|
name: string;
|
|
2723
2723
|
verified_at: string | null;
|
|
2724
2724
|
}[];
|
|
2725
|
-
privacy: "public" | "
|
|
2725
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
2726
2726
|
sensitive: boolean;
|
|
2727
2727
|
language: string;
|
|
2728
2728
|
follow_requests_count: number;
|
|
@@ -2770,7 +2770,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2770
2770
|
name: string;
|
|
2771
2771
|
verified_at: string | null;
|
|
2772
2772
|
}[];
|
|
2773
|
-
privacy: "public" | "
|
|
2773
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
2774
2774
|
sensitive: boolean;
|
|
2775
2775
|
language: string;
|
|
2776
2776
|
follow_requests_count: number;
|
|
@@ -2795,47 +2795,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2795
2795
|
limited?: boolean | undefined;
|
|
2796
2796
|
} | null | undefined;
|
|
2797
2797
|
};
|
|
2798
|
-
visibility: "public" | "
|
|
2798
|
+
visibility: "public" | "unlist" | "private" | "direct";
|
|
2799
2799
|
spoiler_text: string;
|
|
2800
2800
|
media_attachments: ({
|
|
2801
2801
|
id: string;
|
|
2802
2802
|
type: "gifv";
|
|
2803
2803
|
description: string | null;
|
|
2804
2804
|
url: string;
|
|
2805
|
-
preview_url: string;
|
|
2805
|
+
preview_url: string | null;
|
|
2806
2806
|
remote_url: string | null;
|
|
2807
|
-
bluehash: string;
|
|
2808
|
-
meta
|
|
2809
|
-
length: string;
|
|
2807
|
+
bluehash: string | null;
|
|
2808
|
+
meta?: {
|
|
2810
2809
|
width: number;
|
|
2811
2810
|
height: number;
|
|
2812
|
-
duration: number;
|
|
2813
|
-
fps: number;
|
|
2814
2811
|
size: string;
|
|
2815
2812
|
aspect: number;
|
|
2816
2813
|
original: {
|
|
2817
2814
|
width: number;
|
|
2818
2815
|
height: number;
|
|
2819
|
-
duration
|
|
2820
|
-
frame_rate
|
|
2821
|
-
bitrate
|
|
2816
|
+
duration?: number | null | undefined;
|
|
2817
|
+
frame_rate?: string | null | undefined;
|
|
2818
|
+
bitrate?: number | null | undefined;
|
|
2822
2819
|
};
|
|
2820
|
+
length?: string | null | undefined;
|
|
2821
|
+
duration?: number | null | undefined;
|
|
2822
|
+
fps?: number | null | undefined;
|
|
2823
2823
|
small?: {
|
|
2824
2824
|
width: number;
|
|
2825
2825
|
height: number;
|
|
2826
2826
|
size: string;
|
|
2827
2827
|
aspect: number;
|
|
2828
2828
|
} | null | undefined;
|
|
2829
|
-
};
|
|
2829
|
+
} | null | undefined;
|
|
2830
2830
|
} | {
|
|
2831
2831
|
id: string;
|
|
2832
2832
|
type: "image";
|
|
2833
2833
|
description: string | null;
|
|
2834
2834
|
url: string;
|
|
2835
|
-
preview_url: string;
|
|
2835
|
+
preview_url: string | null;
|
|
2836
2836
|
remote_url: string | null;
|
|
2837
|
-
bluehash: string;
|
|
2838
|
-
meta
|
|
2837
|
+
bluehash: string | null;
|
|
2838
|
+
meta?: {
|
|
2839
2839
|
original: {
|
|
2840
2840
|
width: number;
|
|
2841
2841
|
height: number;
|
|
@@ -2852,67 +2852,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2852
2852
|
x: number;
|
|
2853
2853
|
y: number;
|
|
2854
2854
|
} | null | undefined;
|
|
2855
|
-
};
|
|
2855
|
+
} | null | undefined;
|
|
2856
2856
|
} | {
|
|
2857
2857
|
id: string;
|
|
2858
2858
|
type: "video";
|
|
2859
2859
|
description: string | null;
|
|
2860
2860
|
url: string;
|
|
2861
|
-
preview_url: string;
|
|
2861
|
+
preview_url: string | null;
|
|
2862
2862
|
remote_url: string | null;
|
|
2863
|
-
bluehash: string;
|
|
2864
|
-
meta
|
|
2865
|
-
length: string;
|
|
2863
|
+
bluehash: string | null;
|
|
2864
|
+
meta?: {
|
|
2866
2865
|
width: number;
|
|
2867
2866
|
height: number;
|
|
2868
|
-
duration: number;
|
|
2869
|
-
fps: number;
|
|
2870
2867
|
size: string;
|
|
2871
2868
|
aspect: number;
|
|
2872
2869
|
original: {
|
|
2873
2870
|
width: number;
|
|
2874
2871
|
height: number;
|
|
2875
|
-
duration
|
|
2876
|
-
frame_rate
|
|
2877
|
-
bitrate
|
|
2872
|
+
duration?: number | null | undefined;
|
|
2873
|
+
frame_rate?: string | null | undefined;
|
|
2874
|
+
bitrate?: number | null | undefined;
|
|
2878
2875
|
};
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2876
|
+
length?: string | null | undefined;
|
|
2877
|
+
duration?: number | null | undefined;
|
|
2878
|
+
fps?: number | null | undefined;
|
|
2882
2879
|
small?: {
|
|
2883
2880
|
width: number;
|
|
2884
2881
|
height: number;
|
|
2885
2882
|
size: string;
|
|
2886
2883
|
aspect: number;
|
|
2887
2884
|
} | null | undefined;
|
|
2888
|
-
|
|
2885
|
+
audio_encode?: string | null | undefined;
|
|
2886
|
+
audio_bitrate?: string | null | undefined;
|
|
2887
|
+
audio_channels?: string | null | undefined;
|
|
2888
|
+
} | null | undefined;
|
|
2889
2889
|
} | {
|
|
2890
2890
|
id: string;
|
|
2891
2891
|
type: "audio";
|
|
2892
2892
|
description: string | null;
|
|
2893
2893
|
url: string;
|
|
2894
|
-
preview_url: string;
|
|
2894
|
+
preview_url: string | null;
|
|
2895
2895
|
remote_url: string | null;
|
|
2896
|
-
bluehash: string;
|
|
2896
|
+
bluehash: string | null;
|
|
2897
2897
|
meta: {
|
|
2898
2898
|
length: string;
|
|
2899
2899
|
duration: number;
|
|
2900
2900
|
original: {
|
|
2901
2901
|
duration: number;
|
|
2902
|
-
bitrate
|
|
2902
|
+
bitrate?: number | null | undefined;
|
|
2903
2903
|
};
|
|
2904
|
-
audio_encode
|
|
2905
|
-
audio_bitrate
|
|
2906
|
-
audio_channels
|
|
2904
|
+
audio_encode?: string | null | undefined;
|
|
2905
|
+
audio_bitrate?: string | null | undefined;
|
|
2906
|
+
audio_channels?: string | null | undefined;
|
|
2907
2907
|
};
|
|
2908
2908
|
} | {
|
|
2909
2909
|
id: string;
|
|
2910
2910
|
type: "unknown";
|
|
2911
2911
|
description: string | null;
|
|
2912
2912
|
url: string;
|
|
2913
|
-
preview_url: string;
|
|
2913
|
+
preview_url: string | null;
|
|
2914
2914
|
remote_url: string | null;
|
|
2915
|
-
bluehash: string;
|
|
2915
|
+
bluehash: string | null;
|
|
2916
2916
|
})[];
|
|
2917
2917
|
reblogs_count: number;
|
|
2918
2918
|
favourites_count: number;
|
|
@@ -3027,7 +3027,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3027
3027
|
name: string;
|
|
3028
3028
|
verified_at: string | null;
|
|
3029
3029
|
}[];
|
|
3030
|
-
privacy: "public" | "
|
|
3030
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3031
3031
|
sensitive: boolean;
|
|
3032
3032
|
language: string;
|
|
3033
3033
|
follow_requests_count: number;
|
|
@@ -3075,7 +3075,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3075
3075
|
name: string;
|
|
3076
3076
|
verified_at: string | null;
|
|
3077
3077
|
}[];
|
|
3078
|
-
privacy: "public" | "
|
|
3078
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3079
3079
|
sensitive: boolean;
|
|
3080
3080
|
language: string;
|
|
3081
3081
|
follow_requests_count: number;
|
|
@@ -3100,47 +3100,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3100
3100
|
limited?: boolean | undefined;
|
|
3101
3101
|
} | null | undefined;
|
|
3102
3102
|
};
|
|
3103
|
-
visibility: "public" | "
|
|
3103
|
+
visibility: "public" | "unlist" | "private" | "direct";
|
|
3104
3104
|
spoiler_text: string;
|
|
3105
3105
|
media_attachments: ({
|
|
3106
3106
|
id: string;
|
|
3107
3107
|
type: "gifv";
|
|
3108
3108
|
description: string | null;
|
|
3109
3109
|
url: string;
|
|
3110
|
-
preview_url: string;
|
|
3110
|
+
preview_url: string | null;
|
|
3111
3111
|
remote_url: string | null;
|
|
3112
|
-
bluehash: string;
|
|
3113
|
-
meta
|
|
3114
|
-
length: string;
|
|
3112
|
+
bluehash: string | null;
|
|
3113
|
+
meta?: {
|
|
3115
3114
|
width: number;
|
|
3116
3115
|
height: number;
|
|
3117
|
-
duration: number;
|
|
3118
|
-
fps: number;
|
|
3119
3116
|
size: string;
|
|
3120
3117
|
aspect: number;
|
|
3121
3118
|
original: {
|
|
3122
3119
|
width: number;
|
|
3123
3120
|
height: number;
|
|
3124
|
-
duration
|
|
3125
|
-
frame_rate
|
|
3126
|
-
bitrate
|
|
3121
|
+
duration?: number | null | undefined;
|
|
3122
|
+
frame_rate?: string | null | undefined;
|
|
3123
|
+
bitrate?: number | null | undefined;
|
|
3127
3124
|
};
|
|
3125
|
+
length?: string | null | undefined;
|
|
3126
|
+
duration?: number | null | undefined;
|
|
3127
|
+
fps?: number | null | undefined;
|
|
3128
3128
|
small?: {
|
|
3129
3129
|
width: number;
|
|
3130
3130
|
height: number;
|
|
3131
3131
|
size: string;
|
|
3132
3132
|
aspect: number;
|
|
3133
3133
|
} | null | undefined;
|
|
3134
|
-
};
|
|
3134
|
+
} | null | undefined;
|
|
3135
3135
|
} | {
|
|
3136
3136
|
id: string;
|
|
3137
3137
|
type: "image";
|
|
3138
3138
|
description: string | null;
|
|
3139
3139
|
url: string;
|
|
3140
|
-
preview_url: string;
|
|
3140
|
+
preview_url: string | null;
|
|
3141
3141
|
remote_url: string | null;
|
|
3142
|
-
bluehash: string;
|
|
3143
|
-
meta
|
|
3142
|
+
bluehash: string | null;
|
|
3143
|
+
meta?: {
|
|
3144
3144
|
original: {
|
|
3145
3145
|
width: number;
|
|
3146
3146
|
height: number;
|
|
@@ -3157,67 +3157,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3157
3157
|
x: number;
|
|
3158
3158
|
y: number;
|
|
3159
3159
|
} | null | undefined;
|
|
3160
|
-
};
|
|
3160
|
+
} | null | undefined;
|
|
3161
3161
|
} | {
|
|
3162
3162
|
id: string;
|
|
3163
3163
|
type: "video";
|
|
3164
3164
|
description: string | null;
|
|
3165
3165
|
url: string;
|
|
3166
|
-
preview_url: string;
|
|
3166
|
+
preview_url: string | null;
|
|
3167
3167
|
remote_url: string | null;
|
|
3168
|
-
bluehash: string;
|
|
3169
|
-
meta
|
|
3170
|
-
length: string;
|
|
3168
|
+
bluehash: string | null;
|
|
3169
|
+
meta?: {
|
|
3171
3170
|
width: number;
|
|
3172
3171
|
height: number;
|
|
3173
|
-
duration: number;
|
|
3174
|
-
fps: number;
|
|
3175
3172
|
size: string;
|
|
3176
3173
|
aspect: number;
|
|
3177
3174
|
original: {
|
|
3178
3175
|
width: number;
|
|
3179
3176
|
height: number;
|
|
3180
|
-
duration
|
|
3181
|
-
frame_rate
|
|
3182
|
-
bitrate
|
|
3177
|
+
duration?: number | null | undefined;
|
|
3178
|
+
frame_rate?: string | null | undefined;
|
|
3179
|
+
bitrate?: number | null | undefined;
|
|
3183
3180
|
};
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3181
|
+
length?: string | null | undefined;
|
|
3182
|
+
duration?: number | null | undefined;
|
|
3183
|
+
fps?: number | null | undefined;
|
|
3187
3184
|
small?: {
|
|
3188
3185
|
width: number;
|
|
3189
3186
|
height: number;
|
|
3190
3187
|
size: string;
|
|
3191
3188
|
aspect: number;
|
|
3192
3189
|
} | null | undefined;
|
|
3193
|
-
|
|
3190
|
+
audio_encode?: string | null | undefined;
|
|
3191
|
+
audio_bitrate?: string | null | undefined;
|
|
3192
|
+
audio_channels?: string | null | undefined;
|
|
3193
|
+
} | null | undefined;
|
|
3194
3194
|
} | {
|
|
3195
3195
|
id: string;
|
|
3196
3196
|
type: "audio";
|
|
3197
3197
|
description: string | null;
|
|
3198
3198
|
url: string;
|
|
3199
|
-
preview_url: string;
|
|
3199
|
+
preview_url: string | null;
|
|
3200
3200
|
remote_url: string | null;
|
|
3201
|
-
bluehash: string;
|
|
3201
|
+
bluehash: string | null;
|
|
3202
3202
|
meta: {
|
|
3203
3203
|
length: string;
|
|
3204
3204
|
duration: number;
|
|
3205
3205
|
original: {
|
|
3206
3206
|
duration: number;
|
|
3207
|
-
bitrate
|
|
3207
|
+
bitrate?: number | null | undefined;
|
|
3208
3208
|
};
|
|
3209
|
-
audio_encode
|
|
3210
|
-
audio_bitrate
|
|
3211
|
-
audio_channels
|
|
3209
|
+
audio_encode?: string | null | undefined;
|
|
3210
|
+
audio_bitrate?: string | null | undefined;
|
|
3211
|
+
audio_channels?: string | null | undefined;
|
|
3212
3212
|
};
|
|
3213
3213
|
} | {
|
|
3214
3214
|
id: string;
|
|
3215
3215
|
type: "unknown";
|
|
3216
3216
|
description: string | null;
|
|
3217
3217
|
url: string;
|
|
3218
|
-
preview_url: string;
|
|
3218
|
+
preview_url: string | null;
|
|
3219
3219
|
remote_url: string | null;
|
|
3220
|
-
bluehash: string;
|
|
3220
|
+
bluehash: string | null;
|
|
3221
3221
|
})[];
|
|
3222
3222
|
reblogs_count: number;
|
|
3223
3223
|
favourites_count: number;
|
|
@@ -3333,7 +3333,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3333
3333
|
name: string;
|
|
3334
3334
|
verified_at: string | null;
|
|
3335
3335
|
}[];
|
|
3336
|
-
privacy: "public" | "
|
|
3336
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3337
3337
|
sensitive: boolean;
|
|
3338
3338
|
language: string;
|
|
3339
3339
|
follow_requests_count: number;
|
|
@@ -3381,7 +3381,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3381
3381
|
name: string;
|
|
3382
3382
|
verified_at: string | null;
|
|
3383
3383
|
}[];
|
|
3384
|
-
privacy: "public" | "
|
|
3384
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3385
3385
|
sensitive: boolean;
|
|
3386
3386
|
language: string;
|
|
3387
3387
|
follow_requests_count: number;
|
|
@@ -3406,47 +3406,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3406
3406
|
limited?: boolean | undefined;
|
|
3407
3407
|
} | null | undefined;
|
|
3408
3408
|
};
|
|
3409
|
-
visibility: "public" | "
|
|
3409
|
+
visibility: "public" | "unlist" | "private" | "direct";
|
|
3410
3410
|
spoiler_text: string;
|
|
3411
3411
|
media_attachments: ({
|
|
3412
3412
|
id: string;
|
|
3413
3413
|
type: "gifv";
|
|
3414
3414
|
description: string | null;
|
|
3415
3415
|
url: string;
|
|
3416
|
-
preview_url: string;
|
|
3416
|
+
preview_url: string | null;
|
|
3417
3417
|
remote_url: string | null;
|
|
3418
|
-
bluehash: string;
|
|
3419
|
-
meta
|
|
3420
|
-
length: string;
|
|
3418
|
+
bluehash: string | null;
|
|
3419
|
+
meta?: {
|
|
3421
3420
|
width: number;
|
|
3422
3421
|
height: number;
|
|
3423
|
-
duration: number;
|
|
3424
|
-
fps: number;
|
|
3425
3422
|
size: string;
|
|
3426
3423
|
aspect: number;
|
|
3427
3424
|
original: {
|
|
3428
3425
|
width: number;
|
|
3429
3426
|
height: number;
|
|
3430
|
-
duration
|
|
3431
|
-
frame_rate
|
|
3432
|
-
bitrate
|
|
3427
|
+
duration?: number | null | undefined;
|
|
3428
|
+
frame_rate?: string | null | undefined;
|
|
3429
|
+
bitrate?: number | null | undefined;
|
|
3433
3430
|
};
|
|
3431
|
+
length?: string | null | undefined;
|
|
3432
|
+
duration?: number | null | undefined;
|
|
3433
|
+
fps?: number | null | undefined;
|
|
3434
3434
|
small?: {
|
|
3435
3435
|
width: number;
|
|
3436
3436
|
height: number;
|
|
3437
3437
|
size: string;
|
|
3438
3438
|
aspect: number;
|
|
3439
3439
|
} | null | undefined;
|
|
3440
|
-
};
|
|
3440
|
+
} | null | undefined;
|
|
3441
3441
|
} | {
|
|
3442
3442
|
id: string;
|
|
3443
3443
|
type: "image";
|
|
3444
3444
|
description: string | null;
|
|
3445
3445
|
url: string;
|
|
3446
|
-
preview_url: string;
|
|
3446
|
+
preview_url: string | null;
|
|
3447
3447
|
remote_url: string | null;
|
|
3448
|
-
bluehash: string;
|
|
3449
|
-
meta
|
|
3448
|
+
bluehash: string | null;
|
|
3449
|
+
meta?: {
|
|
3450
3450
|
original: {
|
|
3451
3451
|
width: number;
|
|
3452
3452
|
height: number;
|
|
@@ -3463,67 +3463,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3463
3463
|
x: number;
|
|
3464
3464
|
y: number;
|
|
3465
3465
|
} | null | undefined;
|
|
3466
|
-
};
|
|
3466
|
+
} | null | undefined;
|
|
3467
3467
|
} | {
|
|
3468
3468
|
id: string;
|
|
3469
3469
|
type: "video";
|
|
3470
3470
|
description: string | null;
|
|
3471
3471
|
url: string;
|
|
3472
|
-
preview_url: string;
|
|
3472
|
+
preview_url: string | null;
|
|
3473
3473
|
remote_url: string | null;
|
|
3474
|
-
bluehash: string;
|
|
3475
|
-
meta
|
|
3476
|
-
length: string;
|
|
3474
|
+
bluehash: string | null;
|
|
3475
|
+
meta?: {
|
|
3477
3476
|
width: number;
|
|
3478
3477
|
height: number;
|
|
3479
|
-
duration: number;
|
|
3480
|
-
fps: number;
|
|
3481
3478
|
size: string;
|
|
3482
3479
|
aspect: number;
|
|
3483
3480
|
original: {
|
|
3484
3481
|
width: number;
|
|
3485
3482
|
height: number;
|
|
3486
|
-
duration
|
|
3487
|
-
frame_rate
|
|
3488
|
-
bitrate
|
|
3483
|
+
duration?: number | null | undefined;
|
|
3484
|
+
frame_rate?: string | null | undefined;
|
|
3485
|
+
bitrate?: number | null | undefined;
|
|
3489
3486
|
};
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3487
|
+
length?: string | null | undefined;
|
|
3488
|
+
duration?: number | null | undefined;
|
|
3489
|
+
fps?: number | null | undefined;
|
|
3493
3490
|
small?: {
|
|
3494
3491
|
width: number;
|
|
3495
3492
|
height: number;
|
|
3496
3493
|
size: string;
|
|
3497
3494
|
aspect: number;
|
|
3498
3495
|
} | null | undefined;
|
|
3499
|
-
|
|
3496
|
+
audio_encode?: string | null | undefined;
|
|
3497
|
+
audio_bitrate?: string | null | undefined;
|
|
3498
|
+
audio_channels?: string | null | undefined;
|
|
3499
|
+
} | null | undefined;
|
|
3500
3500
|
} | {
|
|
3501
3501
|
id: string;
|
|
3502
3502
|
type: "audio";
|
|
3503
3503
|
description: string | null;
|
|
3504
3504
|
url: string;
|
|
3505
|
-
preview_url: string;
|
|
3505
|
+
preview_url: string | null;
|
|
3506
3506
|
remote_url: string | null;
|
|
3507
|
-
bluehash: string;
|
|
3507
|
+
bluehash: string | null;
|
|
3508
3508
|
meta: {
|
|
3509
3509
|
length: string;
|
|
3510
3510
|
duration: number;
|
|
3511
3511
|
original: {
|
|
3512
3512
|
duration: number;
|
|
3513
|
-
bitrate
|
|
3513
|
+
bitrate?: number | null | undefined;
|
|
3514
3514
|
};
|
|
3515
|
-
audio_encode
|
|
3516
|
-
audio_bitrate
|
|
3517
|
-
audio_channels
|
|
3515
|
+
audio_encode?: string | null | undefined;
|
|
3516
|
+
audio_bitrate?: string | null | undefined;
|
|
3517
|
+
audio_channels?: string | null | undefined;
|
|
3518
3518
|
};
|
|
3519
3519
|
} | {
|
|
3520
3520
|
id: string;
|
|
3521
3521
|
type: "unknown";
|
|
3522
3522
|
description: string | null;
|
|
3523
3523
|
url: string;
|
|
3524
|
-
preview_url: string;
|
|
3524
|
+
preview_url: string | null;
|
|
3525
3525
|
remote_url: string | null;
|
|
3526
|
-
bluehash: string;
|
|
3526
|
+
bluehash: string | null;
|
|
3527
3527
|
})[];
|
|
3528
3528
|
reblogs_count: number;
|
|
3529
3529
|
favourites_count: number;
|
|
@@ -3609,7 +3609,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3609
3609
|
name: string;
|
|
3610
3610
|
verified_at: string | null;
|
|
3611
3611
|
}[];
|
|
3612
|
-
privacy: "public" | "
|
|
3612
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3613
3613
|
sensitive: boolean;
|
|
3614
3614
|
language: string;
|
|
3615
3615
|
follow_requests_count: number;
|
|
@@ -3657,7 +3657,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3657
3657
|
name: string;
|
|
3658
3658
|
verified_at: string | null;
|
|
3659
3659
|
}[];
|
|
3660
|
-
privacy: "public" | "
|
|
3660
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3661
3661
|
sensitive: boolean;
|
|
3662
3662
|
language: string;
|
|
3663
3663
|
follow_requests_count: number;
|
|
@@ -3682,47 +3682,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3682
3682
|
limited?: boolean | undefined;
|
|
3683
3683
|
} | null | undefined;
|
|
3684
3684
|
};
|
|
3685
|
-
visibility: "public" | "
|
|
3685
|
+
visibility: "public" | "unlist" | "private" | "direct";
|
|
3686
3686
|
spoiler_text: string;
|
|
3687
3687
|
media_attachments: ({
|
|
3688
3688
|
id: string;
|
|
3689
3689
|
type: "gifv";
|
|
3690
3690
|
description: string | null;
|
|
3691
3691
|
url: string;
|
|
3692
|
-
preview_url: string;
|
|
3692
|
+
preview_url: string | null;
|
|
3693
3693
|
remote_url: string | null;
|
|
3694
|
-
bluehash: string;
|
|
3695
|
-
meta
|
|
3696
|
-
length: string;
|
|
3694
|
+
bluehash: string | null;
|
|
3695
|
+
meta?: {
|
|
3697
3696
|
width: number;
|
|
3698
3697
|
height: number;
|
|
3699
|
-
duration: number;
|
|
3700
|
-
fps: number;
|
|
3701
3698
|
size: string;
|
|
3702
3699
|
aspect: number;
|
|
3703
3700
|
original: {
|
|
3704
3701
|
width: number;
|
|
3705
3702
|
height: number;
|
|
3706
|
-
duration
|
|
3707
|
-
frame_rate
|
|
3708
|
-
bitrate
|
|
3703
|
+
duration?: number | null | undefined;
|
|
3704
|
+
frame_rate?: string | null | undefined;
|
|
3705
|
+
bitrate?: number | null | undefined;
|
|
3709
3706
|
};
|
|
3707
|
+
length?: string | null | undefined;
|
|
3708
|
+
duration?: number | null | undefined;
|
|
3709
|
+
fps?: number | null | undefined;
|
|
3710
3710
|
small?: {
|
|
3711
3711
|
width: number;
|
|
3712
3712
|
height: number;
|
|
3713
3713
|
size: string;
|
|
3714
3714
|
aspect: number;
|
|
3715
3715
|
} | null | undefined;
|
|
3716
|
-
};
|
|
3716
|
+
} | null | undefined;
|
|
3717
3717
|
} | {
|
|
3718
3718
|
id: string;
|
|
3719
3719
|
type: "image";
|
|
3720
3720
|
description: string | null;
|
|
3721
3721
|
url: string;
|
|
3722
|
-
preview_url: string;
|
|
3722
|
+
preview_url: string | null;
|
|
3723
3723
|
remote_url: string | null;
|
|
3724
|
-
bluehash: string;
|
|
3725
|
-
meta
|
|
3724
|
+
bluehash: string | null;
|
|
3725
|
+
meta?: {
|
|
3726
3726
|
original: {
|
|
3727
3727
|
width: number;
|
|
3728
3728
|
height: number;
|
|
@@ -3739,67 +3739,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3739
3739
|
x: number;
|
|
3740
3740
|
y: number;
|
|
3741
3741
|
} | null | undefined;
|
|
3742
|
-
};
|
|
3742
|
+
} | null | undefined;
|
|
3743
3743
|
} | {
|
|
3744
3744
|
id: string;
|
|
3745
3745
|
type: "video";
|
|
3746
3746
|
description: string | null;
|
|
3747
3747
|
url: string;
|
|
3748
|
-
preview_url: string;
|
|
3748
|
+
preview_url: string | null;
|
|
3749
3749
|
remote_url: string | null;
|
|
3750
|
-
bluehash: string;
|
|
3751
|
-
meta
|
|
3752
|
-
length: string;
|
|
3750
|
+
bluehash: string | null;
|
|
3751
|
+
meta?: {
|
|
3753
3752
|
width: number;
|
|
3754
3753
|
height: number;
|
|
3755
|
-
duration: number;
|
|
3756
|
-
fps: number;
|
|
3757
3754
|
size: string;
|
|
3758
3755
|
aspect: number;
|
|
3759
3756
|
original: {
|
|
3760
3757
|
width: number;
|
|
3761
3758
|
height: number;
|
|
3762
|
-
duration
|
|
3763
|
-
frame_rate
|
|
3764
|
-
bitrate
|
|
3759
|
+
duration?: number | null | undefined;
|
|
3760
|
+
frame_rate?: string | null | undefined;
|
|
3761
|
+
bitrate?: number | null | undefined;
|
|
3765
3762
|
};
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3763
|
+
length?: string | null | undefined;
|
|
3764
|
+
duration?: number | null | undefined;
|
|
3765
|
+
fps?: number | null | undefined;
|
|
3769
3766
|
small?: {
|
|
3770
3767
|
width: number;
|
|
3771
3768
|
height: number;
|
|
3772
3769
|
size: string;
|
|
3773
3770
|
aspect: number;
|
|
3774
3771
|
} | null | undefined;
|
|
3775
|
-
|
|
3772
|
+
audio_encode?: string | null | undefined;
|
|
3773
|
+
audio_bitrate?: string | null | undefined;
|
|
3774
|
+
audio_channels?: string | null | undefined;
|
|
3775
|
+
} | null | undefined;
|
|
3776
3776
|
} | {
|
|
3777
3777
|
id: string;
|
|
3778
3778
|
type: "audio";
|
|
3779
3779
|
description: string | null;
|
|
3780
3780
|
url: string;
|
|
3781
|
-
preview_url: string;
|
|
3781
|
+
preview_url: string | null;
|
|
3782
3782
|
remote_url: string | null;
|
|
3783
|
-
bluehash: string;
|
|
3783
|
+
bluehash: string | null;
|
|
3784
3784
|
meta: {
|
|
3785
3785
|
length: string;
|
|
3786
3786
|
duration: number;
|
|
3787
3787
|
original: {
|
|
3788
3788
|
duration: number;
|
|
3789
|
-
bitrate
|
|
3789
|
+
bitrate?: number | null | undefined;
|
|
3790
3790
|
};
|
|
3791
|
-
audio_encode
|
|
3792
|
-
audio_bitrate
|
|
3793
|
-
audio_channels
|
|
3791
|
+
audio_encode?: string | null | undefined;
|
|
3792
|
+
audio_bitrate?: string | null | undefined;
|
|
3793
|
+
audio_channels?: string | null | undefined;
|
|
3794
3794
|
};
|
|
3795
3795
|
} | {
|
|
3796
3796
|
id: string;
|
|
3797
3797
|
type: "unknown";
|
|
3798
3798
|
description: string | null;
|
|
3799
3799
|
url: string;
|
|
3800
|
-
preview_url: string;
|
|
3800
|
+
preview_url: string | null;
|
|
3801
3801
|
remote_url: string | null;
|
|
3802
|
-
bluehash: string;
|
|
3802
|
+
bluehash: string | null;
|
|
3803
3803
|
})[];
|
|
3804
3804
|
reblogs_count: number;
|
|
3805
3805
|
favourites_count: number;
|
|
@@ -3944,7 +3944,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3944
3944
|
name: string;
|
|
3945
3945
|
verified_at: string | null;
|
|
3946
3946
|
}[];
|
|
3947
|
-
privacy: "public" | "
|
|
3947
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3948
3948
|
sensitive: boolean;
|
|
3949
3949
|
language: string;
|
|
3950
3950
|
follow_requests_count: number;
|
|
@@ -3992,7 +3992,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3992
3992
|
name: string;
|
|
3993
3993
|
verified_at: string | null;
|
|
3994
3994
|
}[];
|
|
3995
|
-
privacy: "public" | "
|
|
3995
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3996
3996
|
sensitive: boolean;
|
|
3997
3997
|
language: string;
|
|
3998
3998
|
follow_requests_count: number;
|
|
@@ -4017,47 +4017,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4017
4017
|
limited?: boolean | undefined;
|
|
4018
4018
|
} | null | undefined;
|
|
4019
4019
|
};
|
|
4020
|
-
visibility: "public" | "
|
|
4020
|
+
visibility: "public" | "unlist" | "private" | "direct";
|
|
4021
4021
|
spoiler_text: string;
|
|
4022
4022
|
media_attachments: ({
|
|
4023
4023
|
id: string;
|
|
4024
4024
|
type: "gifv";
|
|
4025
4025
|
description: string | null;
|
|
4026
4026
|
url: string;
|
|
4027
|
-
preview_url: string;
|
|
4027
|
+
preview_url: string | null;
|
|
4028
4028
|
remote_url: string | null;
|
|
4029
|
-
bluehash: string;
|
|
4030
|
-
meta
|
|
4031
|
-
length: string;
|
|
4029
|
+
bluehash: string | null;
|
|
4030
|
+
meta?: {
|
|
4032
4031
|
width: number;
|
|
4033
4032
|
height: number;
|
|
4034
|
-
duration: number;
|
|
4035
|
-
fps: number;
|
|
4036
4033
|
size: string;
|
|
4037
4034
|
aspect: number;
|
|
4038
4035
|
original: {
|
|
4039
4036
|
width: number;
|
|
4040
4037
|
height: number;
|
|
4041
|
-
duration
|
|
4042
|
-
frame_rate
|
|
4043
|
-
bitrate
|
|
4038
|
+
duration?: number | null | undefined;
|
|
4039
|
+
frame_rate?: string | null | undefined;
|
|
4040
|
+
bitrate?: number | null | undefined;
|
|
4044
4041
|
};
|
|
4042
|
+
length?: string | null | undefined;
|
|
4043
|
+
duration?: number | null | undefined;
|
|
4044
|
+
fps?: number | null | undefined;
|
|
4045
4045
|
small?: {
|
|
4046
4046
|
width: number;
|
|
4047
4047
|
height: number;
|
|
4048
4048
|
size: string;
|
|
4049
4049
|
aspect: number;
|
|
4050
4050
|
} | null | undefined;
|
|
4051
|
-
};
|
|
4051
|
+
} | null | undefined;
|
|
4052
4052
|
} | {
|
|
4053
4053
|
id: string;
|
|
4054
4054
|
type: "image";
|
|
4055
4055
|
description: string | null;
|
|
4056
4056
|
url: string;
|
|
4057
|
-
preview_url: string;
|
|
4057
|
+
preview_url: string | null;
|
|
4058
4058
|
remote_url: string | null;
|
|
4059
|
-
bluehash: string;
|
|
4060
|
-
meta
|
|
4059
|
+
bluehash: string | null;
|
|
4060
|
+
meta?: {
|
|
4061
4061
|
original: {
|
|
4062
4062
|
width: number;
|
|
4063
4063
|
height: number;
|
|
@@ -4074,67 +4074,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4074
4074
|
x: number;
|
|
4075
4075
|
y: number;
|
|
4076
4076
|
} | null | undefined;
|
|
4077
|
-
};
|
|
4077
|
+
} | null | undefined;
|
|
4078
4078
|
} | {
|
|
4079
4079
|
id: string;
|
|
4080
4080
|
type: "video";
|
|
4081
4081
|
description: string | null;
|
|
4082
4082
|
url: string;
|
|
4083
|
-
preview_url: string;
|
|
4083
|
+
preview_url: string | null;
|
|
4084
4084
|
remote_url: string | null;
|
|
4085
|
-
bluehash: string;
|
|
4086
|
-
meta
|
|
4087
|
-
length: string;
|
|
4085
|
+
bluehash: string | null;
|
|
4086
|
+
meta?: {
|
|
4088
4087
|
width: number;
|
|
4089
4088
|
height: number;
|
|
4090
|
-
duration: number;
|
|
4091
|
-
fps: number;
|
|
4092
4089
|
size: string;
|
|
4093
4090
|
aspect: number;
|
|
4094
4091
|
original: {
|
|
4095
4092
|
width: number;
|
|
4096
4093
|
height: number;
|
|
4097
|
-
duration
|
|
4098
|
-
frame_rate
|
|
4099
|
-
bitrate
|
|
4094
|
+
duration?: number | null | undefined;
|
|
4095
|
+
frame_rate?: string | null | undefined;
|
|
4096
|
+
bitrate?: number | null | undefined;
|
|
4100
4097
|
};
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4098
|
+
length?: string | null | undefined;
|
|
4099
|
+
duration?: number | null | undefined;
|
|
4100
|
+
fps?: number | null | undefined;
|
|
4104
4101
|
small?: {
|
|
4105
4102
|
width: number;
|
|
4106
4103
|
height: number;
|
|
4107
4104
|
size: string;
|
|
4108
4105
|
aspect: number;
|
|
4109
4106
|
} | null | undefined;
|
|
4110
|
-
|
|
4107
|
+
audio_encode?: string | null | undefined;
|
|
4108
|
+
audio_bitrate?: string | null | undefined;
|
|
4109
|
+
audio_channels?: string | null | undefined;
|
|
4110
|
+
} | null | undefined;
|
|
4111
4111
|
} | {
|
|
4112
4112
|
id: string;
|
|
4113
4113
|
type: "audio";
|
|
4114
4114
|
description: string | null;
|
|
4115
4115
|
url: string;
|
|
4116
|
-
preview_url: string;
|
|
4116
|
+
preview_url: string | null;
|
|
4117
4117
|
remote_url: string | null;
|
|
4118
|
-
bluehash: string;
|
|
4118
|
+
bluehash: string | null;
|
|
4119
4119
|
meta: {
|
|
4120
4120
|
length: string;
|
|
4121
4121
|
duration: number;
|
|
4122
4122
|
original: {
|
|
4123
4123
|
duration: number;
|
|
4124
|
-
bitrate
|
|
4124
|
+
bitrate?: number | null | undefined;
|
|
4125
4125
|
};
|
|
4126
|
-
audio_encode
|
|
4127
|
-
audio_bitrate
|
|
4128
|
-
audio_channels
|
|
4126
|
+
audio_encode?: string | null | undefined;
|
|
4127
|
+
audio_bitrate?: string | null | undefined;
|
|
4128
|
+
audio_channels?: string | null | undefined;
|
|
4129
4129
|
};
|
|
4130
4130
|
} | {
|
|
4131
4131
|
id: string;
|
|
4132
4132
|
type: "unknown";
|
|
4133
4133
|
description: string | null;
|
|
4134
4134
|
url: string;
|
|
4135
|
-
preview_url: string;
|
|
4135
|
+
preview_url: string | null;
|
|
4136
4136
|
remote_url: string | null;
|
|
4137
|
-
bluehash: string;
|
|
4137
|
+
bluehash: string | null;
|
|
4138
4138
|
})[];
|
|
4139
4139
|
reblogs_count: number;
|
|
4140
4140
|
favourites_count: number;
|
|
@@ -4220,7 +4220,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4220
4220
|
name: string;
|
|
4221
4221
|
verified_at: string | null;
|
|
4222
4222
|
}[];
|
|
4223
|
-
privacy: "public" | "
|
|
4223
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
4224
4224
|
sensitive: boolean;
|
|
4225
4225
|
language: string;
|
|
4226
4226
|
follow_requests_count: number;
|
|
@@ -4268,7 +4268,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4268
4268
|
name: string;
|
|
4269
4269
|
verified_at: string | null;
|
|
4270
4270
|
}[];
|
|
4271
|
-
privacy: "public" | "
|
|
4271
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
4272
4272
|
sensitive: boolean;
|
|
4273
4273
|
language: string;
|
|
4274
4274
|
follow_requests_count: number;
|
|
@@ -4293,47 +4293,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4293
4293
|
limited?: boolean | undefined;
|
|
4294
4294
|
} | null | undefined;
|
|
4295
4295
|
};
|
|
4296
|
-
visibility: "public" | "
|
|
4296
|
+
visibility: "public" | "unlist" | "private" | "direct";
|
|
4297
4297
|
spoiler_text: string;
|
|
4298
4298
|
media_attachments: ({
|
|
4299
4299
|
id: string;
|
|
4300
4300
|
type: "gifv";
|
|
4301
4301
|
description: string | null;
|
|
4302
4302
|
url: string;
|
|
4303
|
-
preview_url: string;
|
|
4303
|
+
preview_url: string | null;
|
|
4304
4304
|
remote_url: string | null;
|
|
4305
|
-
bluehash: string;
|
|
4306
|
-
meta
|
|
4307
|
-
length: string;
|
|
4305
|
+
bluehash: string | null;
|
|
4306
|
+
meta?: {
|
|
4308
4307
|
width: number;
|
|
4309
4308
|
height: number;
|
|
4310
|
-
duration: number;
|
|
4311
|
-
fps: number;
|
|
4312
4309
|
size: string;
|
|
4313
4310
|
aspect: number;
|
|
4314
4311
|
original: {
|
|
4315
4312
|
width: number;
|
|
4316
4313
|
height: number;
|
|
4317
|
-
duration
|
|
4318
|
-
frame_rate
|
|
4319
|
-
bitrate
|
|
4314
|
+
duration?: number | null | undefined;
|
|
4315
|
+
frame_rate?: string | null | undefined;
|
|
4316
|
+
bitrate?: number | null | undefined;
|
|
4320
4317
|
};
|
|
4318
|
+
length?: string | null | undefined;
|
|
4319
|
+
duration?: number | null | undefined;
|
|
4320
|
+
fps?: number | null | undefined;
|
|
4321
4321
|
small?: {
|
|
4322
4322
|
width: number;
|
|
4323
4323
|
height: number;
|
|
4324
4324
|
size: string;
|
|
4325
4325
|
aspect: number;
|
|
4326
4326
|
} | null | undefined;
|
|
4327
|
-
};
|
|
4327
|
+
} | null | undefined;
|
|
4328
4328
|
} | {
|
|
4329
4329
|
id: string;
|
|
4330
4330
|
type: "image";
|
|
4331
4331
|
description: string | null;
|
|
4332
4332
|
url: string;
|
|
4333
|
-
preview_url: string;
|
|
4333
|
+
preview_url: string | null;
|
|
4334
4334
|
remote_url: string | null;
|
|
4335
|
-
bluehash: string;
|
|
4336
|
-
meta
|
|
4335
|
+
bluehash: string | null;
|
|
4336
|
+
meta?: {
|
|
4337
4337
|
original: {
|
|
4338
4338
|
width: number;
|
|
4339
4339
|
height: number;
|
|
@@ -4350,67 +4350,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4350
4350
|
x: number;
|
|
4351
4351
|
y: number;
|
|
4352
4352
|
} | null | undefined;
|
|
4353
|
-
};
|
|
4353
|
+
} | null | undefined;
|
|
4354
4354
|
} | {
|
|
4355
4355
|
id: string;
|
|
4356
4356
|
type: "video";
|
|
4357
4357
|
description: string | null;
|
|
4358
4358
|
url: string;
|
|
4359
|
-
preview_url: string;
|
|
4359
|
+
preview_url: string | null;
|
|
4360
4360
|
remote_url: string | null;
|
|
4361
|
-
bluehash: string;
|
|
4362
|
-
meta
|
|
4363
|
-
length: string;
|
|
4361
|
+
bluehash: string | null;
|
|
4362
|
+
meta?: {
|
|
4364
4363
|
width: number;
|
|
4365
4364
|
height: number;
|
|
4366
|
-
duration: number;
|
|
4367
|
-
fps: number;
|
|
4368
4365
|
size: string;
|
|
4369
4366
|
aspect: number;
|
|
4370
4367
|
original: {
|
|
4371
4368
|
width: number;
|
|
4372
4369
|
height: number;
|
|
4373
|
-
duration
|
|
4374
|
-
frame_rate
|
|
4375
|
-
bitrate
|
|
4370
|
+
duration?: number | null | undefined;
|
|
4371
|
+
frame_rate?: string | null | undefined;
|
|
4372
|
+
bitrate?: number | null | undefined;
|
|
4376
4373
|
};
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
|
|
4374
|
+
length?: string | null | undefined;
|
|
4375
|
+
duration?: number | null | undefined;
|
|
4376
|
+
fps?: number | null | undefined;
|
|
4380
4377
|
small?: {
|
|
4381
4378
|
width: number;
|
|
4382
4379
|
height: number;
|
|
4383
4380
|
size: string;
|
|
4384
4381
|
aspect: number;
|
|
4385
4382
|
} | null | undefined;
|
|
4386
|
-
|
|
4383
|
+
audio_encode?: string | null | undefined;
|
|
4384
|
+
audio_bitrate?: string | null | undefined;
|
|
4385
|
+
audio_channels?: string | null | undefined;
|
|
4386
|
+
} | null | undefined;
|
|
4387
4387
|
} | {
|
|
4388
4388
|
id: string;
|
|
4389
4389
|
type: "audio";
|
|
4390
4390
|
description: string | null;
|
|
4391
4391
|
url: string;
|
|
4392
|
-
preview_url: string;
|
|
4392
|
+
preview_url: string | null;
|
|
4393
4393
|
remote_url: string | null;
|
|
4394
|
-
bluehash: string;
|
|
4394
|
+
bluehash: string | null;
|
|
4395
4395
|
meta: {
|
|
4396
4396
|
length: string;
|
|
4397
4397
|
duration: number;
|
|
4398
4398
|
original: {
|
|
4399
4399
|
duration: number;
|
|
4400
|
-
bitrate
|
|
4400
|
+
bitrate?: number | null | undefined;
|
|
4401
4401
|
};
|
|
4402
|
-
audio_encode
|
|
4403
|
-
audio_bitrate
|
|
4404
|
-
audio_channels
|
|
4402
|
+
audio_encode?: string | null | undefined;
|
|
4403
|
+
audio_bitrate?: string | null | undefined;
|
|
4404
|
+
audio_channels?: string | null | undefined;
|
|
4405
4405
|
};
|
|
4406
4406
|
} | {
|
|
4407
4407
|
id: string;
|
|
4408
4408
|
type: "unknown";
|
|
4409
4409
|
description: string | null;
|
|
4410
4410
|
url: string;
|
|
4411
|
-
preview_url: string;
|
|
4411
|
+
preview_url: string | null;
|
|
4412
4412
|
remote_url: string | null;
|
|
4413
|
-
bluehash: string;
|
|
4413
|
+
bluehash: string | null;
|
|
4414
4414
|
})[];
|
|
4415
4415
|
reblogs_count: number;
|
|
4416
4416
|
favourites_count: number;
|