@llun/activities.schema 0.2.19 → 0.2.21
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/index.js +1 -0
- package/dist/cjs/mastodon/{accountField.js → account/field.js} +2 -2
- package/dist/cjs/mastodon/account/source.js +29 -0
- package/dist/cjs/mastodon/account.js +7 -2
- package/dist/cjs/mastodon/index.js +2 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/mastodon/{accountField.js → account/field.js} +1 -1
- package/dist/esm/mastodon/account/source.js +26 -0
- package/dist/esm/mastodon/account.js +7 -2
- package/dist/esm/mastodon/index.js +2 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/mastodon/{accountField.d.ts → account/field.d.ts} +2 -2
- package/dist/types/mastodon/account/source.d.ts +44 -0
- package/dist/types/mastodon/account.d.ts +200 -36
- package/dist/types/mastodon/filter/index.d.ts +2 -2
- package/dist/types/mastodon/filterResult.d.ts +4 -4
- package/dist/types/mastodon/index.d.ts +2 -1
- package/dist/types/mastodon/status/base.d.ts +290 -74
- package/dist/types/mastodon/status/index.d.ts +666 -182
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/mastodon/{accountField.ts → account/field.ts} +2 -2
- package/src/mastodon/account/source.ts +28 -0
- package/src/mastodon/account.ts +9 -2
- package/src/mastodon/index.ts +2 -1
|
@@ -7,6 +7,7 @@ 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;
|
|
10
11
|
display_name: z.ZodString;
|
|
11
12
|
note: z.ZodString;
|
|
12
13
|
avatar: z.ZodString;
|
|
@@ -14,6 +15,48 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14
15
|
header: z.ZodString;
|
|
15
16
|
header_static: z.ZodString;
|
|
16
17
|
locked: z.ZodBoolean;
|
|
18
|
+
source: z.ZodObject<{
|
|
19
|
+
note: z.ZodString;
|
|
20
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
21
|
+
name: z.ZodString;
|
|
22
|
+
value: z.ZodString;
|
|
23
|
+
verified_at: z.ZodNullable<z.ZodString>;
|
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
value: string;
|
|
26
|
+
name: string;
|
|
27
|
+
verified_at: string | null;
|
|
28
|
+
}, {
|
|
29
|
+
value: string;
|
|
30
|
+
name: string;
|
|
31
|
+
verified_at: string | null;
|
|
32
|
+
}>, "many">;
|
|
33
|
+
privacy: z.ZodUnion<[z.ZodLiteral<"public">, z.ZodLiteral<"unlisted">, z.ZodLiteral<"private">, z.ZodLiteral<"direct">]>;
|
|
34
|
+
sensitive: z.ZodBoolean;
|
|
35
|
+
language: z.ZodString;
|
|
36
|
+
follow_requests_count: z.ZodNumber;
|
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
|
+
note: string;
|
|
39
|
+
fields: {
|
|
40
|
+
value: string;
|
|
41
|
+
name: string;
|
|
42
|
+
verified_at: string | null;
|
|
43
|
+
}[];
|
|
44
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
45
|
+
sensitive: boolean;
|
|
46
|
+
language: string;
|
|
47
|
+
follow_requests_count: number;
|
|
48
|
+
}, {
|
|
49
|
+
note: string;
|
|
50
|
+
fields: {
|
|
51
|
+
value: string;
|
|
52
|
+
name: string;
|
|
53
|
+
verified_at: string | null;
|
|
54
|
+
}[];
|
|
55
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
56
|
+
sensitive: boolean;
|
|
57
|
+
language: string;
|
|
58
|
+
follow_requests_count: number;
|
|
59
|
+
}>;
|
|
17
60
|
fields: z.ZodArray<z.ZodObject<{
|
|
18
61
|
name: z.ZodString;
|
|
19
62
|
value: z.ZodString;
|
|
@@ -63,6 +106,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
63
106
|
username: z.ZodString;
|
|
64
107
|
acct: z.ZodString;
|
|
65
108
|
url: z.ZodString;
|
|
109
|
+
uri: z.ZodString;
|
|
66
110
|
display_name: z.ZodString;
|
|
67
111
|
note: z.ZodString;
|
|
68
112
|
avatar: z.ZodString;
|
|
@@ -70,6 +114,48 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
70
114
|
header: z.ZodString;
|
|
71
115
|
header_static: z.ZodString;
|
|
72
116
|
locked: z.ZodBoolean;
|
|
117
|
+
source: z.ZodObject<{
|
|
118
|
+
note: z.ZodString;
|
|
119
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
120
|
+
name: z.ZodString;
|
|
121
|
+
value: z.ZodString;
|
|
122
|
+
verified_at: z.ZodNullable<z.ZodString>;
|
|
123
|
+
}, "strip", z.ZodTypeAny, {
|
|
124
|
+
value: string;
|
|
125
|
+
name: string;
|
|
126
|
+
verified_at: string | null;
|
|
127
|
+
}, {
|
|
128
|
+
value: string;
|
|
129
|
+
name: string;
|
|
130
|
+
verified_at: string | null;
|
|
131
|
+
}>, "many">;
|
|
132
|
+
privacy: z.ZodUnion<[z.ZodLiteral<"public">, z.ZodLiteral<"unlisted">, z.ZodLiteral<"private">, z.ZodLiteral<"direct">]>;
|
|
133
|
+
sensitive: z.ZodBoolean;
|
|
134
|
+
language: z.ZodString;
|
|
135
|
+
follow_requests_count: z.ZodNumber;
|
|
136
|
+
}, "strip", z.ZodTypeAny, {
|
|
137
|
+
note: string;
|
|
138
|
+
fields: {
|
|
139
|
+
value: string;
|
|
140
|
+
name: string;
|
|
141
|
+
verified_at: string | null;
|
|
142
|
+
}[];
|
|
143
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
144
|
+
sensitive: boolean;
|
|
145
|
+
language: string;
|
|
146
|
+
follow_requests_count: number;
|
|
147
|
+
}, {
|
|
148
|
+
note: string;
|
|
149
|
+
fields: {
|
|
150
|
+
value: string;
|
|
151
|
+
name: string;
|
|
152
|
+
verified_at: string | null;
|
|
153
|
+
}[];
|
|
154
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
155
|
+
sensitive: boolean;
|
|
156
|
+
language: string;
|
|
157
|
+
follow_requests_count: number;
|
|
158
|
+
}>;
|
|
73
159
|
fields: z.ZodArray<z.ZodObject<{
|
|
74
160
|
name: z.ZodString;
|
|
75
161
|
value: z.ZodString;
|
|
@@ -116,20 +202,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
116
202
|
}, "strip", z.ZodTypeAny, {
|
|
117
203
|
id: string;
|
|
118
204
|
url: string;
|
|
205
|
+
note: string;
|
|
206
|
+
fields: {
|
|
207
|
+
value: string;
|
|
208
|
+
name: string;
|
|
209
|
+
verified_at: string | null;
|
|
210
|
+
}[];
|
|
119
211
|
username: string;
|
|
120
212
|
acct: string;
|
|
213
|
+
uri: string;
|
|
121
214
|
display_name: string;
|
|
122
|
-
note: string;
|
|
123
215
|
avatar: string;
|
|
124
216
|
avatar_static: string;
|
|
125
217
|
header: string;
|
|
126
218
|
header_static: string;
|
|
127
219
|
locked: boolean;
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
220
|
+
source: {
|
|
221
|
+
note: string;
|
|
222
|
+
fields: {
|
|
223
|
+
value: string;
|
|
224
|
+
name: string;
|
|
225
|
+
verified_at: string | null;
|
|
226
|
+
}[];
|
|
227
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
228
|
+
sensitive: boolean;
|
|
229
|
+
language: string;
|
|
230
|
+
follow_requests_count: number;
|
|
231
|
+
};
|
|
133
232
|
emojis: {
|
|
134
233
|
url: string;
|
|
135
234
|
shortcode: string;
|
|
@@ -151,20 +250,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
151
250
|
}, {
|
|
152
251
|
id: string;
|
|
153
252
|
url: string;
|
|
253
|
+
note: string;
|
|
254
|
+
fields: {
|
|
255
|
+
value: string;
|
|
256
|
+
name: string;
|
|
257
|
+
verified_at: string | null;
|
|
258
|
+
}[];
|
|
154
259
|
username: string;
|
|
155
260
|
acct: string;
|
|
261
|
+
uri: string;
|
|
156
262
|
display_name: string;
|
|
157
|
-
note: string;
|
|
158
263
|
avatar: string;
|
|
159
264
|
avatar_static: string;
|
|
160
265
|
header: string;
|
|
161
266
|
header_static: string;
|
|
162
267
|
locked: boolean;
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
268
|
+
source: {
|
|
269
|
+
note: string;
|
|
270
|
+
fields: {
|
|
271
|
+
value: string;
|
|
272
|
+
name: string;
|
|
273
|
+
verified_at: string | null;
|
|
274
|
+
}[];
|
|
275
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
276
|
+
sensitive: boolean;
|
|
277
|
+
language: string;
|
|
278
|
+
follow_requests_count: number;
|
|
279
|
+
};
|
|
168
280
|
emojis: {
|
|
169
281
|
url: string;
|
|
170
282
|
shortcode: string;
|
|
@@ -187,20 +299,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
187
299
|
}>, "strip", z.ZodTypeAny, {
|
|
188
300
|
id: string;
|
|
189
301
|
url: string;
|
|
302
|
+
note: string;
|
|
303
|
+
fields: {
|
|
304
|
+
value: string;
|
|
305
|
+
name: string;
|
|
306
|
+
verified_at: string | null;
|
|
307
|
+
}[];
|
|
190
308
|
username: string;
|
|
191
309
|
acct: string;
|
|
310
|
+
uri: string;
|
|
192
311
|
display_name: string;
|
|
193
|
-
note: string;
|
|
194
312
|
avatar: string;
|
|
195
313
|
avatar_static: string;
|
|
196
314
|
header: string;
|
|
197
315
|
header_static: string;
|
|
198
316
|
locked: boolean;
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
317
|
+
source: {
|
|
318
|
+
note: string;
|
|
319
|
+
fields: {
|
|
320
|
+
value: string;
|
|
321
|
+
name: string;
|
|
322
|
+
verified_at: string | null;
|
|
323
|
+
}[];
|
|
324
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
325
|
+
sensitive: boolean;
|
|
326
|
+
language: string;
|
|
327
|
+
follow_requests_count: number;
|
|
328
|
+
};
|
|
204
329
|
emojis: {
|
|
205
330
|
url: string;
|
|
206
331
|
shortcode: string;
|
|
@@ -222,20 +347,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
222
347
|
moved?: {
|
|
223
348
|
id: string;
|
|
224
349
|
url: string;
|
|
350
|
+
note: string;
|
|
351
|
+
fields: {
|
|
352
|
+
value: string;
|
|
353
|
+
name: string;
|
|
354
|
+
verified_at: string | null;
|
|
355
|
+
}[];
|
|
225
356
|
username: string;
|
|
226
357
|
acct: string;
|
|
358
|
+
uri: string;
|
|
227
359
|
display_name: string;
|
|
228
|
-
note: string;
|
|
229
360
|
avatar: string;
|
|
230
361
|
avatar_static: string;
|
|
231
362
|
header: string;
|
|
232
363
|
header_static: string;
|
|
233
364
|
locked: boolean;
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
365
|
+
source: {
|
|
366
|
+
note: string;
|
|
367
|
+
fields: {
|
|
368
|
+
value: string;
|
|
369
|
+
name: string;
|
|
370
|
+
verified_at: string | null;
|
|
371
|
+
}[];
|
|
372
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
373
|
+
sensitive: boolean;
|
|
374
|
+
language: string;
|
|
375
|
+
follow_requests_count: number;
|
|
376
|
+
};
|
|
239
377
|
emojis: {
|
|
240
378
|
url: string;
|
|
241
379
|
shortcode: string;
|
|
@@ -258,20 +396,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
258
396
|
}, {
|
|
259
397
|
id: string;
|
|
260
398
|
url: string;
|
|
399
|
+
note: string;
|
|
400
|
+
fields: {
|
|
401
|
+
value: string;
|
|
402
|
+
name: string;
|
|
403
|
+
verified_at: string | null;
|
|
404
|
+
}[];
|
|
261
405
|
username: string;
|
|
262
406
|
acct: string;
|
|
407
|
+
uri: string;
|
|
263
408
|
display_name: string;
|
|
264
|
-
note: string;
|
|
265
409
|
avatar: string;
|
|
266
410
|
avatar_static: string;
|
|
267
411
|
header: string;
|
|
268
412
|
header_static: string;
|
|
269
413
|
locked: boolean;
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
414
|
+
source: {
|
|
415
|
+
note: string;
|
|
416
|
+
fields: {
|
|
417
|
+
value: string;
|
|
418
|
+
name: string;
|
|
419
|
+
verified_at: string | null;
|
|
420
|
+
}[];
|
|
421
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
422
|
+
sensitive: boolean;
|
|
423
|
+
language: string;
|
|
424
|
+
follow_requests_count: number;
|
|
425
|
+
};
|
|
275
426
|
emojis: {
|
|
276
427
|
url: string;
|
|
277
428
|
shortcode: string;
|
|
@@ -293,20 +444,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
293
444
|
moved?: {
|
|
294
445
|
id: string;
|
|
295
446
|
url: string;
|
|
447
|
+
note: string;
|
|
448
|
+
fields: {
|
|
449
|
+
value: string;
|
|
450
|
+
name: string;
|
|
451
|
+
verified_at: string | null;
|
|
452
|
+
}[];
|
|
296
453
|
username: string;
|
|
297
454
|
acct: string;
|
|
455
|
+
uri: string;
|
|
298
456
|
display_name: string;
|
|
299
|
-
note: string;
|
|
300
457
|
avatar: string;
|
|
301
458
|
avatar_static: string;
|
|
302
459
|
header: string;
|
|
303
460
|
header_static: string;
|
|
304
461
|
locked: boolean;
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
462
|
+
source: {
|
|
463
|
+
note: string;
|
|
464
|
+
fields: {
|
|
465
|
+
value: string;
|
|
466
|
+
name: string;
|
|
467
|
+
verified_at: string | null;
|
|
468
|
+
}[];
|
|
469
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
470
|
+
sensitive: boolean;
|
|
471
|
+
language: string;
|
|
472
|
+
follow_requests_count: number;
|
|
473
|
+
};
|
|
310
474
|
emojis: {
|
|
311
475
|
url: string;
|
|
312
476
|
shortcode: string;
|
|
@@ -1107,7 +1271,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1107
1271
|
}, "strip", z.ZodTypeAny, {
|
|
1108
1272
|
id: string;
|
|
1109
1273
|
title: string;
|
|
1110
|
-
context: ("
|
|
1274
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1111
1275
|
expires_at: string | null;
|
|
1112
1276
|
filter_action: "warn" | "hide";
|
|
1113
1277
|
keywords: {
|
|
@@ -1122,7 +1286,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1122
1286
|
}, {
|
|
1123
1287
|
id: string;
|
|
1124
1288
|
title: string;
|
|
1125
|
-
context: ("
|
|
1289
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1126
1290
|
expires_at: string | null;
|
|
1127
1291
|
filter_action: "warn" | "hide";
|
|
1128
1292
|
keywords: {
|
|
@@ -1141,7 +1305,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1141
1305
|
filter: {
|
|
1142
1306
|
id: string;
|
|
1143
1307
|
title: string;
|
|
1144
|
-
context: ("
|
|
1308
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1145
1309
|
expires_at: string | null;
|
|
1146
1310
|
filter_action: "warn" | "hide";
|
|
1147
1311
|
keywords: {
|
|
@@ -1160,7 +1324,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1160
1324
|
filter: {
|
|
1161
1325
|
id: string;
|
|
1162
1326
|
title: string;
|
|
1163
|
-
context: ("
|
|
1327
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1164
1328
|
expires_at: string | null;
|
|
1165
1329
|
filter_action: "warn" | "hide";
|
|
1166
1330
|
keywords: {
|
|
@@ -1185,6 +1349,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1185
1349
|
username: z.ZodString;
|
|
1186
1350
|
acct: z.ZodString;
|
|
1187
1351
|
url: z.ZodString;
|
|
1352
|
+
uri: z.ZodString;
|
|
1188
1353
|
display_name: z.ZodString;
|
|
1189
1354
|
note: z.ZodString;
|
|
1190
1355
|
avatar: z.ZodString;
|
|
@@ -1192,6 +1357,48 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1192
1357
|
header: z.ZodString;
|
|
1193
1358
|
header_static: z.ZodString;
|
|
1194
1359
|
locked: z.ZodBoolean;
|
|
1360
|
+
source: z.ZodObject<{
|
|
1361
|
+
note: z.ZodString;
|
|
1362
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
1363
|
+
name: z.ZodString;
|
|
1364
|
+
value: z.ZodString;
|
|
1365
|
+
verified_at: z.ZodNullable<z.ZodString>;
|
|
1366
|
+
}, "strip", z.ZodTypeAny, {
|
|
1367
|
+
value: string;
|
|
1368
|
+
name: string;
|
|
1369
|
+
verified_at: string | null;
|
|
1370
|
+
}, {
|
|
1371
|
+
value: string;
|
|
1372
|
+
name: string;
|
|
1373
|
+
verified_at: string | null;
|
|
1374
|
+
}>, "many">;
|
|
1375
|
+
privacy: z.ZodUnion<[z.ZodLiteral<"public">, z.ZodLiteral<"unlisted">, z.ZodLiteral<"private">, z.ZodLiteral<"direct">]>;
|
|
1376
|
+
sensitive: z.ZodBoolean;
|
|
1377
|
+
language: z.ZodString;
|
|
1378
|
+
follow_requests_count: z.ZodNumber;
|
|
1379
|
+
}, "strip", z.ZodTypeAny, {
|
|
1380
|
+
note: string;
|
|
1381
|
+
fields: {
|
|
1382
|
+
value: string;
|
|
1383
|
+
name: string;
|
|
1384
|
+
verified_at: string | null;
|
|
1385
|
+
}[];
|
|
1386
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1387
|
+
sensitive: boolean;
|
|
1388
|
+
language: string;
|
|
1389
|
+
follow_requests_count: number;
|
|
1390
|
+
}, {
|
|
1391
|
+
note: string;
|
|
1392
|
+
fields: {
|
|
1393
|
+
value: string;
|
|
1394
|
+
name: string;
|
|
1395
|
+
verified_at: string | null;
|
|
1396
|
+
}[];
|
|
1397
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1398
|
+
sensitive: boolean;
|
|
1399
|
+
language: string;
|
|
1400
|
+
follow_requests_count: number;
|
|
1401
|
+
}>;
|
|
1195
1402
|
fields: z.ZodArray<z.ZodObject<{
|
|
1196
1403
|
name: z.ZodString;
|
|
1197
1404
|
value: z.ZodString;
|
|
@@ -1241,6 +1448,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1241
1448
|
username: z.ZodString;
|
|
1242
1449
|
acct: z.ZodString;
|
|
1243
1450
|
url: z.ZodString;
|
|
1451
|
+
uri: z.ZodString;
|
|
1244
1452
|
display_name: z.ZodString;
|
|
1245
1453
|
note: z.ZodString;
|
|
1246
1454
|
avatar: z.ZodString;
|
|
@@ -1248,6 +1456,48 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1248
1456
|
header: z.ZodString;
|
|
1249
1457
|
header_static: z.ZodString;
|
|
1250
1458
|
locked: z.ZodBoolean;
|
|
1459
|
+
source: z.ZodObject<{
|
|
1460
|
+
note: z.ZodString;
|
|
1461
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
1462
|
+
name: z.ZodString;
|
|
1463
|
+
value: z.ZodString;
|
|
1464
|
+
verified_at: z.ZodNullable<z.ZodString>;
|
|
1465
|
+
}, "strip", z.ZodTypeAny, {
|
|
1466
|
+
value: string;
|
|
1467
|
+
name: string;
|
|
1468
|
+
verified_at: string | null;
|
|
1469
|
+
}, {
|
|
1470
|
+
value: string;
|
|
1471
|
+
name: string;
|
|
1472
|
+
verified_at: string | null;
|
|
1473
|
+
}>, "many">;
|
|
1474
|
+
privacy: z.ZodUnion<[z.ZodLiteral<"public">, z.ZodLiteral<"unlisted">, z.ZodLiteral<"private">, z.ZodLiteral<"direct">]>;
|
|
1475
|
+
sensitive: z.ZodBoolean;
|
|
1476
|
+
language: z.ZodString;
|
|
1477
|
+
follow_requests_count: z.ZodNumber;
|
|
1478
|
+
}, "strip", z.ZodTypeAny, {
|
|
1479
|
+
note: string;
|
|
1480
|
+
fields: {
|
|
1481
|
+
value: string;
|
|
1482
|
+
name: string;
|
|
1483
|
+
verified_at: string | null;
|
|
1484
|
+
}[];
|
|
1485
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1486
|
+
sensitive: boolean;
|
|
1487
|
+
language: string;
|
|
1488
|
+
follow_requests_count: number;
|
|
1489
|
+
}, {
|
|
1490
|
+
note: string;
|
|
1491
|
+
fields: {
|
|
1492
|
+
value: string;
|
|
1493
|
+
name: string;
|
|
1494
|
+
verified_at: string | null;
|
|
1495
|
+
}[];
|
|
1496
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1497
|
+
sensitive: boolean;
|
|
1498
|
+
language: string;
|
|
1499
|
+
follow_requests_count: number;
|
|
1500
|
+
}>;
|
|
1251
1501
|
fields: z.ZodArray<z.ZodObject<{
|
|
1252
1502
|
name: z.ZodString;
|
|
1253
1503
|
value: z.ZodString;
|
|
@@ -1294,20 +1544,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1294
1544
|
}, "strip", z.ZodTypeAny, {
|
|
1295
1545
|
id: string;
|
|
1296
1546
|
url: string;
|
|
1547
|
+
note: string;
|
|
1548
|
+
fields: {
|
|
1549
|
+
value: string;
|
|
1550
|
+
name: string;
|
|
1551
|
+
verified_at: string | null;
|
|
1552
|
+
}[];
|
|
1297
1553
|
username: string;
|
|
1298
1554
|
acct: string;
|
|
1555
|
+
uri: string;
|
|
1299
1556
|
display_name: string;
|
|
1300
|
-
note: string;
|
|
1301
1557
|
avatar: string;
|
|
1302
1558
|
avatar_static: string;
|
|
1303
1559
|
header: string;
|
|
1304
1560
|
header_static: string;
|
|
1305
1561
|
locked: boolean;
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1562
|
+
source: {
|
|
1563
|
+
note: string;
|
|
1564
|
+
fields: {
|
|
1565
|
+
value: string;
|
|
1566
|
+
name: string;
|
|
1567
|
+
verified_at: string | null;
|
|
1568
|
+
}[];
|
|
1569
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1570
|
+
sensitive: boolean;
|
|
1571
|
+
language: string;
|
|
1572
|
+
follow_requests_count: number;
|
|
1573
|
+
};
|
|
1311
1574
|
emojis: {
|
|
1312
1575
|
url: string;
|
|
1313
1576
|
shortcode: string;
|
|
@@ -1329,20 +1592,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1329
1592
|
}, {
|
|
1330
1593
|
id: string;
|
|
1331
1594
|
url: string;
|
|
1595
|
+
note: string;
|
|
1596
|
+
fields: {
|
|
1597
|
+
value: string;
|
|
1598
|
+
name: string;
|
|
1599
|
+
verified_at: string | null;
|
|
1600
|
+
}[];
|
|
1332
1601
|
username: string;
|
|
1333
1602
|
acct: string;
|
|
1603
|
+
uri: string;
|
|
1334
1604
|
display_name: string;
|
|
1335
|
-
note: string;
|
|
1336
1605
|
avatar: string;
|
|
1337
1606
|
avatar_static: string;
|
|
1338
1607
|
header: string;
|
|
1339
1608
|
header_static: string;
|
|
1340
1609
|
locked: boolean;
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1610
|
+
source: {
|
|
1611
|
+
note: string;
|
|
1612
|
+
fields: {
|
|
1613
|
+
value: string;
|
|
1614
|
+
name: string;
|
|
1615
|
+
verified_at: string | null;
|
|
1616
|
+
}[];
|
|
1617
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1618
|
+
sensitive: boolean;
|
|
1619
|
+
language: string;
|
|
1620
|
+
follow_requests_count: number;
|
|
1621
|
+
};
|
|
1346
1622
|
emojis: {
|
|
1347
1623
|
url: string;
|
|
1348
1624
|
shortcode: string;
|
|
@@ -1365,20 +1641,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1365
1641
|
}>, "strip", z.ZodTypeAny, {
|
|
1366
1642
|
id: string;
|
|
1367
1643
|
url: string;
|
|
1644
|
+
note: string;
|
|
1645
|
+
fields: {
|
|
1646
|
+
value: string;
|
|
1647
|
+
name: string;
|
|
1648
|
+
verified_at: string | null;
|
|
1649
|
+
}[];
|
|
1368
1650
|
username: string;
|
|
1369
1651
|
acct: string;
|
|
1652
|
+
uri: string;
|
|
1370
1653
|
display_name: string;
|
|
1371
|
-
note: string;
|
|
1372
1654
|
avatar: string;
|
|
1373
1655
|
avatar_static: string;
|
|
1374
1656
|
header: string;
|
|
1375
1657
|
header_static: string;
|
|
1376
1658
|
locked: boolean;
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1659
|
+
source: {
|
|
1660
|
+
note: string;
|
|
1661
|
+
fields: {
|
|
1662
|
+
value: string;
|
|
1663
|
+
name: string;
|
|
1664
|
+
verified_at: string | null;
|
|
1665
|
+
}[];
|
|
1666
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1667
|
+
sensitive: boolean;
|
|
1668
|
+
language: string;
|
|
1669
|
+
follow_requests_count: number;
|
|
1670
|
+
};
|
|
1382
1671
|
emojis: {
|
|
1383
1672
|
url: string;
|
|
1384
1673
|
shortcode: string;
|
|
@@ -1400,20 +1689,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1400
1689
|
moved?: {
|
|
1401
1690
|
id: string;
|
|
1402
1691
|
url: string;
|
|
1692
|
+
note: string;
|
|
1693
|
+
fields: {
|
|
1694
|
+
value: string;
|
|
1695
|
+
name: string;
|
|
1696
|
+
verified_at: string | null;
|
|
1697
|
+
}[];
|
|
1403
1698
|
username: string;
|
|
1404
1699
|
acct: string;
|
|
1700
|
+
uri: string;
|
|
1405
1701
|
display_name: string;
|
|
1406
|
-
note: string;
|
|
1407
1702
|
avatar: string;
|
|
1408
1703
|
avatar_static: string;
|
|
1409
1704
|
header: string;
|
|
1410
1705
|
header_static: string;
|
|
1411
1706
|
locked: boolean;
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1707
|
+
source: {
|
|
1708
|
+
note: string;
|
|
1709
|
+
fields: {
|
|
1710
|
+
value: string;
|
|
1711
|
+
name: string;
|
|
1712
|
+
verified_at: string | null;
|
|
1713
|
+
}[];
|
|
1714
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1715
|
+
sensitive: boolean;
|
|
1716
|
+
language: string;
|
|
1717
|
+
follow_requests_count: number;
|
|
1718
|
+
};
|
|
1417
1719
|
emojis: {
|
|
1418
1720
|
url: string;
|
|
1419
1721
|
shortcode: string;
|
|
@@ -1436,20 +1738,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1436
1738
|
}, {
|
|
1437
1739
|
id: string;
|
|
1438
1740
|
url: string;
|
|
1741
|
+
note: string;
|
|
1742
|
+
fields: {
|
|
1743
|
+
value: string;
|
|
1744
|
+
name: string;
|
|
1745
|
+
verified_at: string | null;
|
|
1746
|
+
}[];
|
|
1439
1747
|
username: string;
|
|
1440
1748
|
acct: string;
|
|
1749
|
+
uri: string;
|
|
1441
1750
|
display_name: string;
|
|
1442
|
-
note: string;
|
|
1443
1751
|
avatar: string;
|
|
1444
1752
|
avatar_static: string;
|
|
1445
1753
|
header: string;
|
|
1446
1754
|
header_static: string;
|
|
1447
1755
|
locked: boolean;
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1756
|
+
source: {
|
|
1757
|
+
note: string;
|
|
1758
|
+
fields: {
|
|
1759
|
+
value: string;
|
|
1760
|
+
name: string;
|
|
1761
|
+
verified_at: string | null;
|
|
1762
|
+
}[];
|
|
1763
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1764
|
+
sensitive: boolean;
|
|
1765
|
+
language: string;
|
|
1766
|
+
follow_requests_count: number;
|
|
1767
|
+
};
|
|
1453
1768
|
emojis: {
|
|
1454
1769
|
url: string;
|
|
1455
1770
|
shortcode: string;
|
|
@@ -1471,20 +1786,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1471
1786
|
moved?: {
|
|
1472
1787
|
id: string;
|
|
1473
1788
|
url: string;
|
|
1789
|
+
note: string;
|
|
1790
|
+
fields: {
|
|
1791
|
+
value: string;
|
|
1792
|
+
name: string;
|
|
1793
|
+
verified_at: string | null;
|
|
1794
|
+
}[];
|
|
1474
1795
|
username: string;
|
|
1475
1796
|
acct: string;
|
|
1797
|
+
uri: string;
|
|
1476
1798
|
display_name: string;
|
|
1477
|
-
note: string;
|
|
1478
1799
|
avatar: string;
|
|
1479
1800
|
avatar_static: string;
|
|
1480
1801
|
header: string;
|
|
1481
1802
|
header_static: string;
|
|
1482
1803
|
locked: boolean;
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1804
|
+
source: {
|
|
1805
|
+
note: string;
|
|
1806
|
+
fields: {
|
|
1807
|
+
value: string;
|
|
1808
|
+
name: string;
|
|
1809
|
+
verified_at: string | null;
|
|
1810
|
+
}[];
|
|
1811
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
1812
|
+
sensitive: boolean;
|
|
1813
|
+
language: string;
|
|
1814
|
+
follow_requests_count: number;
|
|
1815
|
+
};
|
|
1488
1816
|
emojis: {
|
|
1489
1817
|
url: string;
|
|
1490
1818
|
shortcode: string;
|
|
@@ -2285,7 +2613,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2285
2613
|
}, "strip", z.ZodTypeAny, {
|
|
2286
2614
|
id: string;
|
|
2287
2615
|
title: string;
|
|
2288
|
-
context: ("
|
|
2616
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2289
2617
|
expires_at: string | null;
|
|
2290
2618
|
filter_action: "warn" | "hide";
|
|
2291
2619
|
keywords: {
|
|
@@ -2300,7 +2628,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2300
2628
|
}, {
|
|
2301
2629
|
id: string;
|
|
2302
2630
|
title: string;
|
|
2303
|
-
context: ("
|
|
2631
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2304
2632
|
expires_at: string | null;
|
|
2305
2633
|
filter_action: "warn" | "hide";
|
|
2306
2634
|
keywords: {
|
|
@@ -2319,7 +2647,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2319
2647
|
filter: {
|
|
2320
2648
|
id: string;
|
|
2321
2649
|
title: string;
|
|
2322
|
-
context: ("
|
|
2650
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2323
2651
|
expires_at: string | null;
|
|
2324
2652
|
filter_action: "warn" | "hide";
|
|
2325
2653
|
keywords: {
|
|
@@ -2338,7 +2666,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2338
2666
|
filter: {
|
|
2339
2667
|
id: string;
|
|
2340
2668
|
title: string;
|
|
2341
|
-
context: ("
|
|
2669
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2342
2670
|
expires_at: string | null;
|
|
2343
2671
|
filter_action: "warn" | "hide";
|
|
2344
2672
|
keywords: {
|
|
@@ -2358,6 +2686,9 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2358
2686
|
id: string;
|
|
2359
2687
|
url: string | null;
|
|
2360
2688
|
content: string;
|
|
2689
|
+
sensitive: boolean;
|
|
2690
|
+
language: string | null;
|
|
2691
|
+
uri: string;
|
|
2361
2692
|
emojis: {
|
|
2362
2693
|
url: string;
|
|
2363
2694
|
shortcode: string;
|
|
@@ -2369,20 +2700,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2369
2700
|
account: {
|
|
2370
2701
|
id: string;
|
|
2371
2702
|
url: string;
|
|
2703
|
+
note: string;
|
|
2704
|
+
fields: {
|
|
2705
|
+
value: string;
|
|
2706
|
+
name: string;
|
|
2707
|
+
verified_at: string | null;
|
|
2708
|
+
}[];
|
|
2372
2709
|
username: string;
|
|
2373
2710
|
acct: string;
|
|
2711
|
+
uri: string;
|
|
2374
2712
|
display_name: string;
|
|
2375
|
-
note: string;
|
|
2376
2713
|
avatar: string;
|
|
2377
2714
|
avatar_static: string;
|
|
2378
2715
|
header: string;
|
|
2379
2716
|
header_static: string;
|
|
2380
2717
|
locked: boolean;
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2718
|
+
source: {
|
|
2719
|
+
note: string;
|
|
2720
|
+
fields: {
|
|
2721
|
+
value: string;
|
|
2722
|
+
name: string;
|
|
2723
|
+
verified_at: string | null;
|
|
2724
|
+
}[];
|
|
2725
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
2726
|
+
sensitive: boolean;
|
|
2727
|
+
language: string;
|
|
2728
|
+
follow_requests_count: number;
|
|
2729
|
+
};
|
|
2386
2730
|
emojis: {
|
|
2387
2731
|
url: string;
|
|
2388
2732
|
shortcode: string;
|
|
@@ -2404,20 +2748,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2404
2748
|
moved?: {
|
|
2405
2749
|
id: string;
|
|
2406
2750
|
url: string;
|
|
2751
|
+
note: string;
|
|
2752
|
+
fields: {
|
|
2753
|
+
value: string;
|
|
2754
|
+
name: string;
|
|
2755
|
+
verified_at: string | null;
|
|
2756
|
+
}[];
|
|
2407
2757
|
username: string;
|
|
2408
2758
|
acct: string;
|
|
2759
|
+
uri: string;
|
|
2409
2760
|
display_name: string;
|
|
2410
|
-
note: string;
|
|
2411
2761
|
avatar: string;
|
|
2412
2762
|
avatar_static: string;
|
|
2413
2763
|
header: string;
|
|
2414
2764
|
header_static: string;
|
|
2415
2765
|
locked: boolean;
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2766
|
+
source: {
|
|
2767
|
+
note: string;
|
|
2768
|
+
fields: {
|
|
2769
|
+
value: string;
|
|
2770
|
+
name: string;
|
|
2771
|
+
verified_at: string | null;
|
|
2772
|
+
}[];
|
|
2773
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
2774
|
+
sensitive: boolean;
|
|
2775
|
+
language: string;
|
|
2776
|
+
follow_requests_count: number;
|
|
2777
|
+
};
|
|
2421
2778
|
emojis: {
|
|
2422
2779
|
url: string;
|
|
2423
2780
|
shortcode: string;
|
|
@@ -2438,9 +2795,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2438
2795
|
limited?: boolean | undefined;
|
|
2439
2796
|
} | null | undefined;
|
|
2440
2797
|
};
|
|
2441
|
-
|
|
2442
|
-
visibility: "public" | "unlist" | "private" | "direct";
|
|
2443
|
-
sensitive: boolean;
|
|
2798
|
+
visibility: "public" | "private" | "direct" | "unlist";
|
|
2444
2799
|
spoiler_text: string;
|
|
2445
2800
|
media_attachments: ({
|
|
2446
2801
|
id: string;
|
|
@@ -2601,7 +2956,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2601
2956
|
html: string;
|
|
2602
2957
|
embed_url: string;
|
|
2603
2958
|
} | null;
|
|
2604
|
-
language: string | null;
|
|
2605
2959
|
text: string | null;
|
|
2606
2960
|
edited_at: string | null;
|
|
2607
2961
|
application?: {
|
|
@@ -2617,7 +2971,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2617
2971
|
filter: {
|
|
2618
2972
|
id: string;
|
|
2619
2973
|
title: string;
|
|
2620
|
-
context: ("
|
|
2974
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2621
2975
|
expires_at: string | null;
|
|
2622
2976
|
filter_action: "warn" | "hide";
|
|
2623
2977
|
keywords: {
|
|
@@ -2637,6 +2991,9 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2637
2991
|
id: string;
|
|
2638
2992
|
url: string | null;
|
|
2639
2993
|
content: string;
|
|
2994
|
+
sensitive: boolean;
|
|
2995
|
+
language: string | null;
|
|
2996
|
+
uri: string;
|
|
2640
2997
|
emojis: {
|
|
2641
2998
|
url: string;
|
|
2642
2999
|
shortcode: string;
|
|
@@ -2648,20 +3005,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2648
3005
|
account: {
|
|
2649
3006
|
id: string;
|
|
2650
3007
|
url: string;
|
|
3008
|
+
note: string;
|
|
3009
|
+
fields: {
|
|
3010
|
+
value: string;
|
|
3011
|
+
name: string;
|
|
3012
|
+
verified_at: string | null;
|
|
3013
|
+
}[];
|
|
2651
3014
|
username: string;
|
|
2652
3015
|
acct: string;
|
|
3016
|
+
uri: string;
|
|
2653
3017
|
display_name: string;
|
|
2654
|
-
note: string;
|
|
2655
3018
|
avatar: string;
|
|
2656
3019
|
avatar_static: string;
|
|
2657
3020
|
header: string;
|
|
2658
3021
|
header_static: string;
|
|
2659
3022
|
locked: boolean;
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
3023
|
+
source: {
|
|
3024
|
+
note: string;
|
|
3025
|
+
fields: {
|
|
3026
|
+
value: string;
|
|
3027
|
+
name: string;
|
|
3028
|
+
verified_at: string | null;
|
|
3029
|
+
}[];
|
|
3030
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
3031
|
+
sensitive: boolean;
|
|
3032
|
+
language: string;
|
|
3033
|
+
follow_requests_count: number;
|
|
3034
|
+
};
|
|
2665
3035
|
emojis: {
|
|
2666
3036
|
url: string;
|
|
2667
3037
|
shortcode: string;
|
|
@@ -2683,20 +3053,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2683
3053
|
moved?: {
|
|
2684
3054
|
id: string;
|
|
2685
3055
|
url: string;
|
|
3056
|
+
note: string;
|
|
3057
|
+
fields: {
|
|
3058
|
+
value: string;
|
|
3059
|
+
name: string;
|
|
3060
|
+
verified_at: string | null;
|
|
3061
|
+
}[];
|
|
2686
3062
|
username: string;
|
|
2687
3063
|
acct: string;
|
|
3064
|
+
uri: string;
|
|
2688
3065
|
display_name: string;
|
|
2689
|
-
note: string;
|
|
2690
3066
|
avatar: string;
|
|
2691
3067
|
avatar_static: string;
|
|
2692
3068
|
header: string;
|
|
2693
3069
|
header_static: string;
|
|
2694
3070
|
locked: boolean;
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
3071
|
+
source: {
|
|
3072
|
+
note: string;
|
|
3073
|
+
fields: {
|
|
3074
|
+
value: string;
|
|
3075
|
+
name: string;
|
|
3076
|
+
verified_at: string | null;
|
|
3077
|
+
}[];
|
|
3078
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
3079
|
+
sensitive: boolean;
|
|
3080
|
+
language: string;
|
|
3081
|
+
follow_requests_count: number;
|
|
3082
|
+
};
|
|
2700
3083
|
emojis: {
|
|
2701
3084
|
url: string;
|
|
2702
3085
|
shortcode: string;
|
|
@@ -2717,9 +3100,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2717
3100
|
limited?: boolean | undefined;
|
|
2718
3101
|
} | null | undefined;
|
|
2719
3102
|
};
|
|
2720
|
-
|
|
2721
|
-
visibility: "public" | "unlist" | "private" | "direct";
|
|
2722
|
-
sensitive: boolean;
|
|
3103
|
+
visibility: "public" | "private" | "direct" | "unlist";
|
|
2723
3104
|
spoiler_text: string;
|
|
2724
3105
|
media_attachments: ({
|
|
2725
3106
|
id: string;
|
|
@@ -2880,7 +3261,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2880
3261
|
html: string;
|
|
2881
3262
|
embed_url: string;
|
|
2882
3263
|
} | null;
|
|
2883
|
-
language: string | null;
|
|
2884
3264
|
text: string | null;
|
|
2885
3265
|
edited_at: string | null;
|
|
2886
3266
|
application?: {
|
|
@@ -2896,7 +3276,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2896
3276
|
filter: {
|
|
2897
3277
|
id: string;
|
|
2898
3278
|
title: string;
|
|
2899
|
-
context: ("
|
|
3279
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2900
3280
|
expires_at: string | null;
|
|
2901
3281
|
filter_action: "warn" | "hide";
|
|
2902
3282
|
keywords: {
|
|
@@ -2917,6 +3297,9 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2917
3297
|
id: string;
|
|
2918
3298
|
url: string | null;
|
|
2919
3299
|
content: string;
|
|
3300
|
+
sensitive: boolean;
|
|
3301
|
+
language: string | null;
|
|
3302
|
+
uri: string;
|
|
2920
3303
|
emojis: {
|
|
2921
3304
|
url: string;
|
|
2922
3305
|
shortcode: string;
|
|
@@ -2928,20 +3311,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2928
3311
|
account: {
|
|
2929
3312
|
id: string;
|
|
2930
3313
|
url: string;
|
|
3314
|
+
note: string;
|
|
3315
|
+
fields: {
|
|
3316
|
+
value: string;
|
|
3317
|
+
name: string;
|
|
3318
|
+
verified_at: string | null;
|
|
3319
|
+
}[];
|
|
2931
3320
|
username: string;
|
|
2932
3321
|
acct: string;
|
|
3322
|
+
uri: string;
|
|
2933
3323
|
display_name: string;
|
|
2934
|
-
note: string;
|
|
2935
3324
|
avatar: string;
|
|
2936
3325
|
avatar_static: string;
|
|
2937
3326
|
header: string;
|
|
2938
3327
|
header_static: string;
|
|
2939
3328
|
locked: boolean;
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
3329
|
+
source: {
|
|
3330
|
+
note: string;
|
|
3331
|
+
fields: {
|
|
3332
|
+
value: string;
|
|
3333
|
+
name: string;
|
|
3334
|
+
verified_at: string | null;
|
|
3335
|
+
}[];
|
|
3336
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
3337
|
+
sensitive: boolean;
|
|
3338
|
+
language: string;
|
|
3339
|
+
follow_requests_count: number;
|
|
3340
|
+
};
|
|
2945
3341
|
emojis: {
|
|
2946
3342
|
url: string;
|
|
2947
3343
|
shortcode: string;
|
|
@@ -2963,20 +3359,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2963
3359
|
moved?: {
|
|
2964
3360
|
id: string;
|
|
2965
3361
|
url: string;
|
|
3362
|
+
note: string;
|
|
3363
|
+
fields: {
|
|
3364
|
+
value: string;
|
|
3365
|
+
name: string;
|
|
3366
|
+
verified_at: string | null;
|
|
3367
|
+
}[];
|
|
2966
3368
|
username: string;
|
|
2967
3369
|
acct: string;
|
|
3370
|
+
uri: string;
|
|
2968
3371
|
display_name: string;
|
|
2969
|
-
note: string;
|
|
2970
3372
|
avatar: string;
|
|
2971
3373
|
avatar_static: string;
|
|
2972
3374
|
header: string;
|
|
2973
3375
|
header_static: string;
|
|
2974
3376
|
locked: boolean;
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
3377
|
+
source: {
|
|
3378
|
+
note: string;
|
|
3379
|
+
fields: {
|
|
3380
|
+
value: string;
|
|
3381
|
+
name: string;
|
|
3382
|
+
verified_at: string | null;
|
|
3383
|
+
}[];
|
|
3384
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
3385
|
+
sensitive: boolean;
|
|
3386
|
+
language: string;
|
|
3387
|
+
follow_requests_count: number;
|
|
3388
|
+
};
|
|
2980
3389
|
emojis: {
|
|
2981
3390
|
url: string;
|
|
2982
3391
|
shortcode: string;
|
|
@@ -2997,9 +3406,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2997
3406
|
limited?: boolean | undefined;
|
|
2998
3407
|
} | null | undefined;
|
|
2999
3408
|
};
|
|
3000
|
-
|
|
3001
|
-
visibility: "public" | "unlist" | "private" | "direct";
|
|
3002
|
-
sensitive: boolean;
|
|
3409
|
+
visibility: "public" | "private" | "direct" | "unlist";
|
|
3003
3410
|
spoiler_text: string;
|
|
3004
3411
|
media_attachments: ({
|
|
3005
3412
|
id: string;
|
|
@@ -3160,13 +3567,15 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3160
3567
|
html: string;
|
|
3161
3568
|
embed_url: string;
|
|
3162
3569
|
} | null;
|
|
3163
|
-
language: string | null;
|
|
3164
3570
|
text: string | null;
|
|
3165
3571
|
edited_at: string | null;
|
|
3166
3572
|
reblog: {
|
|
3167
3573
|
id: string;
|
|
3168
3574
|
url: string | null;
|
|
3169
3575
|
content: string;
|
|
3576
|
+
sensitive: boolean;
|
|
3577
|
+
language: string | null;
|
|
3578
|
+
uri: string;
|
|
3170
3579
|
emojis: {
|
|
3171
3580
|
url: string;
|
|
3172
3581
|
shortcode: string;
|
|
@@ -3178,20 +3587,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3178
3587
|
account: {
|
|
3179
3588
|
id: string;
|
|
3180
3589
|
url: string;
|
|
3590
|
+
note: string;
|
|
3591
|
+
fields: {
|
|
3592
|
+
value: string;
|
|
3593
|
+
name: string;
|
|
3594
|
+
verified_at: string | null;
|
|
3595
|
+
}[];
|
|
3181
3596
|
username: string;
|
|
3182
3597
|
acct: string;
|
|
3598
|
+
uri: string;
|
|
3183
3599
|
display_name: string;
|
|
3184
|
-
note: string;
|
|
3185
3600
|
avatar: string;
|
|
3186
3601
|
avatar_static: string;
|
|
3187
3602
|
header: string;
|
|
3188
3603
|
header_static: string;
|
|
3189
3604
|
locked: boolean;
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3605
|
+
source: {
|
|
3606
|
+
note: string;
|
|
3607
|
+
fields: {
|
|
3608
|
+
value: string;
|
|
3609
|
+
name: string;
|
|
3610
|
+
verified_at: string | null;
|
|
3611
|
+
}[];
|
|
3612
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
3613
|
+
sensitive: boolean;
|
|
3614
|
+
language: string;
|
|
3615
|
+
follow_requests_count: number;
|
|
3616
|
+
};
|
|
3195
3617
|
emojis: {
|
|
3196
3618
|
url: string;
|
|
3197
3619
|
shortcode: string;
|
|
@@ -3213,20 +3635,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3213
3635
|
moved?: {
|
|
3214
3636
|
id: string;
|
|
3215
3637
|
url: string;
|
|
3638
|
+
note: string;
|
|
3639
|
+
fields: {
|
|
3640
|
+
value: string;
|
|
3641
|
+
name: string;
|
|
3642
|
+
verified_at: string | null;
|
|
3643
|
+
}[];
|
|
3216
3644
|
username: string;
|
|
3217
3645
|
acct: string;
|
|
3646
|
+
uri: string;
|
|
3218
3647
|
display_name: string;
|
|
3219
|
-
note: string;
|
|
3220
3648
|
avatar: string;
|
|
3221
3649
|
avatar_static: string;
|
|
3222
3650
|
header: string;
|
|
3223
3651
|
header_static: string;
|
|
3224
3652
|
locked: boolean;
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3653
|
+
source: {
|
|
3654
|
+
note: string;
|
|
3655
|
+
fields: {
|
|
3656
|
+
value: string;
|
|
3657
|
+
name: string;
|
|
3658
|
+
verified_at: string | null;
|
|
3659
|
+
}[];
|
|
3660
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
3661
|
+
sensitive: boolean;
|
|
3662
|
+
language: string;
|
|
3663
|
+
follow_requests_count: number;
|
|
3664
|
+
};
|
|
3230
3665
|
emojis: {
|
|
3231
3666
|
url: string;
|
|
3232
3667
|
shortcode: string;
|
|
@@ -3247,9 +3682,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3247
3682
|
limited?: boolean | undefined;
|
|
3248
3683
|
} | null | undefined;
|
|
3249
3684
|
};
|
|
3250
|
-
|
|
3251
|
-
visibility: "public" | "unlist" | "private" | "direct";
|
|
3252
|
-
sensitive: boolean;
|
|
3685
|
+
visibility: "public" | "private" | "direct" | "unlist";
|
|
3253
3686
|
spoiler_text: string;
|
|
3254
3687
|
media_attachments: ({
|
|
3255
3688
|
id: string;
|
|
@@ -3410,7 +3843,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3410
3843
|
html: string;
|
|
3411
3844
|
embed_url: string;
|
|
3412
3845
|
} | null;
|
|
3413
|
-
language: string | null;
|
|
3414
3846
|
text: string | null;
|
|
3415
3847
|
edited_at: string | null;
|
|
3416
3848
|
application?: {
|
|
@@ -3426,7 +3858,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3426
3858
|
filter: {
|
|
3427
3859
|
id: string;
|
|
3428
3860
|
title: string;
|
|
3429
|
-
context: ("
|
|
3861
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
3430
3862
|
expires_at: string | null;
|
|
3431
3863
|
filter_action: "warn" | "hide";
|
|
3432
3864
|
keywords: {
|
|
@@ -3456,7 +3888,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3456
3888
|
filter: {
|
|
3457
3889
|
id: string;
|
|
3458
3890
|
title: string;
|
|
3459
|
-
context: ("
|
|
3891
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
3460
3892
|
expires_at: string | null;
|
|
3461
3893
|
filter_action: "warn" | "hide";
|
|
3462
3894
|
keywords: {
|
|
@@ -3476,6 +3908,9 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3476
3908
|
id: string;
|
|
3477
3909
|
url: string | null;
|
|
3478
3910
|
content: string;
|
|
3911
|
+
sensitive: boolean;
|
|
3912
|
+
language: string | null;
|
|
3913
|
+
uri: string;
|
|
3479
3914
|
emojis: {
|
|
3480
3915
|
url: string;
|
|
3481
3916
|
shortcode: string;
|
|
@@ -3487,20 +3922,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3487
3922
|
account: {
|
|
3488
3923
|
id: string;
|
|
3489
3924
|
url: string;
|
|
3925
|
+
note: string;
|
|
3926
|
+
fields: {
|
|
3927
|
+
value: string;
|
|
3928
|
+
name: string;
|
|
3929
|
+
verified_at: string | null;
|
|
3930
|
+
}[];
|
|
3490
3931
|
username: string;
|
|
3491
3932
|
acct: string;
|
|
3933
|
+
uri: string;
|
|
3492
3934
|
display_name: string;
|
|
3493
|
-
note: string;
|
|
3494
3935
|
avatar: string;
|
|
3495
3936
|
avatar_static: string;
|
|
3496
3937
|
header: string;
|
|
3497
3938
|
header_static: string;
|
|
3498
3939
|
locked: boolean;
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3940
|
+
source: {
|
|
3941
|
+
note: string;
|
|
3942
|
+
fields: {
|
|
3943
|
+
value: string;
|
|
3944
|
+
name: string;
|
|
3945
|
+
verified_at: string | null;
|
|
3946
|
+
}[];
|
|
3947
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
3948
|
+
sensitive: boolean;
|
|
3949
|
+
language: string;
|
|
3950
|
+
follow_requests_count: number;
|
|
3951
|
+
};
|
|
3504
3952
|
emojis: {
|
|
3505
3953
|
url: string;
|
|
3506
3954
|
shortcode: string;
|
|
@@ -3522,20 +3970,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3522
3970
|
moved?: {
|
|
3523
3971
|
id: string;
|
|
3524
3972
|
url: string;
|
|
3973
|
+
note: string;
|
|
3974
|
+
fields: {
|
|
3975
|
+
value: string;
|
|
3976
|
+
name: string;
|
|
3977
|
+
verified_at: string | null;
|
|
3978
|
+
}[];
|
|
3525
3979
|
username: string;
|
|
3526
3980
|
acct: string;
|
|
3981
|
+
uri: string;
|
|
3527
3982
|
display_name: string;
|
|
3528
|
-
note: string;
|
|
3529
3983
|
avatar: string;
|
|
3530
3984
|
avatar_static: string;
|
|
3531
3985
|
header: string;
|
|
3532
3986
|
header_static: string;
|
|
3533
3987
|
locked: boolean;
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3988
|
+
source: {
|
|
3989
|
+
note: string;
|
|
3990
|
+
fields: {
|
|
3991
|
+
value: string;
|
|
3992
|
+
name: string;
|
|
3993
|
+
verified_at: string | null;
|
|
3994
|
+
}[];
|
|
3995
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
3996
|
+
sensitive: boolean;
|
|
3997
|
+
language: string;
|
|
3998
|
+
follow_requests_count: number;
|
|
3999
|
+
};
|
|
3539
4000
|
emojis: {
|
|
3540
4001
|
url: string;
|
|
3541
4002
|
shortcode: string;
|
|
@@ -3556,9 +4017,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3556
4017
|
limited?: boolean | undefined;
|
|
3557
4018
|
} | null | undefined;
|
|
3558
4019
|
};
|
|
3559
|
-
|
|
3560
|
-
visibility: "public" | "unlist" | "private" | "direct";
|
|
3561
|
-
sensitive: boolean;
|
|
4020
|
+
visibility: "public" | "private" | "direct" | "unlist";
|
|
3562
4021
|
spoiler_text: string;
|
|
3563
4022
|
media_attachments: ({
|
|
3564
4023
|
id: string;
|
|
@@ -3719,13 +4178,15 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3719
4178
|
html: string;
|
|
3720
4179
|
embed_url: string;
|
|
3721
4180
|
} | null;
|
|
3722
|
-
language: string | null;
|
|
3723
4181
|
text: string | null;
|
|
3724
4182
|
edited_at: string | null;
|
|
3725
4183
|
reblog: {
|
|
3726
4184
|
id: string;
|
|
3727
4185
|
url: string | null;
|
|
3728
4186
|
content: string;
|
|
4187
|
+
sensitive: boolean;
|
|
4188
|
+
language: string | null;
|
|
4189
|
+
uri: string;
|
|
3729
4190
|
emojis: {
|
|
3730
4191
|
url: string;
|
|
3731
4192
|
shortcode: string;
|
|
@@ -3737,20 +4198,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3737
4198
|
account: {
|
|
3738
4199
|
id: string;
|
|
3739
4200
|
url: string;
|
|
4201
|
+
note: string;
|
|
4202
|
+
fields: {
|
|
4203
|
+
value: string;
|
|
4204
|
+
name: string;
|
|
4205
|
+
verified_at: string | null;
|
|
4206
|
+
}[];
|
|
3740
4207
|
username: string;
|
|
3741
4208
|
acct: string;
|
|
4209
|
+
uri: string;
|
|
3742
4210
|
display_name: string;
|
|
3743
|
-
note: string;
|
|
3744
4211
|
avatar: string;
|
|
3745
4212
|
avatar_static: string;
|
|
3746
4213
|
header: string;
|
|
3747
4214
|
header_static: string;
|
|
3748
4215
|
locked: boolean;
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
4216
|
+
source: {
|
|
4217
|
+
note: string;
|
|
4218
|
+
fields: {
|
|
4219
|
+
value: string;
|
|
4220
|
+
name: string;
|
|
4221
|
+
verified_at: string | null;
|
|
4222
|
+
}[];
|
|
4223
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
4224
|
+
sensitive: boolean;
|
|
4225
|
+
language: string;
|
|
4226
|
+
follow_requests_count: number;
|
|
4227
|
+
};
|
|
3754
4228
|
emojis: {
|
|
3755
4229
|
url: string;
|
|
3756
4230
|
shortcode: string;
|
|
@@ -3772,20 +4246,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3772
4246
|
moved?: {
|
|
3773
4247
|
id: string;
|
|
3774
4248
|
url: string;
|
|
4249
|
+
note: string;
|
|
4250
|
+
fields: {
|
|
4251
|
+
value: string;
|
|
4252
|
+
name: string;
|
|
4253
|
+
verified_at: string | null;
|
|
4254
|
+
}[];
|
|
3775
4255
|
username: string;
|
|
3776
4256
|
acct: string;
|
|
4257
|
+
uri: string;
|
|
3777
4258
|
display_name: string;
|
|
3778
|
-
note: string;
|
|
3779
4259
|
avatar: string;
|
|
3780
4260
|
avatar_static: string;
|
|
3781
4261
|
header: string;
|
|
3782
4262
|
header_static: string;
|
|
3783
4263
|
locked: boolean;
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
4264
|
+
source: {
|
|
4265
|
+
note: string;
|
|
4266
|
+
fields: {
|
|
4267
|
+
value: string;
|
|
4268
|
+
name: string;
|
|
4269
|
+
verified_at: string | null;
|
|
4270
|
+
}[];
|
|
4271
|
+
privacy: "public" | "unlisted" | "private" | "direct";
|
|
4272
|
+
sensitive: boolean;
|
|
4273
|
+
language: string;
|
|
4274
|
+
follow_requests_count: number;
|
|
4275
|
+
};
|
|
3789
4276
|
emojis: {
|
|
3790
4277
|
url: string;
|
|
3791
4278
|
shortcode: string;
|
|
@@ -3806,9 +4293,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3806
4293
|
limited?: boolean | undefined;
|
|
3807
4294
|
} | null | undefined;
|
|
3808
4295
|
};
|
|
3809
|
-
|
|
3810
|
-
visibility: "public" | "unlist" | "private" | "direct";
|
|
3811
|
-
sensitive: boolean;
|
|
4296
|
+
visibility: "public" | "private" | "direct" | "unlist";
|
|
3812
4297
|
spoiler_text: string;
|
|
3813
4298
|
media_attachments: ({
|
|
3814
4299
|
id: string;
|
|
@@ -3969,7 +4454,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3969
4454
|
html: string;
|
|
3970
4455
|
embed_url: string;
|
|
3971
4456
|
} | null;
|
|
3972
|
-
language: string | null;
|
|
3973
4457
|
text: string | null;
|
|
3974
4458
|
edited_at: string | null;
|
|
3975
4459
|
application?: {
|
|
@@ -3985,7 +4469,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3985
4469
|
filter: {
|
|
3986
4470
|
id: string;
|
|
3987
4471
|
title: string;
|
|
3988
|
-
context: ("
|
|
4472
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
3989
4473
|
expires_at: string | null;
|
|
3990
4474
|
filter_action: "warn" | "hide";
|
|
3991
4475
|
keywords: {
|
|
@@ -4015,7 +4499,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4015
4499
|
filter: {
|
|
4016
4500
|
id: string;
|
|
4017
4501
|
title: string;
|
|
4018
|
-
context: ("
|
|
4502
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
4019
4503
|
expires_at: string | null;
|
|
4020
4504
|
filter_action: "warn" | "hide";
|
|
4021
4505
|
keywords: {
|