@llun/activities.schema 0.2.23 → 0.2.24
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/mediaAttachment/base.js +1 -1
- package/dist/esm/mastodon/mediaAttachment/base.js +1 -1
- package/dist/types/mastodon/mediaAttachment/audio.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/base.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/gifv.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/image.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/index.d.ts +30 -30
- package/dist/types/mastodon/mediaAttachment/unknown.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/video.d.ts +3 -3
- package/dist/types/mastodon/status/base.d.ts +25 -25
- package/dist/types/mastodon/status/index.d.ts +60 -60
- package/package.json +1 -1
- package/src/mastodon/mediaAttachment/base.ts +1 -1
|
@@ -501,7 +501,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
501
501
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
502
502
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
503
503
|
description: z.ZodNullable<z.ZodString>;
|
|
504
|
-
|
|
504
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
505
505
|
}, {
|
|
506
506
|
type: z.ZodLiteral<"image">;
|
|
507
507
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -587,9 +587,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
587
587
|
type: "image";
|
|
588
588
|
description: string | null;
|
|
589
589
|
url: string;
|
|
590
|
+
blurhash: string | null;
|
|
590
591
|
preview_url: string | null;
|
|
591
592
|
remote_url: string | null;
|
|
592
|
-
bluehash: string | null;
|
|
593
593
|
meta?: {
|
|
594
594
|
original: {
|
|
595
595
|
width: number;
|
|
@@ -613,9 +613,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
613
613
|
type: "image";
|
|
614
614
|
description: string | null;
|
|
615
615
|
url: string;
|
|
616
|
+
blurhash: string | null;
|
|
616
617
|
preview_url: string | null;
|
|
617
618
|
remote_url: string | null;
|
|
618
|
-
bluehash: string | null;
|
|
619
619
|
meta?: {
|
|
620
620
|
original: {
|
|
621
621
|
width: number;
|
|
@@ -640,7 +640,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
640
640
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
641
641
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
642
642
|
description: z.ZodNullable<z.ZodString>;
|
|
643
|
-
|
|
643
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
644
644
|
}, {
|
|
645
645
|
type: z.ZodLiteral<"gifv">;
|
|
646
646
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -734,9 +734,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
734
734
|
type: "gifv";
|
|
735
735
|
description: string | null;
|
|
736
736
|
url: string;
|
|
737
|
+
blurhash: string | null;
|
|
737
738
|
preview_url: string | null;
|
|
738
739
|
remote_url: string | null;
|
|
739
|
-
bluehash: string | null;
|
|
740
740
|
meta?: {
|
|
741
741
|
width: number;
|
|
742
742
|
height: number;
|
|
@@ -764,9 +764,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
764
764
|
type: "gifv";
|
|
765
765
|
description: string | null;
|
|
766
766
|
url: string;
|
|
767
|
+
blurhash: string | null;
|
|
767
768
|
preview_url: string | null;
|
|
768
769
|
remote_url: string | null;
|
|
769
|
-
bluehash: string | null;
|
|
770
770
|
meta?: {
|
|
771
771
|
width: number;
|
|
772
772
|
height: number;
|
|
@@ -795,7 +795,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
795
795
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
796
796
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
797
797
|
description: z.ZodNullable<z.ZodString>;
|
|
798
|
-
|
|
798
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
799
799
|
}, {
|
|
800
800
|
type: z.ZodLiteral<"video">;
|
|
801
801
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -898,9 +898,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
898
898
|
type: "video";
|
|
899
899
|
description: string | null;
|
|
900
900
|
url: string;
|
|
901
|
+
blurhash: string | null;
|
|
901
902
|
preview_url: string | null;
|
|
902
903
|
remote_url: string | null;
|
|
903
|
-
bluehash: string | null;
|
|
904
904
|
meta?: {
|
|
905
905
|
width: number;
|
|
906
906
|
height: number;
|
|
@@ -931,9 +931,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
931
931
|
type: "video";
|
|
932
932
|
description: string | null;
|
|
933
933
|
url: string;
|
|
934
|
+
blurhash: string | null;
|
|
934
935
|
preview_url: string | null;
|
|
935
936
|
remote_url: string | null;
|
|
936
|
-
bluehash: string | null;
|
|
937
937
|
meta?: {
|
|
938
938
|
width: number;
|
|
939
939
|
height: number;
|
|
@@ -965,7 +965,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
965
965
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
966
966
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
967
967
|
description: z.ZodNullable<z.ZodString>;
|
|
968
|
-
|
|
968
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
969
969
|
}, {
|
|
970
970
|
type: z.ZodLiteral<"audio">;
|
|
971
971
|
meta: z.ZodObject<{
|
|
@@ -1010,9 +1010,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1010
1010
|
type: "audio";
|
|
1011
1011
|
description: string | null;
|
|
1012
1012
|
url: string;
|
|
1013
|
+
blurhash: string | null;
|
|
1013
1014
|
preview_url: string | null;
|
|
1014
1015
|
remote_url: string | null;
|
|
1015
|
-
bluehash: string | null;
|
|
1016
1016
|
meta: {
|
|
1017
1017
|
length: string;
|
|
1018
1018
|
duration: number;
|
|
@@ -1029,9 +1029,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1029
1029
|
type: "audio";
|
|
1030
1030
|
description: string | null;
|
|
1031
1031
|
url: string;
|
|
1032
|
+
blurhash: string | null;
|
|
1032
1033
|
preview_url: string | null;
|
|
1033
1034
|
remote_url: string | null;
|
|
1034
|
-
bluehash: string | null;
|
|
1035
1035
|
meta: {
|
|
1036
1036
|
length: string;
|
|
1037
1037
|
duration: number;
|
|
@@ -1049,7 +1049,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1049
1049
|
preview_url: z.ZodNullable<z.ZodString>;
|
|
1050
1050
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1051
1051
|
description: z.ZodNullable<z.ZodString>;
|
|
1052
|
-
|
|
1052
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
1053
1053
|
}, {
|
|
1054
1054
|
type: z.ZodLiteral<"unknown">;
|
|
1055
1055
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1057,17 +1057,17 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1057
1057
|
type: "unknown";
|
|
1058
1058
|
description: string | null;
|
|
1059
1059
|
url: string;
|
|
1060
|
+
blurhash: string | null;
|
|
1060
1061
|
preview_url: string | null;
|
|
1061
1062
|
remote_url: string | null;
|
|
1062
|
-
bluehash: string | null;
|
|
1063
1063
|
}, {
|
|
1064
1064
|
id: string;
|
|
1065
1065
|
type: "unknown";
|
|
1066
1066
|
description: string | null;
|
|
1067
1067
|
url: string;
|
|
1068
|
+
blurhash: string | null;
|
|
1068
1069
|
preview_url: string | null;
|
|
1069
1070
|
remote_url: string | null;
|
|
1070
|
-
bluehash: string | null;
|
|
1071
1071
|
}>]>, "many">;
|
|
1072
1072
|
application: z.ZodOptional<z.ZodObject<{
|
|
1073
1073
|
name: z.ZodString;
|
|
@@ -1460,9 +1460,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1460
1460
|
type: "gifv";
|
|
1461
1461
|
description: string | null;
|
|
1462
1462
|
url: string;
|
|
1463
|
+
blurhash: string | null;
|
|
1463
1464
|
preview_url: string | null;
|
|
1464
1465
|
remote_url: string | null;
|
|
1465
|
-
bluehash: string | null;
|
|
1466
1466
|
meta?: {
|
|
1467
1467
|
width: number;
|
|
1468
1468
|
height: number;
|
|
@@ -1490,9 +1490,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1490
1490
|
type: "image";
|
|
1491
1491
|
description: string | null;
|
|
1492
1492
|
url: string;
|
|
1493
|
+
blurhash: string | null;
|
|
1493
1494
|
preview_url: string | null;
|
|
1494
1495
|
remote_url: string | null;
|
|
1495
|
-
bluehash: string | null;
|
|
1496
1496
|
meta?: {
|
|
1497
1497
|
original: {
|
|
1498
1498
|
width: number;
|
|
@@ -1516,9 +1516,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1516
1516
|
type: "video";
|
|
1517
1517
|
description: string | null;
|
|
1518
1518
|
url: string;
|
|
1519
|
+
blurhash: string | null;
|
|
1519
1520
|
preview_url: string | null;
|
|
1520
1521
|
remote_url: string | null;
|
|
1521
|
-
bluehash: string | null;
|
|
1522
1522
|
meta?: {
|
|
1523
1523
|
width: number;
|
|
1524
1524
|
height: number;
|
|
@@ -1549,9 +1549,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1549
1549
|
type: "audio";
|
|
1550
1550
|
description: string | null;
|
|
1551
1551
|
url: string;
|
|
1552
|
+
blurhash: string | null;
|
|
1552
1553
|
preview_url: string | null;
|
|
1553
1554
|
remote_url: string | null;
|
|
1554
|
-
bluehash: string | null;
|
|
1555
1555
|
meta: {
|
|
1556
1556
|
length: string;
|
|
1557
1557
|
duration: number;
|
|
@@ -1568,9 +1568,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1568
1568
|
type: "unknown";
|
|
1569
1569
|
description: string | null;
|
|
1570
1570
|
url: string;
|
|
1571
|
+
blurhash: string | null;
|
|
1571
1572
|
preview_url: string | null;
|
|
1572
1573
|
remote_url: string | null;
|
|
1573
|
-
bluehash: string | null;
|
|
1574
1574
|
})[];
|
|
1575
1575
|
reblogs_count: number;
|
|
1576
1576
|
favourites_count: number;
|
|
@@ -1765,9 +1765,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1765
1765
|
type: "gifv";
|
|
1766
1766
|
description: string | null;
|
|
1767
1767
|
url: string;
|
|
1768
|
+
blurhash: string | null;
|
|
1768
1769
|
preview_url: string | null;
|
|
1769
1770
|
remote_url: string | null;
|
|
1770
|
-
bluehash: string | null;
|
|
1771
1771
|
meta?: {
|
|
1772
1772
|
width: number;
|
|
1773
1773
|
height: number;
|
|
@@ -1795,9 +1795,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1795
1795
|
type: "image";
|
|
1796
1796
|
description: string | null;
|
|
1797
1797
|
url: string;
|
|
1798
|
+
blurhash: string | null;
|
|
1798
1799
|
preview_url: string | null;
|
|
1799
1800
|
remote_url: string | null;
|
|
1800
|
-
bluehash: string | null;
|
|
1801
1801
|
meta?: {
|
|
1802
1802
|
original: {
|
|
1803
1803
|
width: number;
|
|
@@ -1821,9 +1821,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1821
1821
|
type: "video";
|
|
1822
1822
|
description: string | null;
|
|
1823
1823
|
url: string;
|
|
1824
|
+
blurhash: string | null;
|
|
1824
1825
|
preview_url: string | null;
|
|
1825
1826
|
remote_url: string | null;
|
|
1826
|
-
bluehash: string | null;
|
|
1827
1827
|
meta?: {
|
|
1828
1828
|
width: number;
|
|
1829
1829
|
height: number;
|
|
@@ -1854,9 +1854,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1854
1854
|
type: "audio";
|
|
1855
1855
|
description: string | null;
|
|
1856
1856
|
url: string;
|
|
1857
|
+
blurhash: string | null;
|
|
1857
1858
|
preview_url: string | null;
|
|
1858
1859
|
remote_url: string | null;
|
|
1859
|
-
bluehash: string | null;
|
|
1860
1860
|
meta: {
|
|
1861
1861
|
length: string;
|
|
1862
1862
|
duration: number;
|
|
@@ -1873,9 +1873,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1873
1873
|
type: "unknown";
|
|
1874
1874
|
description: string | null;
|
|
1875
1875
|
url: string;
|
|
1876
|
+
blurhash: string | null;
|
|
1876
1877
|
preview_url: string | null;
|
|
1877
1878
|
remote_url: string | null;
|
|
1878
|
-
bluehash: string | null;
|
|
1879
1879
|
})[];
|
|
1880
1880
|
reblogs_count: number;
|
|
1881
1881
|
favourites_count: number;
|