@llun/activities.schema 0.2.24 → 0.2.25
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.js +0 -3
- package/dist/esm/mastodon/account.js +0 -3
- package/dist/types/mastodon/account.d.ts +0 -8
- package/dist/types/mastodon/status/base.d.ts +2 -14
- package/dist/types/mastodon/status/index.d.ts +6 -34
- package/package.json +1 -1
- package/src/mastodon/account.ts +0 -3
|
@@ -19,9 +19,6 @@ const BaseAccount = zod_1.z.object({
|
|
|
19
19
|
url: zod_1.z.string({
|
|
20
20
|
description: "The location of the user's profile page",
|
|
21
21
|
}),
|
|
22
|
-
uri: zod_1.z.string({
|
|
23
|
-
description: "The location of the actor's profile page",
|
|
24
|
-
}),
|
|
25
22
|
display_name: zod_1.z.string({
|
|
26
23
|
description: "The profile's display name",
|
|
27
24
|
}),
|
|
@@ -16,9 +16,6 @@ const BaseAccount = z.object({
|
|
|
16
16
|
url: z.string({
|
|
17
17
|
description: "The location of the user's profile page",
|
|
18
18
|
}),
|
|
19
|
-
uri: z.string({
|
|
20
|
-
description: "The location of the actor's profile page",
|
|
21
|
-
}),
|
|
22
19
|
display_name: z.string({
|
|
23
20
|
description: "The profile's display name",
|
|
24
21
|
}),
|
|
@@ -4,7 +4,6 @@ export declare const Account: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4
4
|
username: z.ZodString;
|
|
5
5
|
acct: z.ZodString;
|
|
6
6
|
url: z.ZodString;
|
|
7
|
-
uri: z.ZodString;
|
|
8
7
|
display_name: z.ZodString;
|
|
9
8
|
note: z.ZodString;
|
|
10
9
|
avatar: z.ZodString;
|
|
@@ -103,7 +102,6 @@ export declare const Account: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
103
102
|
username: z.ZodString;
|
|
104
103
|
acct: z.ZodString;
|
|
105
104
|
url: z.ZodString;
|
|
106
|
-
uri: z.ZodString;
|
|
107
105
|
display_name: z.ZodString;
|
|
108
106
|
note: z.ZodString;
|
|
109
107
|
avatar: z.ZodString;
|
|
@@ -207,7 +205,6 @@ export declare const Account: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
207
205
|
}[];
|
|
208
206
|
username: string;
|
|
209
207
|
acct: string;
|
|
210
|
-
uri: string;
|
|
211
208
|
display_name: string;
|
|
212
209
|
avatar: string;
|
|
213
210
|
avatar_static: string;
|
|
@@ -255,7 +252,6 @@ export declare const Account: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
255
252
|
}[];
|
|
256
253
|
username: string;
|
|
257
254
|
acct: string;
|
|
258
|
-
uri: string;
|
|
259
255
|
display_name: string;
|
|
260
256
|
avatar: string;
|
|
261
257
|
avatar_static: string;
|
|
@@ -304,7 +300,6 @@ export declare const Account: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
304
300
|
}[];
|
|
305
301
|
username: string;
|
|
306
302
|
acct: string;
|
|
307
|
-
uri: string;
|
|
308
303
|
display_name: string;
|
|
309
304
|
avatar: string;
|
|
310
305
|
avatar_static: string;
|
|
@@ -352,7 +347,6 @@ export declare const Account: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
352
347
|
}[];
|
|
353
348
|
username: string;
|
|
354
349
|
acct: string;
|
|
355
|
-
uri: string;
|
|
356
350
|
display_name: string;
|
|
357
351
|
avatar: string;
|
|
358
352
|
avatar_static: string;
|
|
@@ -401,7 +395,6 @@ export declare const Account: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
401
395
|
}[];
|
|
402
396
|
username: string;
|
|
403
397
|
acct: string;
|
|
404
|
-
uri: string;
|
|
405
398
|
display_name: string;
|
|
406
399
|
avatar: string;
|
|
407
400
|
avatar_static: string;
|
|
@@ -449,7 +442,6 @@ export declare const Account: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
449
442
|
}[];
|
|
450
443
|
username: string;
|
|
451
444
|
acct: string;
|
|
452
|
-
uri: string;
|
|
453
445
|
display_name: string;
|
|
454
446
|
avatar: string;
|
|
455
447
|
avatar_static: string;
|
|
@@ -7,7 +7,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
7
7
|
username: z.ZodString;
|
|
8
8
|
acct: z.ZodString;
|
|
9
9
|
url: z.ZodString;
|
|
10
|
-
uri: z.ZodString;
|
|
11
10
|
display_name: z.ZodString;
|
|
12
11
|
note: z.ZodString;
|
|
13
12
|
avatar: z.ZodString;
|
|
@@ -106,7 +105,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
106
105
|
username: z.ZodString;
|
|
107
106
|
acct: z.ZodString;
|
|
108
107
|
url: z.ZodString;
|
|
109
|
-
uri: z.ZodString;
|
|
110
108
|
display_name: z.ZodString;
|
|
111
109
|
note: z.ZodString;
|
|
112
110
|
avatar: z.ZodString;
|
|
@@ -210,7 +208,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
210
208
|
}[];
|
|
211
209
|
username: string;
|
|
212
210
|
acct: string;
|
|
213
|
-
uri: string;
|
|
214
211
|
display_name: string;
|
|
215
212
|
avatar: string;
|
|
216
213
|
avatar_static: string;
|
|
@@ -258,7 +255,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
258
255
|
}[];
|
|
259
256
|
username: string;
|
|
260
257
|
acct: string;
|
|
261
|
-
uri: string;
|
|
262
258
|
display_name: string;
|
|
263
259
|
avatar: string;
|
|
264
260
|
avatar_static: string;
|
|
@@ -307,7 +303,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
307
303
|
}[];
|
|
308
304
|
username: string;
|
|
309
305
|
acct: string;
|
|
310
|
-
uri: string;
|
|
311
306
|
display_name: string;
|
|
312
307
|
avatar: string;
|
|
313
308
|
avatar_static: string;
|
|
@@ -355,7 +350,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
355
350
|
}[];
|
|
356
351
|
username: string;
|
|
357
352
|
acct: string;
|
|
358
|
-
uri: string;
|
|
359
353
|
display_name: string;
|
|
360
354
|
avatar: string;
|
|
361
355
|
avatar_static: string;
|
|
@@ -404,7 +398,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
404
398
|
}[];
|
|
405
399
|
username: string;
|
|
406
400
|
acct: string;
|
|
407
|
-
uri: string;
|
|
408
401
|
display_name: string;
|
|
409
402
|
avatar: string;
|
|
410
403
|
avatar_static: string;
|
|
@@ -452,7 +445,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
452
445
|
}[];
|
|
453
446
|
username: string;
|
|
454
447
|
acct: string;
|
|
455
|
-
uri: string;
|
|
456
448
|
display_name: string;
|
|
457
449
|
avatar: string;
|
|
458
450
|
avatar_static: string;
|
|
@@ -1346,7 +1338,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1346
1338
|
content: string;
|
|
1347
1339
|
sensitive: boolean;
|
|
1348
1340
|
language: string | null;
|
|
1349
|
-
uri: string;
|
|
1350
1341
|
emojis: {
|
|
1351
1342
|
url: string;
|
|
1352
1343
|
shortcode: string;
|
|
@@ -1366,7 +1357,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1366
1357
|
}[];
|
|
1367
1358
|
username: string;
|
|
1368
1359
|
acct: string;
|
|
1369
|
-
uri: string;
|
|
1370
1360
|
display_name: string;
|
|
1371
1361
|
avatar: string;
|
|
1372
1362
|
avatar_static: string;
|
|
@@ -1414,7 +1404,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1414
1404
|
}[];
|
|
1415
1405
|
username: string;
|
|
1416
1406
|
acct: string;
|
|
1417
|
-
uri: string;
|
|
1418
1407
|
display_name: string;
|
|
1419
1408
|
avatar: string;
|
|
1420
1409
|
avatar_static: string;
|
|
@@ -1453,6 +1442,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1453
1442
|
limited?: boolean | undefined;
|
|
1454
1443
|
} | null | undefined;
|
|
1455
1444
|
};
|
|
1445
|
+
uri: string;
|
|
1456
1446
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
1457
1447
|
spoiler_text: string;
|
|
1458
1448
|
media_attachments: ({
|
|
@@ -1651,7 +1641,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1651
1641
|
content: string;
|
|
1652
1642
|
sensitive: boolean;
|
|
1653
1643
|
language: string | null;
|
|
1654
|
-
uri: string;
|
|
1655
1644
|
emojis: {
|
|
1656
1645
|
url: string;
|
|
1657
1646
|
shortcode: string;
|
|
@@ -1671,7 +1660,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1671
1660
|
}[];
|
|
1672
1661
|
username: string;
|
|
1673
1662
|
acct: string;
|
|
1674
|
-
uri: string;
|
|
1675
1663
|
display_name: string;
|
|
1676
1664
|
avatar: string;
|
|
1677
1665
|
avatar_static: string;
|
|
@@ -1719,7 +1707,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1719
1707
|
}[];
|
|
1720
1708
|
username: string;
|
|
1721
1709
|
acct: string;
|
|
1722
|
-
uri: string;
|
|
1723
1710
|
display_name: string;
|
|
1724
1711
|
avatar: string;
|
|
1725
1712
|
avatar_static: string;
|
|
@@ -1758,6 +1745,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1758
1745
|
limited?: boolean | undefined;
|
|
1759
1746
|
} | null | undefined;
|
|
1760
1747
|
};
|
|
1748
|
+
uri: string;
|
|
1761
1749
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
1762
1750
|
spoiler_text: string;
|
|
1763
1751
|
media_attachments: ({
|
|
@@ -7,7 +7,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7
7
|
username: z.ZodString;
|
|
8
8
|
acct: z.ZodString;
|
|
9
9
|
url: z.ZodString;
|
|
10
|
-
uri: z.ZodString;
|
|
11
10
|
display_name: z.ZodString;
|
|
12
11
|
note: z.ZodString;
|
|
13
12
|
avatar: z.ZodString;
|
|
@@ -106,7 +105,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
106
105
|
username: z.ZodString;
|
|
107
106
|
acct: z.ZodString;
|
|
108
107
|
url: z.ZodString;
|
|
109
|
-
uri: z.ZodString;
|
|
110
108
|
display_name: z.ZodString;
|
|
111
109
|
note: z.ZodString;
|
|
112
110
|
avatar: z.ZodString;
|
|
@@ -210,7 +208,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
210
208
|
}[];
|
|
211
209
|
username: string;
|
|
212
210
|
acct: string;
|
|
213
|
-
uri: string;
|
|
214
211
|
display_name: string;
|
|
215
212
|
avatar: string;
|
|
216
213
|
avatar_static: string;
|
|
@@ -258,7 +255,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
258
255
|
}[];
|
|
259
256
|
username: string;
|
|
260
257
|
acct: string;
|
|
261
|
-
uri: string;
|
|
262
258
|
display_name: string;
|
|
263
259
|
avatar: string;
|
|
264
260
|
avatar_static: string;
|
|
@@ -307,7 +303,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
307
303
|
}[];
|
|
308
304
|
username: string;
|
|
309
305
|
acct: string;
|
|
310
|
-
uri: string;
|
|
311
306
|
display_name: string;
|
|
312
307
|
avatar: string;
|
|
313
308
|
avatar_static: string;
|
|
@@ -355,7 +350,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
355
350
|
}[];
|
|
356
351
|
username: string;
|
|
357
352
|
acct: string;
|
|
358
|
-
uri: string;
|
|
359
353
|
display_name: string;
|
|
360
354
|
avatar: string;
|
|
361
355
|
avatar_static: string;
|
|
@@ -404,7 +398,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
404
398
|
}[];
|
|
405
399
|
username: string;
|
|
406
400
|
acct: string;
|
|
407
|
-
uri: string;
|
|
408
401
|
display_name: string;
|
|
409
402
|
avatar: string;
|
|
410
403
|
avatar_static: string;
|
|
@@ -452,7 +445,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
452
445
|
}[];
|
|
453
446
|
username: string;
|
|
454
447
|
acct: string;
|
|
455
|
-
uri: string;
|
|
456
448
|
display_name: string;
|
|
457
449
|
avatar: string;
|
|
458
450
|
avatar_static: string;
|
|
@@ -1349,7 +1341,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1349
1341
|
username: z.ZodString;
|
|
1350
1342
|
acct: z.ZodString;
|
|
1351
1343
|
url: z.ZodString;
|
|
1352
|
-
uri: z.ZodString;
|
|
1353
1344
|
display_name: z.ZodString;
|
|
1354
1345
|
note: z.ZodString;
|
|
1355
1346
|
avatar: z.ZodString;
|
|
@@ -1448,7 +1439,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1448
1439
|
username: z.ZodString;
|
|
1449
1440
|
acct: z.ZodString;
|
|
1450
1441
|
url: z.ZodString;
|
|
1451
|
-
uri: z.ZodString;
|
|
1452
1442
|
display_name: z.ZodString;
|
|
1453
1443
|
note: z.ZodString;
|
|
1454
1444
|
avatar: z.ZodString;
|
|
@@ -1552,7 +1542,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1552
1542
|
}[];
|
|
1553
1543
|
username: string;
|
|
1554
1544
|
acct: string;
|
|
1555
|
-
uri: string;
|
|
1556
1545
|
display_name: string;
|
|
1557
1546
|
avatar: string;
|
|
1558
1547
|
avatar_static: string;
|
|
@@ -1600,7 +1589,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1600
1589
|
}[];
|
|
1601
1590
|
username: string;
|
|
1602
1591
|
acct: string;
|
|
1603
|
-
uri: string;
|
|
1604
1592
|
display_name: string;
|
|
1605
1593
|
avatar: string;
|
|
1606
1594
|
avatar_static: string;
|
|
@@ -1649,7 +1637,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1649
1637
|
}[];
|
|
1650
1638
|
username: string;
|
|
1651
1639
|
acct: string;
|
|
1652
|
-
uri: string;
|
|
1653
1640
|
display_name: string;
|
|
1654
1641
|
avatar: string;
|
|
1655
1642
|
avatar_static: string;
|
|
@@ -1697,7 +1684,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1697
1684
|
}[];
|
|
1698
1685
|
username: string;
|
|
1699
1686
|
acct: string;
|
|
1700
|
-
uri: string;
|
|
1701
1687
|
display_name: string;
|
|
1702
1688
|
avatar: string;
|
|
1703
1689
|
avatar_static: string;
|
|
@@ -1746,7 +1732,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1746
1732
|
}[];
|
|
1747
1733
|
username: string;
|
|
1748
1734
|
acct: string;
|
|
1749
|
-
uri: string;
|
|
1750
1735
|
display_name: string;
|
|
1751
1736
|
avatar: string;
|
|
1752
1737
|
avatar_static: string;
|
|
@@ -1794,7 +1779,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1794
1779
|
}[];
|
|
1795
1780
|
username: string;
|
|
1796
1781
|
acct: string;
|
|
1797
|
-
uri: string;
|
|
1798
1782
|
display_name: string;
|
|
1799
1783
|
avatar: string;
|
|
1800
1784
|
avatar_static: string;
|
|
@@ -2688,7 +2672,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2688
2672
|
content: string;
|
|
2689
2673
|
sensitive: boolean;
|
|
2690
2674
|
language: string | null;
|
|
2691
|
-
uri: string;
|
|
2692
2675
|
emojis: {
|
|
2693
2676
|
url: string;
|
|
2694
2677
|
shortcode: string;
|
|
@@ -2708,7 +2691,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2708
2691
|
}[];
|
|
2709
2692
|
username: string;
|
|
2710
2693
|
acct: string;
|
|
2711
|
-
uri: string;
|
|
2712
2694
|
display_name: string;
|
|
2713
2695
|
avatar: string;
|
|
2714
2696
|
avatar_static: string;
|
|
@@ -2756,7 +2738,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2756
2738
|
}[];
|
|
2757
2739
|
username: string;
|
|
2758
2740
|
acct: string;
|
|
2759
|
-
uri: string;
|
|
2760
2741
|
display_name: string;
|
|
2761
2742
|
avatar: string;
|
|
2762
2743
|
avatar_static: string;
|
|
@@ -2795,6 +2776,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2795
2776
|
limited?: boolean | undefined;
|
|
2796
2777
|
} | null | undefined;
|
|
2797
2778
|
};
|
|
2779
|
+
uri: string;
|
|
2798
2780
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
2799
2781
|
spoiler_text: string;
|
|
2800
2782
|
media_attachments: ({
|
|
@@ -2993,7 +2975,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2993
2975
|
content: string;
|
|
2994
2976
|
sensitive: boolean;
|
|
2995
2977
|
language: string | null;
|
|
2996
|
-
uri: string;
|
|
2997
2978
|
emojis: {
|
|
2998
2979
|
url: string;
|
|
2999
2980
|
shortcode: string;
|
|
@@ -3013,7 +2994,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3013
2994
|
}[];
|
|
3014
2995
|
username: string;
|
|
3015
2996
|
acct: string;
|
|
3016
|
-
uri: string;
|
|
3017
2997
|
display_name: string;
|
|
3018
2998
|
avatar: string;
|
|
3019
2999
|
avatar_static: string;
|
|
@@ -3061,7 +3041,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3061
3041
|
}[];
|
|
3062
3042
|
username: string;
|
|
3063
3043
|
acct: string;
|
|
3064
|
-
uri: string;
|
|
3065
3044
|
display_name: string;
|
|
3066
3045
|
avatar: string;
|
|
3067
3046
|
avatar_static: string;
|
|
@@ -3100,6 +3079,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3100
3079
|
limited?: boolean | undefined;
|
|
3101
3080
|
} | null | undefined;
|
|
3102
3081
|
};
|
|
3082
|
+
uri: string;
|
|
3103
3083
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
3104
3084
|
spoiler_text: string;
|
|
3105
3085
|
media_attachments: ({
|
|
@@ -3299,7 +3279,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3299
3279
|
content: string;
|
|
3300
3280
|
sensitive: boolean;
|
|
3301
3281
|
language: string | null;
|
|
3302
|
-
uri: string;
|
|
3303
3282
|
emojis: {
|
|
3304
3283
|
url: string;
|
|
3305
3284
|
shortcode: string;
|
|
@@ -3319,7 +3298,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3319
3298
|
}[];
|
|
3320
3299
|
username: string;
|
|
3321
3300
|
acct: string;
|
|
3322
|
-
uri: string;
|
|
3323
3301
|
display_name: string;
|
|
3324
3302
|
avatar: string;
|
|
3325
3303
|
avatar_static: string;
|
|
@@ -3367,7 +3345,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3367
3345
|
}[];
|
|
3368
3346
|
username: string;
|
|
3369
3347
|
acct: string;
|
|
3370
|
-
uri: string;
|
|
3371
3348
|
display_name: string;
|
|
3372
3349
|
avatar: string;
|
|
3373
3350
|
avatar_static: string;
|
|
@@ -3406,6 +3383,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3406
3383
|
limited?: boolean | undefined;
|
|
3407
3384
|
} | null | undefined;
|
|
3408
3385
|
};
|
|
3386
|
+
uri: string;
|
|
3409
3387
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
3410
3388
|
spoiler_text: string;
|
|
3411
3389
|
media_attachments: ({
|
|
@@ -3575,7 +3553,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3575
3553
|
content: string;
|
|
3576
3554
|
sensitive: boolean;
|
|
3577
3555
|
language: string | null;
|
|
3578
|
-
uri: string;
|
|
3579
3556
|
emojis: {
|
|
3580
3557
|
url: string;
|
|
3581
3558
|
shortcode: string;
|
|
@@ -3595,7 +3572,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3595
3572
|
}[];
|
|
3596
3573
|
username: string;
|
|
3597
3574
|
acct: string;
|
|
3598
|
-
uri: string;
|
|
3599
3575
|
display_name: string;
|
|
3600
3576
|
avatar: string;
|
|
3601
3577
|
avatar_static: string;
|
|
@@ -3643,7 +3619,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3643
3619
|
}[];
|
|
3644
3620
|
username: string;
|
|
3645
3621
|
acct: string;
|
|
3646
|
-
uri: string;
|
|
3647
3622
|
display_name: string;
|
|
3648
3623
|
avatar: string;
|
|
3649
3624
|
avatar_static: string;
|
|
@@ -3682,6 +3657,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3682
3657
|
limited?: boolean | undefined;
|
|
3683
3658
|
} | null | undefined;
|
|
3684
3659
|
};
|
|
3660
|
+
uri: string;
|
|
3685
3661
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
3686
3662
|
spoiler_text: string;
|
|
3687
3663
|
media_attachments: ({
|
|
@@ -3910,7 +3886,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3910
3886
|
content: string;
|
|
3911
3887
|
sensitive: boolean;
|
|
3912
3888
|
language: string | null;
|
|
3913
|
-
uri: string;
|
|
3914
3889
|
emojis: {
|
|
3915
3890
|
url: string;
|
|
3916
3891
|
shortcode: string;
|
|
@@ -3930,7 +3905,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3930
3905
|
}[];
|
|
3931
3906
|
username: string;
|
|
3932
3907
|
acct: string;
|
|
3933
|
-
uri: string;
|
|
3934
3908
|
display_name: string;
|
|
3935
3909
|
avatar: string;
|
|
3936
3910
|
avatar_static: string;
|
|
@@ -3978,7 +3952,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3978
3952
|
}[];
|
|
3979
3953
|
username: string;
|
|
3980
3954
|
acct: string;
|
|
3981
|
-
uri: string;
|
|
3982
3955
|
display_name: string;
|
|
3983
3956
|
avatar: string;
|
|
3984
3957
|
avatar_static: string;
|
|
@@ -4017,6 +3990,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4017
3990
|
limited?: boolean | undefined;
|
|
4018
3991
|
} | null | undefined;
|
|
4019
3992
|
};
|
|
3993
|
+
uri: string;
|
|
4020
3994
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
4021
3995
|
spoiler_text: string;
|
|
4022
3996
|
media_attachments: ({
|
|
@@ -4186,7 +4160,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4186
4160
|
content: string;
|
|
4187
4161
|
sensitive: boolean;
|
|
4188
4162
|
language: string | null;
|
|
4189
|
-
uri: string;
|
|
4190
4163
|
emojis: {
|
|
4191
4164
|
url: string;
|
|
4192
4165
|
shortcode: string;
|
|
@@ -4206,7 +4179,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4206
4179
|
}[];
|
|
4207
4180
|
username: string;
|
|
4208
4181
|
acct: string;
|
|
4209
|
-
uri: string;
|
|
4210
4182
|
display_name: string;
|
|
4211
4183
|
avatar: string;
|
|
4212
4184
|
avatar_static: string;
|
|
@@ -4254,7 +4226,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4254
4226
|
}[];
|
|
4255
4227
|
username: string;
|
|
4256
4228
|
acct: string;
|
|
4257
|
-
uri: string;
|
|
4258
4229
|
display_name: string;
|
|
4259
4230
|
avatar: string;
|
|
4260
4231
|
avatar_static: string;
|
|
@@ -4293,6 +4264,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4293
4264
|
limited?: boolean | undefined;
|
|
4294
4265
|
} | null | undefined;
|
|
4295
4266
|
};
|
|
4267
|
+
uri: string;
|
|
4296
4268
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
4297
4269
|
spoiler_text: string;
|
|
4298
4270
|
media_attachments: ({
|
package/package.json
CHANGED
package/src/mastodon/account.ts
CHANGED
|
@@ -19,9 +19,6 @@ const BaseAccount = z.object({
|
|
|
19
19
|
url: z.string({
|
|
20
20
|
description: "The location of the user's profile page",
|
|
21
21
|
}),
|
|
22
|
-
uri: z.string({
|
|
23
|
-
description: "The location of the actor's profile page",
|
|
24
|
-
}),
|
|
25
22
|
display_name: z.string({
|
|
26
23
|
description: "The profile's display name",
|
|
27
24
|
}),
|