@llun/activities.schema 0.2.31 → 0.2.33
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/.yarn/install-state.gz +0 -0
- package/dist/cjs/{person.js → actor.js} +8 -5
- package/dist/cjs/index.js +1 -1
- package/dist/esm/{person.js → actor.js} +7 -4
- package/dist/esm/index.js +1 -1
- package/dist/types/actor.d.ts +370 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/like.d.ts +31 -31
- package/dist/types/mastodon/account.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/audio.d.ts +5 -5
- package/dist/types/mastodon/mediaAttachment/base.d.ts +2 -2
- package/dist/types/mastodon/mediaAttachment/gifv.d.ts +5 -5
- package/dist/types/mastodon/mediaAttachment/image.d.ts +5 -5
- package/dist/types/mastodon/mediaAttachment/index.d.ts +50 -50
- package/dist/types/mastodon/mediaAttachment/unknown.d.ts +5 -5
- package/dist/types/mastodon/mediaAttachment/video.d.ts +5 -5
- package/dist/types/mastodon/previewCard.d.ts +4 -4
- package/dist/types/mastodon/status/base.d.ts +46 -46
- package/dist/types/mastodon/status/index.d.ts +109 -109
- package/dist/types/note/attachment.d.ts +2 -2
- package/dist/types/note/baseContent.d.ts +18 -18
- package/dist/types/note/document.d.ts +2 -2
- package/dist/types/note/emoji.d.ts +2 -2
- package/dist/types/note/tag.d.ts +2 -2
- package/dist/types/note.d.ts +21 -21
- package/dist/types/question.d.ts +21 -21
- package/dist/types/undo.d.ts +41 -41
- package/package.json +3 -3
- package/src/{person.ts → actor.ts} +11 -4
- package/src/index.ts +1 -1
- package/dist/types/person.d.ts +0 -121
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const Status: z.ZodObject<
|
|
2
|
+
export declare const Status: z.ZodObject<{
|
|
3
3
|
id: z.ZodString;
|
|
4
4
|
uri: z.ZodString;
|
|
5
|
-
account: z.ZodObject<
|
|
5
|
+
account: z.ZodObject<{
|
|
6
6
|
id: z.ZodString;
|
|
7
7
|
username: z.ZodString;
|
|
8
8
|
acct: z.ZodString;
|
|
@@ -99,7 +99,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
99
99
|
statuses_count: z.ZodNumber;
|
|
100
100
|
followers_count: z.ZodNumber;
|
|
101
101
|
following_count: z.ZodNumber;
|
|
102
|
-
}
|
|
102
|
+
} & {
|
|
103
103
|
moved: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
104
104
|
id: z.ZodString;
|
|
105
105
|
username: z.ZodString;
|
|
@@ -292,7 +292,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
292
292
|
suspended?: boolean | undefined;
|
|
293
293
|
limited?: boolean | undefined;
|
|
294
294
|
}>>>;
|
|
295
|
-
}
|
|
295
|
+
}, "strip", z.ZodTypeAny, {
|
|
296
296
|
id: string;
|
|
297
297
|
url: string;
|
|
298
298
|
note: string;
|
|
@@ -487,14 +487,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
487
487
|
visibility: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
488
488
|
sensitive: z.ZodBoolean;
|
|
489
489
|
spoiler_text: z.ZodString;
|
|
490
|
-
media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<
|
|
490
|
+
media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
491
491
|
id: z.ZodString;
|
|
492
492
|
url: z.ZodString;
|
|
493
493
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
494
494
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
495
495
|
description: z.ZodNullable<z.ZodString>;
|
|
496
496
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
497
|
-
}
|
|
497
|
+
} & {
|
|
498
498
|
type: z.ZodLiteral<"image">;
|
|
499
499
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
500
500
|
original: z.ZodObject<{
|
|
@@ -574,11 +574,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
574
574
|
y: number;
|
|
575
575
|
} | null | undefined;
|
|
576
576
|
}>>>;
|
|
577
|
-
}
|
|
577
|
+
}, "strip", z.ZodTypeAny, {
|
|
578
578
|
id: string;
|
|
579
579
|
type: "image";
|
|
580
|
-
description: string | null;
|
|
581
580
|
url: string;
|
|
581
|
+
description: string | null;
|
|
582
582
|
blurhash: string | null;
|
|
583
583
|
preview_url: string | null;
|
|
584
584
|
remote_url: string | null;
|
|
@@ -603,8 +603,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
603
603
|
}, {
|
|
604
604
|
id: string;
|
|
605
605
|
type: "image";
|
|
606
|
-
description: string | null;
|
|
607
606
|
url: string;
|
|
607
|
+
description: string | null;
|
|
608
608
|
blurhash: string | null;
|
|
609
609
|
preview_url: string | null;
|
|
610
610
|
remote_url: string | null;
|
|
@@ -626,14 +626,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
626
626
|
y: number;
|
|
627
627
|
} | null | undefined;
|
|
628
628
|
} | null | undefined;
|
|
629
|
-
}>, z.ZodObject<
|
|
629
|
+
}>, z.ZodObject<{
|
|
630
630
|
id: z.ZodString;
|
|
631
631
|
url: z.ZodString;
|
|
632
632
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
633
633
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
634
634
|
description: z.ZodNullable<z.ZodString>;
|
|
635
635
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
636
|
-
}
|
|
636
|
+
} & {
|
|
637
637
|
type: z.ZodLiteral<"gifv">;
|
|
638
638
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
639
639
|
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -721,11 +721,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
721
721
|
aspect: number;
|
|
722
722
|
} | null | undefined;
|
|
723
723
|
}>>>;
|
|
724
|
-
}
|
|
724
|
+
}, "strip", z.ZodTypeAny, {
|
|
725
725
|
id: string;
|
|
726
726
|
type: "gifv";
|
|
727
|
-
description: string | null;
|
|
728
727
|
url: string;
|
|
728
|
+
description: string | null;
|
|
729
729
|
blurhash: string | null;
|
|
730
730
|
preview_url: string | null;
|
|
731
731
|
remote_url: string | null;
|
|
@@ -754,8 +754,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
754
754
|
}, {
|
|
755
755
|
id: string;
|
|
756
756
|
type: "gifv";
|
|
757
|
-
description: string | null;
|
|
758
757
|
url: string;
|
|
758
|
+
description: string | null;
|
|
759
759
|
blurhash: string | null;
|
|
760
760
|
preview_url: string | null;
|
|
761
761
|
remote_url: string | null;
|
|
@@ -781,14 +781,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
781
781
|
aspect: number;
|
|
782
782
|
} | null | undefined;
|
|
783
783
|
} | null | undefined;
|
|
784
|
-
}>, z.ZodObject<
|
|
784
|
+
}>, z.ZodObject<{
|
|
785
785
|
id: z.ZodString;
|
|
786
786
|
url: z.ZodString;
|
|
787
787
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
788
788
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
789
789
|
description: z.ZodNullable<z.ZodString>;
|
|
790
790
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
791
|
-
}
|
|
791
|
+
} & {
|
|
792
792
|
type: z.ZodLiteral<"video">;
|
|
793
793
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
794
794
|
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -885,11 +885,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
885
885
|
audio_bitrate?: string | null | undefined;
|
|
886
886
|
audio_channels?: string | null | undefined;
|
|
887
887
|
}>>>;
|
|
888
|
-
}
|
|
888
|
+
}, "strip", z.ZodTypeAny, {
|
|
889
889
|
id: string;
|
|
890
890
|
type: "video";
|
|
891
|
-
description: string | null;
|
|
892
891
|
url: string;
|
|
892
|
+
description: string | null;
|
|
893
893
|
blurhash: string | null;
|
|
894
894
|
preview_url: string | null;
|
|
895
895
|
remote_url: string | null;
|
|
@@ -921,8 +921,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
921
921
|
}, {
|
|
922
922
|
id: string;
|
|
923
923
|
type: "video";
|
|
924
|
-
description: string | null;
|
|
925
924
|
url: string;
|
|
925
|
+
description: string | null;
|
|
926
926
|
blurhash: string | null;
|
|
927
927
|
preview_url: string | null;
|
|
928
928
|
remote_url: string | null;
|
|
@@ -951,14 +951,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
951
951
|
audio_bitrate?: string | null | undefined;
|
|
952
952
|
audio_channels?: string | null | undefined;
|
|
953
953
|
} | null | undefined;
|
|
954
|
-
}>, z.ZodObject<
|
|
954
|
+
}>, z.ZodObject<{
|
|
955
955
|
id: z.ZodString;
|
|
956
956
|
url: z.ZodString;
|
|
957
957
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
958
958
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
959
959
|
description: z.ZodNullable<z.ZodString>;
|
|
960
960
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
961
|
-
}
|
|
961
|
+
} & {
|
|
962
962
|
type: z.ZodLiteral<"audio">;
|
|
963
963
|
meta: z.ZodObject<{
|
|
964
964
|
length: z.ZodString;
|
|
@@ -997,11 +997,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
997
997
|
audio_bitrate?: string | null | undefined;
|
|
998
998
|
audio_channels?: string | null | undefined;
|
|
999
999
|
}>;
|
|
1000
|
-
}
|
|
1000
|
+
}, "strip", z.ZodTypeAny, {
|
|
1001
1001
|
id: string;
|
|
1002
1002
|
type: "audio";
|
|
1003
|
-
description: string | null;
|
|
1004
1003
|
url: string;
|
|
1004
|
+
description: string | null;
|
|
1005
1005
|
blurhash: string | null;
|
|
1006
1006
|
preview_url: string | null;
|
|
1007
1007
|
remote_url: string | null;
|
|
@@ -1019,8 +1019,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1019
1019
|
}, {
|
|
1020
1020
|
id: string;
|
|
1021
1021
|
type: "audio";
|
|
1022
|
-
description: string | null;
|
|
1023
1022
|
url: string;
|
|
1023
|
+
description: string | null;
|
|
1024
1024
|
blurhash: string | null;
|
|
1025
1025
|
preview_url: string | null;
|
|
1026
1026
|
remote_url: string | null;
|
|
@@ -1035,28 +1035,28 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1035
1035
|
audio_bitrate?: string | null | undefined;
|
|
1036
1036
|
audio_channels?: string | null | undefined;
|
|
1037
1037
|
};
|
|
1038
|
-
}>, z.ZodObject<
|
|
1038
|
+
}>, z.ZodObject<{
|
|
1039
1039
|
id: z.ZodString;
|
|
1040
1040
|
url: z.ZodString;
|
|
1041
1041
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
1042
1042
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1043
1043
|
description: z.ZodNullable<z.ZodString>;
|
|
1044
1044
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
1045
|
-
}
|
|
1045
|
+
} & {
|
|
1046
1046
|
type: z.ZodLiteral<"unknown">;
|
|
1047
|
-
}
|
|
1047
|
+
}, "strip", z.ZodTypeAny, {
|
|
1048
1048
|
id: string;
|
|
1049
1049
|
type: "unknown";
|
|
1050
|
-
description: string | null;
|
|
1051
1050
|
url: string;
|
|
1051
|
+
description: string | null;
|
|
1052
1052
|
blurhash: string | null;
|
|
1053
1053
|
preview_url: string | null;
|
|
1054
1054
|
remote_url: string | null;
|
|
1055
1055
|
}, {
|
|
1056
1056
|
id: string;
|
|
1057
1057
|
type: "unknown";
|
|
1058
|
-
description: string | null;
|
|
1059
1058
|
url: string;
|
|
1059
|
+
description: string | null;
|
|
1060
1060
|
blurhash: string | null;
|
|
1061
1061
|
preview_url: string | null;
|
|
1062
1062
|
remote_url: string | null;
|
|
@@ -1218,12 +1218,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1218
1218
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
1219
1219
|
}, "strip", z.ZodTypeAny, {
|
|
1220
1220
|
type: "link" | "photo" | "video" | "rich";
|
|
1221
|
-
description: string;
|
|
1222
1221
|
url: string;
|
|
1222
|
+
image: string | null;
|
|
1223
|
+
description: string;
|
|
1223
1224
|
blurhash: string | null;
|
|
1224
1225
|
width: number;
|
|
1225
1226
|
height: number;
|
|
1226
|
-
image: string | null;
|
|
1227
1227
|
title: string;
|
|
1228
1228
|
author_name: string;
|
|
1229
1229
|
author_url: string;
|
|
@@ -1233,12 +1233,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1233
1233
|
embed_url: string;
|
|
1234
1234
|
}, {
|
|
1235
1235
|
type: "link" | "photo" | "video" | "rich";
|
|
1236
|
-
description: string;
|
|
1237
1236
|
url: string;
|
|
1237
|
+
image: string | null;
|
|
1238
|
+
description: string;
|
|
1238
1239
|
blurhash: string | null;
|
|
1239
1240
|
width: number;
|
|
1240
1241
|
height: number;
|
|
1241
|
-
image: string | null;
|
|
1242
1242
|
title: string;
|
|
1243
1243
|
author_name: string;
|
|
1244
1244
|
author_url: string;
|
|
@@ -1358,11 +1358,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1358
1358
|
keyword_matches: string[] | null;
|
|
1359
1359
|
status_matches: string[] | null;
|
|
1360
1360
|
}>>;
|
|
1361
|
-
}
|
|
1361
|
+
} & {
|
|
1362
1362
|
reblog: z.ZodNullable<z.ZodObject<{
|
|
1363
1363
|
id: z.ZodString;
|
|
1364
1364
|
uri: z.ZodString;
|
|
1365
|
-
account: z.ZodObject<
|
|
1365
|
+
account: z.ZodObject<{
|
|
1366
1366
|
id: z.ZodString;
|
|
1367
1367
|
username: z.ZodString;
|
|
1368
1368
|
acct: z.ZodString;
|
|
@@ -1459,7 +1459,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1459
1459
|
statuses_count: z.ZodNumber;
|
|
1460
1460
|
followers_count: z.ZodNumber;
|
|
1461
1461
|
following_count: z.ZodNumber;
|
|
1462
|
-
}
|
|
1462
|
+
} & {
|
|
1463
1463
|
moved: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1464
1464
|
id: z.ZodString;
|
|
1465
1465
|
username: z.ZodString;
|
|
@@ -1652,7 +1652,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1652
1652
|
suspended?: boolean | undefined;
|
|
1653
1653
|
limited?: boolean | undefined;
|
|
1654
1654
|
}>>>;
|
|
1655
|
-
}
|
|
1655
|
+
}, "strip", z.ZodTypeAny, {
|
|
1656
1656
|
id: string;
|
|
1657
1657
|
url: string;
|
|
1658
1658
|
note: string;
|
|
@@ -1847,14 +1847,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1847
1847
|
visibility: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
1848
1848
|
sensitive: z.ZodBoolean;
|
|
1849
1849
|
spoiler_text: z.ZodString;
|
|
1850
|
-
media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<
|
|
1850
|
+
media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1851
1851
|
id: z.ZodString;
|
|
1852
1852
|
url: z.ZodString;
|
|
1853
1853
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
1854
1854
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1855
1855
|
description: z.ZodNullable<z.ZodString>;
|
|
1856
1856
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
1857
|
-
}
|
|
1857
|
+
} & {
|
|
1858
1858
|
type: z.ZodLiteral<"image">;
|
|
1859
1859
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1860
1860
|
original: z.ZodObject<{
|
|
@@ -1934,11 +1934,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1934
1934
|
y: number;
|
|
1935
1935
|
} | null | undefined;
|
|
1936
1936
|
}>>>;
|
|
1937
|
-
}
|
|
1937
|
+
}, "strip", z.ZodTypeAny, {
|
|
1938
1938
|
id: string;
|
|
1939
1939
|
type: "image";
|
|
1940
|
-
description: string | null;
|
|
1941
1940
|
url: string;
|
|
1941
|
+
description: string | null;
|
|
1942
1942
|
blurhash: string | null;
|
|
1943
1943
|
preview_url: string | null;
|
|
1944
1944
|
remote_url: string | null;
|
|
@@ -1963,8 +1963,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1963
1963
|
}, {
|
|
1964
1964
|
id: string;
|
|
1965
1965
|
type: "image";
|
|
1966
|
-
description: string | null;
|
|
1967
1966
|
url: string;
|
|
1967
|
+
description: string | null;
|
|
1968
1968
|
blurhash: string | null;
|
|
1969
1969
|
preview_url: string | null;
|
|
1970
1970
|
remote_url: string | null;
|
|
@@ -1986,14 +1986,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1986
1986
|
y: number;
|
|
1987
1987
|
} | null | undefined;
|
|
1988
1988
|
} | null | undefined;
|
|
1989
|
-
}>, z.ZodObject<
|
|
1989
|
+
}>, z.ZodObject<{
|
|
1990
1990
|
id: z.ZodString;
|
|
1991
1991
|
url: z.ZodString;
|
|
1992
1992
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
1993
1993
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1994
1994
|
description: z.ZodNullable<z.ZodString>;
|
|
1995
1995
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
1996
|
-
}
|
|
1996
|
+
} & {
|
|
1997
1997
|
type: z.ZodLiteral<"gifv">;
|
|
1998
1998
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1999
1999
|
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2081,11 +2081,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2081
2081
|
aspect: number;
|
|
2082
2082
|
} | null | undefined;
|
|
2083
2083
|
}>>>;
|
|
2084
|
-
}
|
|
2084
|
+
}, "strip", z.ZodTypeAny, {
|
|
2085
2085
|
id: string;
|
|
2086
2086
|
type: "gifv";
|
|
2087
|
-
description: string | null;
|
|
2088
2087
|
url: string;
|
|
2088
|
+
description: string | null;
|
|
2089
2089
|
blurhash: string | null;
|
|
2090
2090
|
preview_url: string | null;
|
|
2091
2091
|
remote_url: string | null;
|
|
@@ -2114,8 +2114,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2114
2114
|
}, {
|
|
2115
2115
|
id: string;
|
|
2116
2116
|
type: "gifv";
|
|
2117
|
-
description: string | null;
|
|
2118
2117
|
url: string;
|
|
2118
|
+
description: string | null;
|
|
2119
2119
|
blurhash: string | null;
|
|
2120
2120
|
preview_url: string | null;
|
|
2121
2121
|
remote_url: string | null;
|
|
@@ -2141,14 +2141,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2141
2141
|
aspect: number;
|
|
2142
2142
|
} | null | undefined;
|
|
2143
2143
|
} | null | undefined;
|
|
2144
|
-
}>, z.ZodObject<
|
|
2144
|
+
}>, z.ZodObject<{
|
|
2145
2145
|
id: z.ZodString;
|
|
2146
2146
|
url: z.ZodString;
|
|
2147
2147
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
2148
2148
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
2149
2149
|
description: z.ZodNullable<z.ZodString>;
|
|
2150
2150
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
2151
|
-
}
|
|
2151
|
+
} & {
|
|
2152
2152
|
type: z.ZodLiteral<"video">;
|
|
2153
2153
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2154
2154
|
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2245,11 +2245,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2245
2245
|
audio_bitrate?: string | null | undefined;
|
|
2246
2246
|
audio_channels?: string | null | undefined;
|
|
2247
2247
|
}>>>;
|
|
2248
|
-
}
|
|
2248
|
+
}, "strip", z.ZodTypeAny, {
|
|
2249
2249
|
id: string;
|
|
2250
2250
|
type: "video";
|
|
2251
|
-
description: string | null;
|
|
2252
2251
|
url: string;
|
|
2252
|
+
description: string | null;
|
|
2253
2253
|
blurhash: string | null;
|
|
2254
2254
|
preview_url: string | null;
|
|
2255
2255
|
remote_url: string | null;
|
|
@@ -2281,8 +2281,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2281
2281
|
}, {
|
|
2282
2282
|
id: string;
|
|
2283
2283
|
type: "video";
|
|
2284
|
-
description: string | null;
|
|
2285
2284
|
url: string;
|
|
2285
|
+
description: string | null;
|
|
2286
2286
|
blurhash: string | null;
|
|
2287
2287
|
preview_url: string | null;
|
|
2288
2288
|
remote_url: string | null;
|
|
@@ -2311,14 +2311,14 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2311
2311
|
audio_bitrate?: string | null | undefined;
|
|
2312
2312
|
audio_channels?: string | null | undefined;
|
|
2313
2313
|
} | null | undefined;
|
|
2314
|
-
}>, z.ZodObject<
|
|
2314
|
+
}>, z.ZodObject<{
|
|
2315
2315
|
id: z.ZodString;
|
|
2316
2316
|
url: z.ZodString;
|
|
2317
2317
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
2318
2318
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
2319
2319
|
description: z.ZodNullable<z.ZodString>;
|
|
2320
2320
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
2321
|
-
}
|
|
2321
|
+
} & {
|
|
2322
2322
|
type: z.ZodLiteral<"audio">;
|
|
2323
2323
|
meta: z.ZodObject<{
|
|
2324
2324
|
length: z.ZodString;
|
|
@@ -2357,11 +2357,11 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2357
2357
|
audio_bitrate?: string | null | undefined;
|
|
2358
2358
|
audio_channels?: string | null | undefined;
|
|
2359
2359
|
}>;
|
|
2360
|
-
}
|
|
2360
|
+
}, "strip", z.ZodTypeAny, {
|
|
2361
2361
|
id: string;
|
|
2362
2362
|
type: "audio";
|
|
2363
|
-
description: string | null;
|
|
2364
2363
|
url: string;
|
|
2364
|
+
description: string | null;
|
|
2365
2365
|
blurhash: string | null;
|
|
2366
2366
|
preview_url: string | null;
|
|
2367
2367
|
remote_url: string | null;
|
|
@@ -2379,8 +2379,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2379
2379
|
}, {
|
|
2380
2380
|
id: string;
|
|
2381
2381
|
type: "audio";
|
|
2382
|
-
description: string | null;
|
|
2383
2382
|
url: string;
|
|
2383
|
+
description: string | null;
|
|
2384
2384
|
blurhash: string | null;
|
|
2385
2385
|
preview_url: string | null;
|
|
2386
2386
|
remote_url: string | null;
|
|
@@ -2395,28 +2395,28 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2395
2395
|
audio_bitrate?: string | null | undefined;
|
|
2396
2396
|
audio_channels?: string | null | undefined;
|
|
2397
2397
|
};
|
|
2398
|
-
}>, z.ZodObject<
|
|
2398
|
+
}>, z.ZodObject<{
|
|
2399
2399
|
id: z.ZodString;
|
|
2400
2400
|
url: z.ZodString;
|
|
2401
2401
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
2402
2402
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
2403
2403
|
description: z.ZodNullable<z.ZodString>;
|
|
2404
2404
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
2405
|
-
}
|
|
2405
|
+
} & {
|
|
2406
2406
|
type: z.ZodLiteral<"unknown">;
|
|
2407
|
-
}
|
|
2407
|
+
}, "strip", z.ZodTypeAny, {
|
|
2408
2408
|
id: string;
|
|
2409
2409
|
type: "unknown";
|
|
2410
|
-
description: string | null;
|
|
2411
2410
|
url: string;
|
|
2411
|
+
description: string | null;
|
|
2412
2412
|
blurhash: string | null;
|
|
2413
2413
|
preview_url: string | null;
|
|
2414
2414
|
remote_url: string | null;
|
|
2415
2415
|
}, {
|
|
2416
2416
|
id: string;
|
|
2417
2417
|
type: "unknown";
|
|
2418
|
-
description: string | null;
|
|
2419
2418
|
url: string;
|
|
2419
|
+
description: string | null;
|
|
2420
2420
|
blurhash: string | null;
|
|
2421
2421
|
preview_url: string | null;
|
|
2422
2422
|
remote_url: string | null;
|
|
@@ -2578,12 +2578,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2578
2578
|
blurhash: z.ZodNullable<z.ZodString>;
|
|
2579
2579
|
}, "strip", z.ZodTypeAny, {
|
|
2580
2580
|
type: "link" | "photo" | "video" | "rich";
|
|
2581
|
-
description: string;
|
|
2582
2581
|
url: string;
|
|
2582
|
+
image: string | null;
|
|
2583
|
+
description: string;
|
|
2583
2584
|
blurhash: string | null;
|
|
2584
2585
|
width: number;
|
|
2585
2586
|
height: number;
|
|
2586
|
-
image: string | null;
|
|
2587
2587
|
title: string;
|
|
2588
2588
|
author_name: string;
|
|
2589
2589
|
author_url: string;
|
|
@@ -2593,12 +2593,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2593
2593
|
embed_url: string;
|
|
2594
2594
|
}, {
|
|
2595
2595
|
type: "link" | "photo" | "video" | "rich";
|
|
2596
|
-
description: string;
|
|
2597
2596
|
url: string;
|
|
2597
|
+
image: string | null;
|
|
2598
|
+
description: string;
|
|
2598
2599
|
blurhash: string | null;
|
|
2599
2600
|
width: number;
|
|
2600
2601
|
height: number;
|
|
2601
|
-
image: string | null;
|
|
2602
2602
|
title: string;
|
|
2603
2603
|
author_name: string;
|
|
2604
2604
|
author_url: string;
|
|
@@ -2834,8 +2834,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2834
2834
|
media_attachments: ({
|
|
2835
2835
|
id: string;
|
|
2836
2836
|
type: "gifv";
|
|
2837
|
-
description: string | null;
|
|
2838
2837
|
url: string;
|
|
2838
|
+
description: string | null;
|
|
2839
2839
|
blurhash: string | null;
|
|
2840
2840
|
preview_url: string | null;
|
|
2841
2841
|
remote_url: string | null;
|
|
@@ -2864,8 +2864,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2864
2864
|
} | {
|
|
2865
2865
|
id: string;
|
|
2866
2866
|
type: "image";
|
|
2867
|
-
description: string | null;
|
|
2868
2867
|
url: string;
|
|
2868
|
+
description: string | null;
|
|
2869
2869
|
blurhash: string | null;
|
|
2870
2870
|
preview_url: string | null;
|
|
2871
2871
|
remote_url: string | null;
|
|
@@ -2890,8 +2890,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2890
2890
|
} | {
|
|
2891
2891
|
id: string;
|
|
2892
2892
|
type: "video";
|
|
2893
|
-
description: string | null;
|
|
2894
2893
|
url: string;
|
|
2894
|
+
description: string | null;
|
|
2895
2895
|
blurhash: string | null;
|
|
2896
2896
|
preview_url: string | null;
|
|
2897
2897
|
remote_url: string | null;
|
|
@@ -2923,8 +2923,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2923
2923
|
} | {
|
|
2924
2924
|
id: string;
|
|
2925
2925
|
type: "audio";
|
|
2926
|
-
description: string | null;
|
|
2927
2926
|
url: string;
|
|
2927
|
+
description: string | null;
|
|
2928
2928
|
blurhash: string | null;
|
|
2929
2929
|
preview_url: string | null;
|
|
2930
2930
|
remote_url: string | null;
|
|
@@ -2942,8 +2942,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2942
2942
|
} | {
|
|
2943
2943
|
id: string;
|
|
2944
2944
|
type: "unknown";
|
|
2945
|
-
description: string | null;
|
|
2946
2945
|
url: string;
|
|
2946
|
+
description: string | null;
|
|
2947
2947
|
blurhash: string | null;
|
|
2948
2948
|
preview_url: string | null;
|
|
2949
2949
|
remote_url: string | null;
|
|
@@ -2986,12 +2986,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2986
2986
|
} | null;
|
|
2987
2987
|
card: {
|
|
2988
2988
|
type: "link" | "photo" | "video" | "rich";
|
|
2989
|
-
description: string;
|
|
2990
2989
|
url: string;
|
|
2990
|
+
image: string | null;
|
|
2991
|
+
description: string;
|
|
2991
2992
|
blurhash: string | null;
|
|
2992
2993
|
width: number;
|
|
2993
2994
|
height: number;
|
|
2994
|
-
image: string | null;
|
|
2995
2995
|
title: string;
|
|
2996
2996
|
author_name: string;
|
|
2997
2997
|
author_url: string;
|
|
@@ -3147,8 +3147,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3147
3147
|
media_attachments: ({
|
|
3148
3148
|
id: string;
|
|
3149
3149
|
type: "gifv";
|
|
3150
|
-
description: string | null;
|
|
3151
3150
|
url: string;
|
|
3151
|
+
description: string | null;
|
|
3152
3152
|
blurhash: string | null;
|
|
3153
3153
|
preview_url: string | null;
|
|
3154
3154
|
remote_url: string | null;
|
|
@@ -3177,8 +3177,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3177
3177
|
} | {
|
|
3178
3178
|
id: string;
|
|
3179
3179
|
type: "image";
|
|
3180
|
-
description: string | null;
|
|
3181
3180
|
url: string;
|
|
3181
|
+
description: string | null;
|
|
3182
3182
|
blurhash: string | null;
|
|
3183
3183
|
preview_url: string | null;
|
|
3184
3184
|
remote_url: string | null;
|
|
@@ -3203,8 +3203,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3203
3203
|
} | {
|
|
3204
3204
|
id: string;
|
|
3205
3205
|
type: "video";
|
|
3206
|
-
description: string | null;
|
|
3207
3206
|
url: string;
|
|
3207
|
+
description: string | null;
|
|
3208
3208
|
blurhash: string | null;
|
|
3209
3209
|
preview_url: string | null;
|
|
3210
3210
|
remote_url: string | null;
|
|
@@ -3236,8 +3236,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3236
3236
|
} | {
|
|
3237
3237
|
id: string;
|
|
3238
3238
|
type: "audio";
|
|
3239
|
-
description: string | null;
|
|
3240
3239
|
url: string;
|
|
3240
|
+
description: string | null;
|
|
3241
3241
|
blurhash: string | null;
|
|
3242
3242
|
preview_url: string | null;
|
|
3243
3243
|
remote_url: string | null;
|
|
@@ -3255,8 +3255,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3255
3255
|
} | {
|
|
3256
3256
|
id: string;
|
|
3257
3257
|
type: "unknown";
|
|
3258
|
-
description: string | null;
|
|
3259
3258
|
url: string;
|
|
3259
|
+
description: string | null;
|
|
3260
3260
|
blurhash: string | null;
|
|
3261
3261
|
preview_url: string | null;
|
|
3262
3262
|
remote_url: string | null;
|
|
@@ -3299,12 +3299,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3299
3299
|
} | null;
|
|
3300
3300
|
card: {
|
|
3301
3301
|
type: "link" | "photo" | "video" | "rich";
|
|
3302
|
-
description: string;
|
|
3303
3302
|
url: string;
|
|
3303
|
+
image: string | null;
|
|
3304
|
+
description: string;
|
|
3304
3305
|
blurhash: string | null;
|
|
3305
3306
|
width: number;
|
|
3306
3307
|
height: number;
|
|
3307
|
-
image: string | null;
|
|
3308
3308
|
title: string;
|
|
3309
3309
|
author_name: string;
|
|
3310
3310
|
author_url: string;
|
|
@@ -3345,7 +3345,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3345
3345
|
status_matches: string[] | null;
|
|
3346
3346
|
} | undefined;
|
|
3347
3347
|
}>>;
|
|
3348
|
-
}
|
|
3348
|
+
}, "strip", z.ZodTypeAny, {
|
|
3349
3349
|
id: string;
|
|
3350
3350
|
url: string | null;
|
|
3351
3351
|
content: string;
|
|
@@ -3461,8 +3461,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3461
3461
|
media_attachments: ({
|
|
3462
3462
|
id: string;
|
|
3463
3463
|
type: "gifv";
|
|
3464
|
-
description: string | null;
|
|
3465
3464
|
url: string;
|
|
3465
|
+
description: string | null;
|
|
3466
3466
|
blurhash: string | null;
|
|
3467
3467
|
preview_url: string | null;
|
|
3468
3468
|
remote_url: string | null;
|
|
@@ -3491,8 +3491,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3491
3491
|
} | {
|
|
3492
3492
|
id: string;
|
|
3493
3493
|
type: "image";
|
|
3494
|
-
description: string | null;
|
|
3495
3494
|
url: string;
|
|
3495
|
+
description: string | null;
|
|
3496
3496
|
blurhash: string | null;
|
|
3497
3497
|
preview_url: string | null;
|
|
3498
3498
|
remote_url: string | null;
|
|
@@ -3517,8 +3517,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3517
3517
|
} | {
|
|
3518
3518
|
id: string;
|
|
3519
3519
|
type: "video";
|
|
3520
|
-
description: string | null;
|
|
3521
3520
|
url: string;
|
|
3521
|
+
description: string | null;
|
|
3522
3522
|
blurhash: string | null;
|
|
3523
3523
|
preview_url: string | null;
|
|
3524
3524
|
remote_url: string | null;
|
|
@@ -3550,8 +3550,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3550
3550
|
} | {
|
|
3551
3551
|
id: string;
|
|
3552
3552
|
type: "audio";
|
|
3553
|
-
description: string | null;
|
|
3554
3553
|
url: string;
|
|
3554
|
+
description: string | null;
|
|
3555
3555
|
blurhash: string | null;
|
|
3556
3556
|
preview_url: string | null;
|
|
3557
3557
|
remote_url: string | null;
|
|
@@ -3569,8 +3569,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3569
3569
|
} | {
|
|
3570
3570
|
id: string;
|
|
3571
3571
|
type: "unknown";
|
|
3572
|
-
description: string | null;
|
|
3573
3572
|
url: string;
|
|
3573
|
+
description: string | null;
|
|
3574
3574
|
blurhash: string | null;
|
|
3575
3575
|
preview_url: string | null;
|
|
3576
3576
|
remote_url: string | null;
|
|
@@ -3613,12 +3613,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3613
3613
|
} | null;
|
|
3614
3614
|
card: {
|
|
3615
3615
|
type: "link" | "photo" | "video" | "rich";
|
|
3616
|
-
description: string;
|
|
3617
3616
|
url: string;
|
|
3617
|
+
image: string | null;
|
|
3618
|
+
description: string;
|
|
3618
3619
|
blurhash: string | null;
|
|
3619
3620
|
width: number;
|
|
3620
3621
|
height: number;
|
|
3621
|
-
image: string | null;
|
|
3622
3622
|
title: string;
|
|
3623
3623
|
author_name: string;
|
|
3624
3624
|
author_url: string;
|
|
@@ -3745,8 +3745,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3745
3745
|
media_attachments: ({
|
|
3746
3746
|
id: string;
|
|
3747
3747
|
type: "gifv";
|
|
3748
|
-
description: string | null;
|
|
3749
3748
|
url: string;
|
|
3749
|
+
description: string | null;
|
|
3750
3750
|
blurhash: string | null;
|
|
3751
3751
|
preview_url: string | null;
|
|
3752
3752
|
remote_url: string | null;
|
|
@@ -3775,8 +3775,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3775
3775
|
} | {
|
|
3776
3776
|
id: string;
|
|
3777
3777
|
type: "image";
|
|
3778
|
-
description: string | null;
|
|
3779
3778
|
url: string;
|
|
3779
|
+
description: string | null;
|
|
3780
3780
|
blurhash: string | null;
|
|
3781
3781
|
preview_url: string | null;
|
|
3782
3782
|
remote_url: string | null;
|
|
@@ -3801,8 +3801,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3801
3801
|
} | {
|
|
3802
3802
|
id: string;
|
|
3803
3803
|
type: "video";
|
|
3804
|
-
description: string | null;
|
|
3805
3804
|
url: string;
|
|
3805
|
+
description: string | null;
|
|
3806
3806
|
blurhash: string | null;
|
|
3807
3807
|
preview_url: string | null;
|
|
3808
3808
|
remote_url: string | null;
|
|
@@ -3834,8 +3834,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3834
3834
|
} | {
|
|
3835
3835
|
id: string;
|
|
3836
3836
|
type: "audio";
|
|
3837
|
-
description: string | null;
|
|
3838
3837
|
url: string;
|
|
3838
|
+
description: string | null;
|
|
3839
3839
|
blurhash: string | null;
|
|
3840
3840
|
preview_url: string | null;
|
|
3841
3841
|
remote_url: string | null;
|
|
@@ -3853,8 +3853,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3853
3853
|
} | {
|
|
3854
3854
|
id: string;
|
|
3855
3855
|
type: "unknown";
|
|
3856
|
-
description: string | null;
|
|
3857
3856
|
url: string;
|
|
3857
|
+
description: string | null;
|
|
3858
3858
|
blurhash: string | null;
|
|
3859
3859
|
preview_url: string | null;
|
|
3860
3860
|
remote_url: string | null;
|
|
@@ -3897,12 +3897,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3897
3897
|
} | null;
|
|
3898
3898
|
card: {
|
|
3899
3899
|
type: "link" | "photo" | "video" | "rich";
|
|
3900
|
-
description: string;
|
|
3901
3900
|
url: string;
|
|
3901
|
+
image: string | null;
|
|
3902
|
+
description: string;
|
|
3902
3903
|
blurhash: string | null;
|
|
3903
3904
|
width: number;
|
|
3904
3905
|
height: number;
|
|
3905
|
-
image: string | null;
|
|
3906
3906
|
title: string;
|
|
3907
3907
|
author_name: string;
|
|
3908
3908
|
author_url: string;
|
|
@@ -4088,8 +4088,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4088
4088
|
media_attachments: ({
|
|
4089
4089
|
id: string;
|
|
4090
4090
|
type: "gifv";
|
|
4091
|
-
description: string | null;
|
|
4092
4091
|
url: string;
|
|
4092
|
+
description: string | null;
|
|
4093
4093
|
blurhash: string | null;
|
|
4094
4094
|
preview_url: string | null;
|
|
4095
4095
|
remote_url: string | null;
|
|
@@ -4118,8 +4118,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4118
4118
|
} | {
|
|
4119
4119
|
id: string;
|
|
4120
4120
|
type: "image";
|
|
4121
|
-
description: string | null;
|
|
4122
4121
|
url: string;
|
|
4122
|
+
description: string | null;
|
|
4123
4123
|
blurhash: string | null;
|
|
4124
4124
|
preview_url: string | null;
|
|
4125
4125
|
remote_url: string | null;
|
|
@@ -4144,8 +4144,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4144
4144
|
} | {
|
|
4145
4145
|
id: string;
|
|
4146
4146
|
type: "video";
|
|
4147
|
-
description: string | null;
|
|
4148
4147
|
url: string;
|
|
4148
|
+
description: string | null;
|
|
4149
4149
|
blurhash: string | null;
|
|
4150
4150
|
preview_url: string | null;
|
|
4151
4151
|
remote_url: string | null;
|
|
@@ -4177,8 +4177,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4177
4177
|
} | {
|
|
4178
4178
|
id: string;
|
|
4179
4179
|
type: "audio";
|
|
4180
|
-
description: string | null;
|
|
4181
4180
|
url: string;
|
|
4181
|
+
description: string | null;
|
|
4182
4182
|
blurhash: string | null;
|
|
4183
4183
|
preview_url: string | null;
|
|
4184
4184
|
remote_url: string | null;
|
|
@@ -4196,8 +4196,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4196
4196
|
} | {
|
|
4197
4197
|
id: string;
|
|
4198
4198
|
type: "unknown";
|
|
4199
|
-
description: string | null;
|
|
4200
4199
|
url: string;
|
|
4200
|
+
description: string | null;
|
|
4201
4201
|
blurhash: string | null;
|
|
4202
4202
|
preview_url: string | null;
|
|
4203
4203
|
remote_url: string | null;
|
|
@@ -4240,12 +4240,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4240
4240
|
} | null;
|
|
4241
4241
|
card: {
|
|
4242
4242
|
type: "link" | "photo" | "video" | "rich";
|
|
4243
|
-
description: string;
|
|
4244
4243
|
url: string;
|
|
4244
|
+
image: string | null;
|
|
4245
|
+
description: string;
|
|
4245
4246
|
blurhash: string | null;
|
|
4246
4247
|
width: number;
|
|
4247
4248
|
height: number;
|
|
4248
|
-
image: string | null;
|
|
4249
4249
|
title: string;
|
|
4250
4250
|
author_name: string;
|
|
4251
4251
|
author_url: string;
|
|
@@ -4372,8 +4372,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4372
4372
|
media_attachments: ({
|
|
4373
4373
|
id: string;
|
|
4374
4374
|
type: "gifv";
|
|
4375
|
-
description: string | null;
|
|
4376
4375
|
url: string;
|
|
4376
|
+
description: string | null;
|
|
4377
4377
|
blurhash: string | null;
|
|
4378
4378
|
preview_url: string | null;
|
|
4379
4379
|
remote_url: string | null;
|
|
@@ -4402,8 +4402,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4402
4402
|
} | {
|
|
4403
4403
|
id: string;
|
|
4404
4404
|
type: "image";
|
|
4405
|
-
description: string | null;
|
|
4406
4405
|
url: string;
|
|
4406
|
+
description: string | null;
|
|
4407
4407
|
blurhash: string | null;
|
|
4408
4408
|
preview_url: string | null;
|
|
4409
4409
|
remote_url: string | null;
|
|
@@ -4428,8 +4428,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4428
4428
|
} | {
|
|
4429
4429
|
id: string;
|
|
4430
4430
|
type: "video";
|
|
4431
|
-
description: string | null;
|
|
4432
4431
|
url: string;
|
|
4432
|
+
description: string | null;
|
|
4433
4433
|
blurhash: string | null;
|
|
4434
4434
|
preview_url: string | null;
|
|
4435
4435
|
remote_url: string | null;
|
|
@@ -4461,8 +4461,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4461
4461
|
} | {
|
|
4462
4462
|
id: string;
|
|
4463
4463
|
type: "audio";
|
|
4464
|
-
description: string | null;
|
|
4465
4464
|
url: string;
|
|
4465
|
+
description: string | null;
|
|
4466
4466
|
blurhash: string | null;
|
|
4467
4467
|
preview_url: string | null;
|
|
4468
4468
|
remote_url: string | null;
|
|
@@ -4480,8 +4480,8 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4480
4480
|
} | {
|
|
4481
4481
|
id: string;
|
|
4482
4482
|
type: "unknown";
|
|
4483
|
-
description: string | null;
|
|
4484
4483
|
url: string;
|
|
4484
|
+
description: string | null;
|
|
4485
4485
|
blurhash: string | null;
|
|
4486
4486
|
preview_url: string | null;
|
|
4487
4487
|
remote_url: string | null;
|
|
@@ -4524,12 +4524,12 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4524
4524
|
} | null;
|
|
4525
4525
|
card: {
|
|
4526
4526
|
type: "link" | "photo" | "video" | "rich";
|
|
4527
|
-
description: string;
|
|
4528
4527
|
url: string;
|
|
4528
|
+
image: string | null;
|
|
4529
|
+
description: string;
|
|
4529
4530
|
blurhash: string | null;
|
|
4530
4531
|
width: number;
|
|
4531
4532
|
height: number;
|
|
4532
|
-
image: string | null;
|
|
4533
4533
|
title: string;
|
|
4534
4534
|
author_name: string;
|
|
4535
4535
|
author_url: string;
|